Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxImageDataFormat Enum

Enumerates deprecated image format identifiers.

#Declaration

Delphi
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