ID_OutputParam struct

Structure that specifies information about the image decoded by ID_PageDecodeStart.

Syntax

struct ID_OutputParam
{
   ID_OutputParam() { ZeroMemory(this, sizeof(*this)); };

   DWORD dwFlags;
   RECT rc;
   int nWidth;
   int nHeight;
   int bpp;
   int nColorMapLen;
   RGBQUAD colormap[256];
};

Members

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

Remarks

Used by the ID_PageDecodeStart function.

Requirements

Header: ID_PlugIn.h

See also: