Structure that specifies information about the image decoded by ID_PageDecodeStart.
struct ID_OutputParam
{
ID_OutputParam() { ZeroMemory(this, sizeof(*this)); };
DWORD dwFlags;
RECT rc;
int nWidth;
int nHeight;
int bpp;
int nColorMapLen;
RGBQUAD colormap[256];
};
dwFlags
Type: DWORD
ID_POF flags
rc
Type: RECT
Region of source page to be decoded, in source pixels (if POF_RECT specified)
nWidth
Type: int
Output width
nHeight
Type: int
Output height
bpp
Type: int
Output bits per pixel (1, 4, 8, 16 or 24)
nColorMapLen
Type: int
Number of entries in output colormap
colormap
Type: RGBQUAD[256]
Output colormap
Used by the ID_PageDecodeStart function.
Header: ID_PlugIn.h