Lines Matching defs:_TIFFRGBAImage
199 struct _TIFFRGBAImage { struct
200 TIFF* tif; /* image handle */
201 int stoponerr; /* stop on read error */
202 int isContig; /* data is packed/separate */
203 int alpha; /* type of alpha data present */
204 uint32 width; /* image width */
205 uint32 height; /* image height */
206 uint16 bitspersample; /* image bits/sample */
207 uint16 samplesperpixel; /* image samples/pixel */
208 uint16 orientation; /* image orientation */
209 uint16 req_orientation; /* requested orientation */
210 uint16 photometric; /* image photometric interp */
211 uint16* redcmap; /* colormap palette */
212 uint16* greencmap;
213 uint16* bluecmap;
215 int (*get)(TIFFRGBAImage*, uint32*, uint32, uint32);
217 union {
221 } put;
222 TIFFRGBValue* Map; /* sample mapping array */
223 uint32** BWmap; /* black&white map */
224 uint32** PALmap; /* palette image map */
225 TIFFYCbCrToRGB* ycbcr; /* YCbCr conversion state */
226 TIFFCIELabToRGB* cielab; /* CIE L*a*b conversion state */
228 uint8* UaToAa; /* Unassociated alpha to associated alpha conversion LUT */
229 uint8* Bitdepth16To8; /* LUT for conversion from 16bit to 8bit values */
231 int row_offset;
232 int col_offset;