Skip to main content
A newer version of this page is available. .

TdxImageDataFormat Enum

Enumerates data formats that Smart Image containers use.

Declaration

TdxImageDataFormat = (
    dxImageUnknown,
    dxImageBitmap,
    dxImageJpeg,
    dxImagePng,
    dxImageTiff,
    dxImageGif,
    dxImageEmf,
    dxImageExif,
    dxImageIcon,
    dxImageMemoryBmp,
    dxImageWmf
);

Members

Name
dxImageUnknown
dxImageBitmap
dxImageJpeg
dxImagePng
dxImageTiff
dxImageGif
dxImageEmf
dxImageExif
dxImageIcon
dxImageMemoryBmp
dxImageWmf

Remarks

Options include:

Value

Description

Image Codec(s)

Image Container Class

dxImageUnknown

An image format is unknown. This value corresponds to any supported image data format that is not enumerated in the TdxImageDataFormat type.

TdxSVGImageCodec

TdxSVGImage

dxImageBitmap

A BMP image format.

TdxGPImageCodecBMP

TdxBMPImage

dxImageJpeg

A JPEG image format.

TdxGPImageCodecJPEG

TdxGPImageCodecJPG

TdxJPEGImage

dxImagePng

A PNG image format.

TdxGPImageCodecPNG

TdxPNGImage

dxImageTiff

A TIFF image format.

TdxGPImageCodecTIFF

TdxGPImageCodecTIF

TdxTIFFImage

dxImageGif

A GIF image format.

TdxGPImageCodecGIF

TdxGIFImage

dxImageEmf

An EMF image format.

TdxGPImageCodecEMF

dxImageExif

An Exif image format.

dxImageIcon

An ICO image format.

dxImageMemoryBmp

A BMP image created in memory.

TdxGPImageCodecMemoryBitmap

dxImageWmf

A WMF image format.

TdxGPImageCodecWMF

The Smart Image container’s second overloaded SaveToStreamByCodec procedure variant accepts a TdxImageDataFormat value as the AFormat parameter.

See Also