Export Picture Format Enum

ExportPictureFormatEnum enumeration constants specify the format or the image compression algorithm to be use during export to various formats. For some formats, images are exported as separate files or included into the resulting export file. Some enumeration constants may be unavailable for certain formats.

typedef enum {
        EPF_DontSave,
  EPF_Automatic,
        EPF_BmpBlackWhite,
        EPF_Bmpcolor,
        EPF_BmpGray,
        EPF_CCITT4,
        EPF_Jpegcolor,
        EPF_JpegGray,
        EPF_LZWcolor,
        EPF_LZWGray,
        EPF_PngBlackWhite,
        EPF_Pngcolor,
        EPF_PngGray,
        EPF_Zipcolor,
        EPF_ZipGray
} ExportPictureFormatEnum; 

Elements

Name Description

EPF_DontSave

Images will not be exported.

EPF_Automatic

Format is defined automatically.

EPF_BmpBlackWhite

Images will be exported in black and white BMP format.

EPF_Bmpcolor

Images will be exported in color BMP format.

EPF_BmpGray

Images will be exported in gray BMP format.

EPF_CCITT4

Images will be exported using the CCITT4 compression algorithm.

EPF_Jpegcolor

Images will be exported in color JPEG format.

EPF_JpegGray

Images will be exported in gray JPEG format.

EPF_LZWcolor

Images will be exported in color using the LZW compression algorithm.

EPF_LZWGray

Images will be exported in gray using the LZW compression algorithm.

EPF_PngBlackWhite

Images will be exported in black and white PNG format.

EPF_Pngcolor

Images will be exported in color PNG format.

EPF_PngGray

Images will be exported in gray PNG format.

EPF_Zipcolor

Images will be exported in color using the ZIP compression algorithm.

EPF_ZipGray

Images will be exported in gray using the ZIP compression algorithm.