blob: 239f64eb3c3f6964801d6830b9796fd54f46cae2 [file] [log] [blame]
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001/*
2 * wrbmp.c
3 *
DRC7f4a81b2014-05-18 18:17:01 +00004 * This file was part of the Independent JPEG Group's software:
Thomas G. Lane489583f1996-02-07 00:00:00 +00005 * Copyright (C) 1994-1996, Thomas G. Lane.
DRC7f4a81b2014-05-18 18:17:01 +00006 * libjpeg-turbo Modifications:
DRC78df2e62014-05-12 09:23:57 +00007 * Copyright (C) 2013, Linaro Limited.
DRCbeefb622019-01-01 20:15:25 -06008 * Copyright (C) 2014-2015, 2017, 2019, D. R. Commander.
DRC7e3acc02015-10-10 10:25:46 -05009 * For conditions of distribution and use, see the accompanying README.ijg
10 * file.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000011 *
12 * This file contains routines to write output images in Microsoft "BMP"
13 * format (MS Windows 3.x and OS/2 1.x flavors).
14 * Either 8-bit colormapped or 24-bit full-color format can be written.
15 * No compression is supported.
16 *
17 * These routines may need modification for non-Unix environments or
18 * specialized applications. As they stand, they assume output to
19 * an ordinary stdio stream.
20 *
21 * This code contributed by James Arthur Boucher.
22 */
23
DRC19c791c2018-03-08 10:55:20 -060024#include "cmyk.h"
DRCe5eaf372014-05-09 18:00:32 +000025#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
DRC1d4c51a2014-08-30 22:01:05 +000026#include "jconfigint.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000027
28#ifdef BMP_SUPPORTED
29
30
31/*
32 * To support 12-bit JPEG data, we'd have to scale output down to 8 bits.
33 * This is not yet implemented.
34 */
35
36#if BITS_IN_JSAMPLE != 8
37 Sorry, this code only copes with 8-bit JSAMPLEs. /* deliberate syntax err */
38#endif
39
40/*
41 * Since BMP stores scanlines bottom-to-top, we have to invert the image
42 * from JPEG's top-to-bottom order. To do this, we save the outgoing data
43 * in a virtual array during put_pixel_row calls, then actually emit the
44 * BMP file during finish_output. The virtual array contains one JSAMPLE per
45 * pixel if the output is grayscale or colormapped, three if it is full color.
46 */
47
48/* Private version of data destination object */
49
50typedef struct {
DRCe5eaf372014-05-09 18:00:32 +000051 struct djpeg_dest_struct pub; /* public fields */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000052
DRCe5eaf372014-05-09 18:00:32 +000053 boolean is_os2; /* saves the OS2 format request flag */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000054
DRCe5eaf372014-05-09 18:00:32 +000055 jvirt_sarray_ptr whole_image; /* needed to reverse row order */
56 JDIMENSION data_width; /* JSAMPLEs per row */
57 JDIMENSION row_width; /* physical width of one row in the BMP file */
58 int pad_bytes; /* number of padding bytes needed per row */
59 JDIMENSION cur_output_row; /* next row# to write to virtual array */
DRCaa745902017-11-16 18:09:07 -060060
61 boolean use_inversion_array; /* TRUE = buffer the whole image, which is
62 stored to disk in bottom-up order, and
63 receive rows from the calling program in
64 top-down order
65
66 FALSE = the calling program will maintain
67 its own image buffer and write the rows in
68 bottom-up order */
69
70 JSAMPLE *iobuffer; /* I/O buffer (used to buffer a single row to
71 disk if use_inversion_array == FALSE) */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000072} bmp_dest_struct;
73
DRCbd498032016-02-19 08:53:33 -060074typedef bmp_dest_struct *bmp_dest_ptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000075
76
77/* Forward declarations */
DRC19c791c2018-03-08 10:55:20 -060078LOCAL(void) write_colormap(j_decompress_ptr cinfo, bmp_dest_ptr dest,
79 int map_colors, int map_entry_size);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000080
81
DRC1d4c51a2014-08-30 22:01:05 +000082static INLINE boolean is_big_endian(void)
DRC72a3cc02014-08-30 20:37:50 +000083{
84 int test_value = 1;
DRC9d9d8fe2017-11-17 18:15:42 -060085 if (*(char *)&test_value != 1)
DRC72a3cc02014-08-30 20:37:50 +000086 return TRUE;
87 return FALSE;
88}
89
90
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000091/*
92 * Write some pixel data.
93 * In this module rows_supplied will always be 1.
94 */
95
Thomas G. Lane489583f1996-02-07 00:00:00 +000096METHODDEF(void)
DRC19c791c2018-03-08 10:55:20 -060097put_pixel_rows(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
98 JDIMENSION rows_supplied)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000099/* This version is for writing 24-bit pixels */
100{
DRC19c791c2018-03-08 10:55:20 -0600101 bmp_dest_ptr dest = (bmp_dest_ptr)dinfo;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000102 JSAMPARRAY image_ptr;
103 register JSAMPROW inptr, outptr;
104 register JDIMENSION col;
105 int pad;
106
DRCaa745902017-11-16 18:09:07 -0600107 if (dest->use_inversion_array) {
108 /* Access next row in virtual array */
109 image_ptr = (*cinfo->mem->access_virt_sarray)
DRC19c791c2018-03-08 10:55:20 -0600110 ((j_common_ptr)cinfo, dest->whole_image,
111 dest->cur_output_row, (JDIMENSION)1, TRUE);
DRCaa745902017-11-16 18:09:07 -0600112 dest->cur_output_row++;
113 outptr = image_ptr[0];
114 } else {
115 outptr = dest->iobuffer;
116 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000117
118 /* Transfer data. Note destination values must be in BGR order
119 * (even though Microsoft's own documents say the opposite).
120 */
121 inptr = dest->pub.buffer[0];
DRC78df2e62014-05-12 09:23:57 +0000122
DRCaa745902017-11-16 18:09:07 -0600123 if (cinfo->out_color_space == JCS_EXT_BGR) {
124 MEMCOPY(outptr, inptr, dest->row_width);
125 outptr += cinfo->output_width * 3;
126 } else if (cinfo->out_color_space == JCS_RGB565) {
DRC72a3cc02014-08-30 20:37:50 +0000127 boolean big_endian = is_big_endian();
DRC78df2e62014-05-12 09:23:57 +0000128 unsigned short *inptr2 = (unsigned short *)inptr;
129 for (col = cinfo->output_width; col > 0; col--) {
DRC72a3cc02014-08-30 20:37:50 +0000130 if (big_endian) {
131 outptr[0] = (*inptr2 >> 5) & 0xF8;
132 outptr[1] = ((*inptr2 << 5) & 0xE0) | ((*inptr2 >> 11) & 0x1C);
133 outptr[2] = *inptr2 & 0xF8;
134 } else {
135 outptr[0] = (*inptr2 << 3) & 0xF8;
136 outptr[1] = (*inptr2 >> 3) & 0xFC;
137 outptr[2] = (*inptr2 >> 8) & 0xF8;
138 }
DRC78df2e62014-05-12 09:23:57 +0000139 outptr += 3;
140 inptr2++;
141 }
DRCaa745902017-11-16 18:09:07 -0600142 } else if (cinfo->out_color_space == JCS_CMYK) {
DRC78df2e62014-05-12 09:23:57 +0000143 for (col = cinfo->output_width; col > 0; col--) {
DRCaa745902017-11-16 18:09:07 -0600144 /* can omit GETJSAMPLE() safely */
145 JSAMPLE c = *inptr++, m = *inptr++, y = *inptr++, k = *inptr++;
146 cmyk_to_rgb(c, m, y, k, outptr + 2, outptr + 1, outptr);
DRC78df2e62014-05-12 09:23:57 +0000147 outptr += 3;
148 }
DRCaa745902017-11-16 18:09:07 -0600149 } else {
150 register int rindex = rgb_red[cinfo->out_color_space];
151 register int gindex = rgb_green[cinfo->out_color_space];
152 register int bindex = rgb_blue[cinfo->out_color_space];
153 register int ps = rgb_pixelsize[cinfo->out_color_space];
154
155 for (col = cinfo->output_width; col > 0; col--) {
156 /* can omit GETJSAMPLE() safely */
157 outptr[0] = inptr[bindex];
158 outptr[1] = inptr[gindex];
159 outptr[2] = inptr[rindex];
160 outptr += 3; inptr += ps;
161 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000162 }
163
164 /* Zero out the pad bytes. */
165 pad = dest->pad_bytes;
166 while (--pad >= 0)
167 *outptr++ = 0;
DRCaa745902017-11-16 18:09:07 -0600168
169 if (!dest->use_inversion_array)
DRC19c791c2018-03-08 10:55:20 -0600170 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->row_width);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000171}
172
Thomas G. Lane489583f1996-02-07 00:00:00 +0000173METHODDEF(void)
DRC19c791c2018-03-08 10:55:20 -0600174put_gray_rows(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
175 JDIMENSION rows_supplied)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000176/* This version is for grayscale OR quantized color output */
177{
DRC19c791c2018-03-08 10:55:20 -0600178 bmp_dest_ptr dest = (bmp_dest_ptr)dinfo;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000179 JSAMPARRAY image_ptr;
180 register JSAMPROW inptr, outptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000181 int pad;
182
DRCaa745902017-11-16 18:09:07 -0600183 if (dest->use_inversion_array) {
184 /* Access next row in virtual array */
185 image_ptr = (*cinfo->mem->access_virt_sarray)
DRC19c791c2018-03-08 10:55:20 -0600186 ((j_common_ptr)cinfo, dest->whole_image,
187 dest->cur_output_row, (JDIMENSION)1, TRUE);
DRCaa745902017-11-16 18:09:07 -0600188 dest->cur_output_row++;
189 outptr = image_ptr[0];
190 } else {
191 outptr = dest->iobuffer;
192 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000193
194 /* Transfer data. */
195 inptr = dest->pub.buffer[0];
DRCaa745902017-11-16 18:09:07 -0600196 MEMCOPY(outptr, inptr, cinfo->output_width);
197 outptr += cinfo->output_width;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000198
199 /* Zero out the pad bytes. */
200 pad = dest->pad_bytes;
201 while (--pad >= 0)
202 *outptr++ = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000203
DRCaa745902017-11-16 18:09:07 -0600204 if (!dest->use_inversion_array)
DRC19c791c2018-03-08 10:55:20 -0600205 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->row_width);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000206}
207
208
209/*
210 * Finish up at the end of the file.
211 *
212 * Here is where we really output the BMP file.
213 *
214 * First, routines to write the Windows and OS/2 variants of the file header.
215 */
216
Thomas G. Lane489583f1996-02-07 00:00:00 +0000217LOCAL(void)
DRC19c791c2018-03-08 10:55:20 -0600218write_bmp_header(j_decompress_ptr cinfo, bmp_dest_ptr dest)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000219/* Write a Windows-style BMP file header, including colormap if needed */
220{
221 char bmpfileheader[14];
222 char bmpinfoheader[40];
DRC19c791c2018-03-08 10:55:20 -0600223
224#define PUT_2B(array, offset, value) \
225 (array[offset] = (char)((value) & 0xFF), \
226 array[offset + 1] = (char)(((value) >> 8) & 0xFF))
227#define PUT_4B(array, offset, value) \
228 (array[offset] = (char)((value) & 0xFF), \
229 array[offset + 1] = (char)(((value) >> 8) & 0xFF), \
230 array[offset + 2] = (char)(((value) >> 16) & 0xFF), \
231 array[offset + 3] = (char)(((value) >> 24) & 0xFF))
232
DRC1e32fe32015-10-14 17:32:39 -0500233 long headersize, bfSize;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000234 int bits_per_pixel, cmap_entries;
235
236 /* Compute colormap size and total file size */
DRCaa745902017-11-16 18:09:07 -0600237 if (IsExtRGB(cinfo->out_color_space)) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000238 if (cinfo->quantize_colors) {
239 /* Colormapped RGB */
240 bits_per_pixel = 8;
241 cmap_entries = 256;
242 } else {
243 /* Unquantized, full color RGB */
244 bits_per_pixel = 24;
245 cmap_entries = 0;
246 }
DRCaa745902017-11-16 18:09:07 -0600247 } else if (cinfo->out_color_space == JCS_RGB565 ||
248 cinfo->out_color_space == JCS_CMYK) {
DRC78df2e62014-05-12 09:23:57 +0000249 bits_per_pixel = 24;
250 cmap_entries = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000251 } else {
252 /* Grayscale output. We need to fake a 256-entry colormap. */
253 bits_per_pixel = 8;
254 cmap_entries = 256;
255 }
256 /* File size */
257 headersize = 14 + 40 + cmap_entries * 4; /* Header and colormap */
DRC19c791c2018-03-08 10:55:20 -0600258 bfSize = headersize + (long)dest->row_width * (long)cinfo->output_height;
DRCe5eaf372014-05-09 18:00:32 +0000259
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000260 /* Set unused fields of header to 0 */
DRC5de454b2014-05-18 19:04:03 +0000261 MEMZERO(bmpfileheader, sizeof(bmpfileheader));
262 MEMZERO(bmpinfoheader, sizeof(bmpinfoheader));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000263
264 /* Fill the file header */
DRCe5eaf372014-05-09 18:00:32 +0000265 bmpfileheader[0] = 0x42; /* first 2 bytes are ASCII 'B', 'M' */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000266 bmpfileheader[1] = 0x4D;
267 PUT_4B(bmpfileheader, 2, bfSize); /* bfSize */
268 /* we leave bfReserved1 & bfReserved2 = 0 */
269 PUT_4B(bmpfileheader, 10, headersize); /* bfOffBits */
270
271 /* Fill the info header (Microsoft calls this a BITMAPINFOHEADER) */
DRCe5eaf372014-05-09 18:00:32 +0000272 PUT_2B(bmpinfoheader, 0, 40); /* biSize */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000273 PUT_4B(bmpinfoheader, 4, cinfo->output_width); /* biWidth */
274 PUT_4B(bmpinfoheader, 8, cinfo->output_height); /* biHeight */
DRCe5eaf372014-05-09 18:00:32 +0000275 PUT_2B(bmpinfoheader, 12, 1); /* biPlanes - must be 1 */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000276 PUT_2B(bmpinfoheader, 14, bits_per_pixel); /* biBitCount */
277 /* we leave biCompression = 0, for none */
278 /* we leave biSizeImage = 0; this is correct for uncompressed data */
279 if (cinfo->density_unit == 2) { /* if have density in dots/cm, then */
DRC19c791c2018-03-08 10:55:20 -0600280 PUT_4B(bmpinfoheader, 24, (long)(cinfo->X_density * 100)); /* XPels/M */
281 PUT_4B(bmpinfoheader, 28, (long)(cinfo->Y_density * 100)); /* XPels/M */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000282 }
283 PUT_2B(bmpinfoheader, 32, cmap_entries); /* biClrUsed */
284 /* we leave biClrImportant = 0 */
285
DRC19c791c2018-03-08 10:55:20 -0600286 if (JFWRITE(dest->pub.output_file, bmpfileheader, 14) != (size_t)14)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000287 ERREXIT(cinfo, JERR_FILE_WRITE);
DRC19c791c2018-03-08 10:55:20 -0600288 if (JFWRITE(dest->pub.output_file, bmpinfoheader, 40) != (size_t)40)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000289 ERREXIT(cinfo, JERR_FILE_WRITE);
290
291 if (cmap_entries > 0)
292 write_colormap(cinfo, dest, cmap_entries, 4);
293}
294
295
Thomas G. Lane489583f1996-02-07 00:00:00 +0000296LOCAL(void)
DRC19c791c2018-03-08 10:55:20 -0600297write_os2_header(j_decompress_ptr cinfo, bmp_dest_ptr dest)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000298/* Write an OS2-style BMP file header, including colormap if needed */
299{
300 char bmpfileheader[14];
301 char bmpcoreheader[12];
DRC1e32fe32015-10-14 17:32:39 -0500302 long headersize, bfSize;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000303 int bits_per_pixel, cmap_entries;
304
305 /* Compute colormap size and total file size */
DRCbeefb622019-01-01 20:15:25 -0600306 if (IsExtRGB(cinfo->out_color_space)) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000307 if (cinfo->quantize_colors) {
308 /* Colormapped RGB */
309 bits_per_pixel = 8;
310 cmap_entries = 256;
311 } else {
312 /* Unquantized, full color RGB */
313 bits_per_pixel = 24;
314 cmap_entries = 0;
315 }
DRCaa745902017-11-16 18:09:07 -0600316 } else if (cinfo->out_color_space == JCS_RGB565 ||
317 cinfo->out_color_space == JCS_CMYK) {
DRC78df2e62014-05-12 09:23:57 +0000318 bits_per_pixel = 24;
319 cmap_entries = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000320 } else {
321 /* Grayscale output. We need to fake a 256-entry colormap. */
322 bits_per_pixel = 8;
323 cmap_entries = 256;
324 }
325 /* File size */
326 headersize = 14 + 12 + cmap_entries * 3; /* Header and colormap */
DRC19c791c2018-03-08 10:55:20 -0600327 bfSize = headersize + (long)dest->row_width * (long)cinfo->output_height;
DRCe5eaf372014-05-09 18:00:32 +0000328
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000329 /* Set unused fields of header to 0 */
DRC5de454b2014-05-18 19:04:03 +0000330 MEMZERO(bmpfileheader, sizeof(bmpfileheader));
331 MEMZERO(bmpcoreheader, sizeof(bmpcoreheader));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000332
333 /* Fill the file header */
DRCe5eaf372014-05-09 18:00:32 +0000334 bmpfileheader[0] = 0x42; /* first 2 bytes are ASCII 'B', 'M' */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000335 bmpfileheader[1] = 0x4D;
336 PUT_4B(bmpfileheader, 2, bfSize); /* bfSize */
337 /* we leave bfReserved1 & bfReserved2 = 0 */
338 PUT_4B(bmpfileheader, 10, headersize); /* bfOffBits */
339
340 /* Fill the info header (Microsoft calls this a BITMAPCOREHEADER) */
DRCe5eaf372014-05-09 18:00:32 +0000341 PUT_2B(bmpcoreheader, 0, 12); /* bcSize */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000342 PUT_2B(bmpcoreheader, 4, cinfo->output_width); /* bcWidth */
343 PUT_2B(bmpcoreheader, 6, cinfo->output_height); /* bcHeight */
DRCe5eaf372014-05-09 18:00:32 +0000344 PUT_2B(bmpcoreheader, 8, 1); /* bcPlanes - must be 1 */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000345 PUT_2B(bmpcoreheader, 10, bits_per_pixel); /* bcBitCount */
346
DRC19c791c2018-03-08 10:55:20 -0600347 if (JFWRITE(dest->pub.output_file, bmpfileheader, 14) != (size_t)14)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000348 ERREXIT(cinfo, JERR_FILE_WRITE);
DRC19c791c2018-03-08 10:55:20 -0600349 if (JFWRITE(dest->pub.output_file, bmpcoreheader, 12) != (size_t)12)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000350 ERREXIT(cinfo, JERR_FILE_WRITE);
351
352 if (cmap_entries > 0)
353 write_colormap(cinfo, dest, cmap_entries, 3);
354}
355
356
357/*
358 * Write the colormap.
359 * Windows uses BGR0 map entries; OS/2 uses BGR entries.
360 */
361
Thomas G. Lane489583f1996-02-07 00:00:00 +0000362LOCAL(void)
DRC19c791c2018-03-08 10:55:20 -0600363write_colormap(j_decompress_ptr cinfo, bmp_dest_ptr dest, int map_colors,
364 int map_entry_size)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000365{
366 JSAMPARRAY colormap = cinfo->colormap;
367 int num_colors = cinfo->actual_number_of_colors;
DRCbd498032016-02-19 08:53:33 -0600368 FILE *outfile = dest->pub.output_file;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000369 int i;
370
371 if (colormap != NULL) {
372 if (cinfo->out_color_components == 3) {
373 /* Normal case with RGB colormap */
374 for (i = 0; i < num_colors; i++) {
DRCe5eaf372014-05-09 18:00:32 +0000375 putc(GETJSAMPLE(colormap[2][i]), outfile);
376 putc(GETJSAMPLE(colormap[1][i]), outfile);
377 putc(GETJSAMPLE(colormap[0][i]), outfile);
378 if (map_entry_size == 4)
379 putc(0, outfile);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000380 }
381 } else {
382 /* Grayscale colormap (only happens with grayscale quantization) */
383 for (i = 0; i < num_colors; i++) {
DRCe5eaf372014-05-09 18:00:32 +0000384 putc(GETJSAMPLE(colormap[0][i]), outfile);
385 putc(GETJSAMPLE(colormap[0][i]), outfile);
386 putc(GETJSAMPLE(colormap[0][i]), outfile);
387 if (map_entry_size == 4)
388 putc(0, outfile);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000389 }
390 }
391 } else {
392 /* If no colormap, must be grayscale data. Generate a linear "map". */
393 for (i = 0; i < 256; i++) {
394 putc(i, outfile);
395 putc(i, outfile);
396 putc(i, outfile);
397 if (map_entry_size == 4)
DRCe5eaf372014-05-09 18:00:32 +0000398 putc(0, outfile);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000399 }
400 }
DRCe5eaf372014-05-09 18:00:32 +0000401 /* Pad colormap with zeros to ensure specified number of colormap entries */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000402 if (i > map_colors)
403 ERREXIT1(cinfo, JERR_TOO_MANY_COLORS, i);
404 for (; i < map_colors; i++) {
405 putc(0, outfile);
406 putc(0, outfile);
407 putc(0, outfile);
408 if (map_entry_size == 4)
409 putc(0, outfile);
410 }
411}
412
413
DRCaa745902017-11-16 18:09:07 -0600414/*
415 * Startup: write the file header unless the inversion array is being used.
416 */
417
418METHODDEF(void)
DRC19c791c2018-03-08 10:55:20 -0600419start_output_bmp(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
DRCaa745902017-11-16 18:09:07 -0600420{
DRC19c791c2018-03-08 10:55:20 -0600421 bmp_dest_ptr dest = (bmp_dest_ptr)dinfo;
DRCaa745902017-11-16 18:09:07 -0600422
423 if (!dest->use_inversion_array) {
424 /* Write the header and colormap */
425 if (dest->is_os2)
426 write_os2_header(cinfo, dest);
427 else
428 write_bmp_header(cinfo, dest);
429 }
430}
431
432
Thomas G. Lane489583f1996-02-07 00:00:00 +0000433METHODDEF(void)
DRC19c791c2018-03-08 10:55:20 -0600434finish_output_bmp(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000435{
DRC19c791c2018-03-08 10:55:20 -0600436 bmp_dest_ptr dest = (bmp_dest_ptr)dinfo;
DRCbd498032016-02-19 08:53:33 -0600437 register FILE *outfile = dest->pub.output_file;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000438 JSAMPARRAY image_ptr;
439 register JSAMPROW data_ptr;
440 JDIMENSION row;
441 register JDIMENSION col;
DRC19c791c2018-03-08 10:55:20 -0600442 cd_progress_ptr progress = (cd_progress_ptr)cinfo->progress;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000443
DRCaa745902017-11-16 18:09:07 -0600444 if (dest->use_inversion_array) {
445 /* Write the header and colormap */
446 if (dest->is_os2)
447 write_os2_header(cinfo, dest);
448 else
449 write_bmp_header(cinfo, dest);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000450
DRCaa745902017-11-16 18:09:07 -0600451 /* Write the file body from our virtual array */
452 for (row = cinfo->output_height; row > 0; row--) {
453 if (progress != NULL) {
DRC19c791c2018-03-08 10:55:20 -0600454 progress->pub.pass_counter = (long)(cinfo->output_height - row);
455 progress->pub.pass_limit = (long)cinfo->output_height;
456 (*progress->pub.progress_monitor) ((j_common_ptr)cinfo);
DRCaa745902017-11-16 18:09:07 -0600457 }
458 image_ptr = (*cinfo->mem->access_virt_sarray)
DRC19c791c2018-03-08 10:55:20 -0600459 ((j_common_ptr)cinfo, dest->whole_image, row - 1, (JDIMENSION)1,
460 FALSE);
DRCaa745902017-11-16 18:09:07 -0600461 data_ptr = image_ptr[0];
462 for (col = dest->row_width; col > 0; col--) {
463 putc(GETJSAMPLE(*data_ptr), outfile);
464 data_ptr++;
465 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000466 }
DRCaa745902017-11-16 18:09:07 -0600467 if (progress != NULL)
468 progress->completed_extra_passes++;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000469 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000470
471 /* Make sure we wrote the output file OK */
472 fflush(outfile);
473 if (ferror(outfile))
474 ERREXIT(cinfo, JERR_FILE_WRITE);
475}
476
477
478/*
479 * The module selection routine for BMP format output.
480 */
481
Thomas G. Lane489583f1996-02-07 00:00:00 +0000482GLOBAL(djpeg_dest_ptr)
DRC19c791c2018-03-08 10:55:20 -0600483jinit_write_bmp(j_decompress_ptr cinfo, boolean is_os2,
484 boolean use_inversion_array)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000485{
486 bmp_dest_ptr dest;
487 JDIMENSION row_width;
488
489 /* Create module interface object, fill in method pointers */
490 dest = (bmp_dest_ptr)
DRC19c791c2018-03-08 10:55:20 -0600491 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
492 sizeof(bmp_dest_struct));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000493 dest->pub.start_output = start_output_bmp;
494 dest->pub.finish_output = finish_output_bmp;
DRC5bc43c72017-11-13 21:01:53 -0600495 dest->pub.calc_buffer_dimensions = NULL;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000496 dest->is_os2 = is_os2;
497
498 if (cinfo->out_color_space == JCS_GRAYSCALE) {
499 dest->pub.put_pixel_rows = put_gray_rows;
DRCbeefb622019-01-01 20:15:25 -0600500 } else if (IsExtRGB(cinfo->out_color_space)) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000501 if (cinfo->quantize_colors)
502 dest->pub.put_pixel_rows = put_gray_rows;
503 else
504 dest->pub.put_pixel_rows = put_pixel_rows;
DRCf8cca812019-01-01 20:32:40 -0600505 } else if (!cinfo->quantize_colors &&
506 (cinfo->out_color_space == JCS_RGB565 ||
507 cinfo->out_color_space == JCS_CMYK)) {
DRC19c791c2018-03-08 10:55:20 -0600508 dest->pub.put_pixel_rows = put_pixel_rows;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000509 } else {
510 ERREXIT(cinfo, JERR_BMP_COLORSPACE);
511 }
512
513 /* Calculate output image dimensions so we can allocate space */
514 jpeg_calc_output_dimensions(cinfo);
515
516 /* Determine width of rows in the BMP file (padded to 4-byte boundary). */
DRC78df2e62014-05-12 09:23:57 +0000517 if (cinfo->out_color_space == JCS_RGB565) {
518 row_width = cinfo->output_width * 2;
519 dest->row_width = dest->data_width = cinfo->output_width * 3;
DRCaa745902017-11-16 18:09:07 -0600520 while ((row_width & 3) != 0) row_width++;
521 } else if (!cinfo->quantize_colors &&
522 (IsExtRGB(cinfo->out_color_space) ||
523 cinfo->out_color_space == JCS_CMYK)) {
524 row_width = cinfo->output_width * cinfo->output_components;
525 dest->row_width = dest->data_width = cinfo->output_width * 3;
DRC78df2e62014-05-12 09:23:57 +0000526 } else {
527 row_width = cinfo->output_width * cinfo->output_components;
528 dest->row_width = dest->data_width = row_width;
529 }
530 while ((dest->row_width & 3) != 0) dest->row_width++;
DRC19c791c2018-03-08 10:55:20 -0600531 dest->pad_bytes = (int)(dest->row_width - dest->data_width);
DRCaa745902017-11-16 18:09:07 -0600532
533
534 if (use_inversion_array) {
535 /* Allocate space for inversion array, prepare for write pass */
536 dest->whole_image = (*cinfo->mem->request_virt_sarray)
DRC19c791c2018-03-08 10:55:20 -0600537 ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,
538 dest->row_width, cinfo->output_height, (JDIMENSION)1);
DRCaa745902017-11-16 18:09:07 -0600539 dest->cur_output_row = 0;
540 if (cinfo->progress != NULL) {
DRC19c791c2018-03-08 10:55:20 -0600541 cd_progress_ptr progress = (cd_progress_ptr)cinfo->progress;
DRCaa745902017-11-16 18:09:07 -0600542 progress->total_extra_passes++; /* count file input as separate pass */
543 }
DRC78df2e62014-05-12 09:23:57 +0000544 } else {
DRC19c791c2018-03-08 10:55:20 -0600545 dest->iobuffer = (JSAMPLE *)(*cinfo->mem->alloc_small)
546 ((j_common_ptr)cinfo, JPOOL_IMAGE, dest->row_width);
DRC78df2e62014-05-12 09:23:57 +0000547 }
DRCaa745902017-11-16 18:09:07 -0600548 dest->use_inversion_array = use_inversion_array;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000549
550 /* Create decompressor output buffer. */
551 dest->pub.buffer = (*cinfo->mem->alloc_sarray)
DRC19c791c2018-03-08 10:55:20 -0600552 ((j_common_ptr)cinfo, JPOOL_IMAGE, row_width, (JDIMENSION)1);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000553 dest->pub.buffer_height = 1;
554
DRC19c791c2018-03-08 10:55:20 -0600555 return (djpeg_dest_ptr)dest;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000556}
557
558#endif /* BMP_SUPPORTED */