DOCWRTCOLORIMGCOMP

typedef enum _DOCWRTCOLORIMGCOMP
{
    DOCWRTCOLORIMGCOMP_FLATE_JPEG = 0,
    DOCWRTCOLORIMGCOMP_LZW_JPEG,
    DOCWRTCOLORIMGCOMP_FLATE,
    DOCWRTCOLORIMGCOMP_LZW,
    DOCWRTCOLORIMGCOMP_JPEG
} DOCWRTCOLORIMGCOMP, *pDOCWRTCOLORIMGCOMP;

The DOCWRTCOLORIMGCOMP enumeration provides compression information for colored images.

Member

Description

DOCWRTCOLORIMGCOMP_FLATE_JPEG

Use JPEG compression on grayscale 8BPP images or images which are more than 8BPP; otherwise, use flate compression.

DOCWRTCOLORIMGCOMP_LZW_JPEG

Use JPEG compression on grayscale 8BPP images or images which are more than 8BPP; otherwise, use LZW compression.

DOCWRTCOLORIMGCOMP_FLATE

Use flate compression when compressing colored images.

DOCWRTCOLORIMGCOMP_LZW

Use LZW compression when compressing colored images.

DOCWRTCOLORIMGCOMP_JPEG

Use JPEG compression when compressing colored images.