Lines Matching refs:bmpinfoheader
193 char bmpinfoheader[40]; in write_bmp_header() local
230 MEMZERO(bmpinfoheader, sizeof(bmpinfoheader)); in write_bmp_header()
240 PUT_2B(bmpinfoheader, 0, 40); /* biSize */ in write_bmp_header()
241 PUT_4B(bmpinfoheader, 4, cinfo->output_width); /* biWidth */ in write_bmp_header()
242 PUT_4B(bmpinfoheader, 8, cinfo->output_height); /* biHeight */ in write_bmp_header()
243 PUT_2B(bmpinfoheader, 12, 1); /* biPlanes - must be 1 */ in write_bmp_header()
244 PUT_2B(bmpinfoheader, 14, bits_per_pixel); /* biBitCount */ in write_bmp_header()
248 PUT_4B(bmpinfoheader, 24, (INT32) (cinfo->X_density*100)); /* XPels/M */ in write_bmp_header()
249 PUT_4B(bmpinfoheader, 28, (INT32) (cinfo->Y_density*100)); /* XPels/M */ in write_bmp_header()
251 PUT_2B(bmpinfoheader, 32, cmap_entries); /* biClrUsed */ in write_bmp_header()
256 if (JFWRITE(dest->pub.output_file, bmpinfoheader, 40) != (size_t) 40) in write_bmp_header()