Lines Matching refs:bmpinfoheader
161 char bmpinfoheader[40];
195 MEMZERO(bmpinfoheader, SIZEOF(bmpinfoheader));
205 PUT_2B(bmpinfoheader, 0, 40); /* biSize */
206 PUT_4B(bmpinfoheader, 4, cinfo->output_width); /* biWidth */
207 PUT_4B(bmpinfoheader, 8, cinfo->output_height); /* biHeight */
208 PUT_2B(bmpinfoheader, 12, 1); /* biPlanes - must be 1 */
209 PUT_2B(bmpinfoheader, 14, bits_per_pixel); /* biBitCount */
213 PUT_4B(bmpinfoheader, 24, (INT32) (cinfo->X_density*100)); /* XPels/M */
214 PUT_4B(bmpinfoheader, 28, (INT32) (cinfo->Y_density*100)); /* XPels/M */
216 PUT_2B(bmpinfoheader, 32, cmap_entries); /* biClrUsed */
221 if (JFWRITE(dest->pub.output_file, bmpinfoheader, 40) != (size_t) 40)