Lines Matching refs:bmpinfoheader
220 char bmpinfoheader[40]; in write_bmp_header() local
260 MEMZERO(bmpinfoheader, sizeof(bmpinfoheader)); in write_bmp_header()
270 PUT_2B(bmpinfoheader, 0, 40); /* biSize */ in write_bmp_header()
271 PUT_4B(bmpinfoheader, 4, cinfo->output_width); /* biWidth */ in write_bmp_header()
272 PUT_4B(bmpinfoheader, 8, cinfo->output_height); /* biHeight */ in write_bmp_header()
273 PUT_2B(bmpinfoheader, 12, 1); /* biPlanes - must be 1 */ in write_bmp_header()
274 PUT_2B(bmpinfoheader, 14, bits_per_pixel); /* biBitCount */ in write_bmp_header()
278 PUT_4B(bmpinfoheader, 24, (long)(cinfo->X_density * 100)); /* XPels/M */ in write_bmp_header()
279 PUT_4B(bmpinfoheader, 28, (long)(cinfo->Y_density * 100)); /* XPels/M */ in write_bmp_header()
281 PUT_2B(bmpinfoheader, 32, cmap_entries); /* biClrUsed */ in write_bmp_header()
286 if (JFWRITE(dest->pub.output_file, bmpinfoheader, 40) != (size_t)40) in write_bmp_header()