vcl-dxsmartimage-e2b4831d.md
Enumerates deprecated image format identifiers.
TdxImageDataFormat = (
dxImageUnknown,
dxImageBitmap,
dxImageJpeg,
dxImagePng,
dxImageTiff,
dxImageGif,
dxImageEmf,
dxImageExif,
dxImageIcon,
dxImageMemoryBmp,
dxImageWmf
);
| 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).
|
|
|
| dxImageBitmap |
Device-Independent Bitmap (BMP/DIB).
|
|
|
| dxImageJpeg |
Joint Photographic Experts Group (JPEG/JPG).
|
|
|
| dxImagePng |
Portable Network Graphics (PNG).
|
|
|
| dxImageTiff |
Tagged Image File Format (TIFF).
|
|
|
| dxImageGif |
Graphics Interchange Image Format (GIF).
|
|
|
| dxImageEmf |
Enhanced Windows Metafile (EMF).
|
|
–
|
| dxImageExif |
Exchangeable Image Format (EXIF).
|
–
|
–
|
| dxImageIcon |
Icon Image Format (ICO).
|
–
|
–
|
| dxImageMemoryBmp |
In-Memory Bitmap Format
|
–
|
–
|
| dxImageWmf |
Windows Metafile (WMF).
|
|
–
|
Important
The TdxImageDataFormat type is deprecated. All image formats supported in DevExpress VCL products are implemented as TdxSmartImageCodec class descendants.
The deprecated ImageDataFormat property references the TdxImageDataFormat type.
See Also