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. Note: The value is not available for PDF/A-1, RTF, DOCX, ODT, HTML, PPTX, FB2 and EPUB formats. |
CPF_Jpeg | Color JPEG format. |
CPF_LZW |
LZW compression algorithm for color images. Note: The value is not available for PDF/A, RTF, DOCX, ODT, HTML, PPTX, FB2 and EPUB formats. |
CPF_Png |
Color PNG format. Note: The value is not available for PDF, PDF/A formats. |
CPF_Zip |
ZIP compression algorithm for color images. Note: The value is not available for RTF, DOCX, ODT, HTML, PPTX, FB2 and EPUB formats. |
Used in
03.07.2024 8:50:25