Icon TImageFormat

Unit: WebSrvr

TImageFormat = (ifUnknown,ifBMP,ifJPEG,ifGIF,ifPNG,ifTIFF)

Available In: Server Applications

The TImageFormat enumerated type is used to identity the format of the image loaded into a TRasterImage instance, or to specify the format of the image being saved from a TRasterImage instance using the TRasterImage SaveToFile or SaveToStream methods.

ElementDescription
ifBMPIndicates that the raster image is in the BMP (Bitmap) format.
ifGIFIndicates that the raster image is in the GIF (Graphics Interchange Format) format.
ifJPEGIndicates that the raster image is in the JPEG (Joint Photographic Experts Group) format.
ifPNGIndicates that the raster image is in the PNG (Portable Network Graphics) format.
ifTIFFIndicates that the raster image is in the TIFF (Tagged Image File Format) format.
ifUnknownIndicates that the raster image is in an unknown format.
Image