Home | History | Annotate | Download | only in jpeg

Lines Matching refs:bmpinfoheader

245   U_CHAR bmpinfoheader[64];
275 if (! ReadOK(source->pub.input_file, bmpinfoheader, 4))
277 headerSize = (INT32) GET_4B(bmpinfoheader,0);
280 if (! ReadOK(source->pub.input_file, bmpinfoheader+4, headerSize-4))
286 biWidth = (INT32) GET_2B(bmpinfoheader,4);
287 biHeight = (INT32) GET_2B(bmpinfoheader,6);
288 biPlanes = GET_2B(bmpinfoheader,8);
289 source->bits_per_pixel = (int) GET_2B(bmpinfoheader,10);
310 biWidth = GET_4B(bmpinfoheader,4);
311 biHeight = GET_4B(bmpinfoheader,8);
312 biPlanes = GET_2B(bmpinfoheader,12);
313 source->bits_per_pixel = (int) GET_2B(bmpinfoheader,14);
314 biCompression = GET_4B(bmpinfoheader,16);
315 biXPelsPerMeter = GET_4B(bmpinfoheader,24);
316 biYPelsPerMeter = GET_4B(bmpinfoheader,28);
317 biClrUsed = GET_4B(bmpinfoheader,32);