The PDFCOMP_PICTURECOMPTYPE enumerated type represents the values used to determine the Compression type to be used with Picture images. This enumerated type is used by the compPicture member of the PDFCOMPRESSION structure.
typedef enum tagPDFCOMP_PICTURECOMPTYPE
{
PDFCOMP_PICTURECOMPTYPE_JPEG = 0,
PDFCOMP_PICTURECOMPTYPE_JPEG_YUV422,
PDFCOMP_PICTURECOMPTYPE_JPEG_YUV411,
PDFCOMP_PICTURECOMPTYPE_JPEG_PROGRESSIVE,
PDFCOMP_PICTURECOMPTYPE_JPEG_PROGRESSIVE_YUV422,
PDFCOMP_PICTURECOMPTYPE_JPEG_PROGRESSIVE_YUV411,
PDFCOMP_PICTURECOMPTYPE_ZIP,
PDFCOMP_PICTURECOMPTYPE_LZW,
PDFCOMP_PICTURECOMPTYPE_JPX,
} PDFCOMP_PICTURECOMPTYPE, *LPPDFCOMP_PICTURECOMPTYPE;
[0] Use JPEG Compression.
[1] Uses JPEG YUV 4:2:2 Compression.
[2] Uses JPEG YUV 4:1:1 Compression.
[3] Uses JPEG Progressive Compression.
[4] Uses JPEG Progressive YUV 4:2:2 Compression.
[5] Uses JPEG Progressive YUV 4:1:1 Compression.
[6] Use Zip Compression.
[7] Use LZW Compression.
[8] Use JPEG 2000 Compression.