Lines Matching refs:bmpinfoheader
280 U_CHAR bmpinfoheader[64]; in start_input_bmp() local
310 if (! ReadOK(source->pub.input_file, bmpinfoheader, 4)) in start_input_bmp()
312 headerSize = (INT32) GET_4B(bmpinfoheader,0); in start_input_bmp()
315 if (! ReadOK(source->pub.input_file, bmpinfoheader+4, headerSize-4)) in start_input_bmp()
321 biWidth = (INT32) GET_2B(bmpinfoheader,4); in start_input_bmp()
322 biHeight = (INT32) GET_2B(bmpinfoheader,6); in start_input_bmp()
323 biPlanes = GET_2B(bmpinfoheader,8); in start_input_bmp()
324 source->bits_per_pixel = (int) GET_2B(bmpinfoheader,10); in start_input_bmp()
343 biWidth = GET_4B(bmpinfoheader,4); in start_input_bmp()
344 biHeight = GET_4B(bmpinfoheader,8); in start_input_bmp()
345 biPlanes = GET_2B(bmpinfoheader,12); in start_input_bmp()
346 source->bits_per_pixel = (int) GET_2B(bmpinfoheader,14); in start_input_bmp()
347 biCompression = GET_4B(bmpinfoheader,16); in start_input_bmp()
348 biXPelsPerMeter = GET_4B(bmpinfoheader,24); in start_input_bmp()
349 biYPelsPerMeter = GET_4B(bmpinfoheader,28); in start_input_bmp()
350 biClrUsed = GET_4B(bmpinfoheader,32); in start_input_bmp()