ColorPictureFormatsEnum
ColorPictureFormatsEnum enumeration constants define the image formats or compression algorithms to be used when saving color images.
typedef enum {
 CPF_Jpeg = 0x00000001,
 CPF_Zip  = 0x00000002,
 CPF_LZW  = 0x00000004,
 CPF_J2K  = 0x00000008,
 CPF_Png  = 0x00000010,
 CPF_Auto = 0x00000020
} ColorPictureFormatsEnum;
    
  Elements
| Name | Description | 
|---|---|
| CPF_Auto | The format is defined automatically depending on the output file format and settings. | 
| CPF_J2K | 
         Color JPEG 2000 format. 
  | 
    
| CPF_Jpeg | Color JPEG format. | 
| CPF_LZW | 
         LZW compression algorithm for color images. 
  | 
    
| CPF_Png | 
         Color PNG format. 
  | 
    
| CPF_Zip | 
         ZIP compression algorithm for color images. 
  | 
    
Used in
9/17/2024 3:14:41 PM
