Enumeration ImageFileFormat
ImageFileFormat categorizes the possible formats of image files.
public enum EnumImageFileFormat
{
/** JPEG image format. */
IFF_JPEG = 0,
/** PNG image format. */
IFF_PNG = 1,
/** BMP (Bitmap) image format. */
IFF_BMP = 2,
/** PDF (Portable Document Format) format. */
IFF_PDF = 3
}