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