The PDFCOMP_OUTPUTQUALITY enumerated type represents the possible values used to determine the quality of the output image when working with the PDF Compressor. This enumerated type is used by the outputQuality member of the PDFCompOptions structure.
typedef enum tagPDFCOMP_OUTPUTQUALITY
{
PDFCOMP_OUTPUTQUALITY_AUTO = 0,
PDFCOMP_OUTPUTQUALITY_POOR,
PDFCOMP_OUTPUTQUALITY_AVERAGE,
PDFCOMP_OUTPUTQUALITY_GOOD,
PDFCOMP_OUTPUTQUALITY_EXCELLENT,
PDFCOMP_OUTPUTQUALITY_USER
} PDFCOMP_OUTPUTQUALITY, *LPPDFCOMP_OUTPUTQUALITY;
Choose the quality of the output automatically.
Poor output quality, best compression.
Average output quality, average compression.
Good output quality, good compression.
Excellent output quality, poor compression.
For advanced users only.