Skip to main content

TdxImageDataFormat Enum

Enumerates deprecated image format identifiers.

Declaration

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

Members

Name Description Image Codec Class Image Container Class
dxImageUnknown

An unknown image format.

This deprecated format ID corresponds to any supported image format that is not enumerated in the TdxImageDataFormat type (SVG, for instance).

TdxSVGImageCodec

TdxSVGImage

dxImageBitmap

Device-Independent Bitmap (BMP/DIB).

TdxGPImageCodecBMP

TdxBMPImage

dxImageJpeg

Joint Photographic Experts Group (JPEG/JPG).

TdxGPImageCodecJPEG

TdxJPEGImage

dxImagePng

Portable Network Graphics (PNG).

TdxGPImageCodecPNG

TdxPNGImage

dxImageTiff

Tagged Image File Format (TIFF).

TdxGPImageCodecTIFF

TdxTIFFImage

dxImageGif

Graphics Interchange Image Format (GIF).

TdxGPImageCodecGIF

TdxGIFImage

dxImageEmf

Enhanced Windows Metafile (EMF).

TdxGPImageCodecEMF

dxImageExif

Exchangeable Image Format (EXIF).

dxImageIcon

Icon Image Format (ICO).

dxImageMemoryBmp

In-Memory Bitmap Format

dxImageWmf

Windows Metafile (WMF).

TdxGPImageCodecWMF

Remarks

Important

The TdxImageDataFormat type is deprecated. All image formats supported in DevExpress VCL products are implemented as TdxSmartImageCodec class descendants.

Direct TdxImageDataFormat Type Reference

The deprecated ImageDataFormat property references the TdxImageDataFormat type.

See Also