123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558 |
- #include "cmyk.h"
- #include "cdjpeg.h"
- #include "jconfigint.h"
- #ifdef BMP_SUPPORTED
- #if BITS_IN_JSAMPLE != 8
- Sorry, this code only copes with 8-bit JSAMPLEs.
- #endif
- typedef struct {
- struct djpeg_dest_struct pub;
- boolean is_os2;
- jvirt_sarray_ptr whole_image;
- JDIMENSION data_width;
- JDIMENSION row_width;
- int pad_bytes;
- JDIMENSION cur_output_row;
- boolean use_inversion_array;
- JSAMPLE *iobuffer;
- } bmp_dest_struct;
- typedef bmp_dest_struct *bmp_dest_ptr;
- LOCAL(void) write_colormap(j_decompress_ptr cinfo, bmp_dest_ptr dest,
- int map_colors, int map_entry_size);
- static INLINE boolean is_big_endian(void)
- {
- int test_value = 1;
- if (*(char *)&test_value != 1)
- return TRUE;
- return FALSE;
- }
- METHODDEF(void)
- put_pixel_rows(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
- JDIMENSION rows_supplied)
- {
- bmp_dest_ptr dest = (bmp_dest_ptr)dinfo;
- JSAMPARRAY image_ptr;
- register JSAMPROW inptr, outptr;
- register JDIMENSION col;
- int pad;
- if (dest->use_inversion_array) {
-
- image_ptr = (*cinfo->mem->access_virt_sarray)
- ((j_common_ptr)cinfo, dest->whole_image,
- dest->cur_output_row, (JDIMENSION)1, TRUE);
- dest->cur_output_row++;
- outptr = image_ptr[0];
- } else {
- outptr = dest->iobuffer;
- }
-
- inptr = dest->pub.buffer[0];
- if (cinfo->out_color_space == JCS_EXT_BGR) {
- MEMCOPY(outptr, inptr, dest->row_width);
- outptr += cinfo->output_width * 3;
- } else if (cinfo->out_color_space == JCS_RGB565) {
- boolean big_endian = is_big_endian();
- unsigned short *inptr2 = (unsigned short *)inptr;
- for (col = cinfo->output_width; col > 0; col--) {
- if (big_endian) {
- outptr[0] = (*inptr2 >> 5) & 0xF8;
- outptr[1] = ((*inptr2 << 5) & 0xE0) | ((*inptr2 >> 11) & 0x1C);
- outptr[2] = *inptr2 & 0xF8;
- } else {
- outptr[0] = (*inptr2 << 3) & 0xF8;
- outptr[1] = (*inptr2 >> 3) & 0xFC;
- outptr[2] = (*inptr2 >> 8) & 0xF8;
- }
- outptr += 3;
- inptr2++;
- }
- } else if (cinfo->out_color_space == JCS_CMYK) {
- for (col = cinfo->output_width; col > 0; col--) {
-
- JSAMPLE c = *inptr++, m = *inptr++, y = *inptr++, k = *inptr++;
- cmyk_to_rgb(c, m, y, k, outptr + 2, outptr + 1, outptr);
- outptr += 3;
- }
- } else {
- register int rindex = rgb_red[cinfo->out_color_space];
- register int gindex = rgb_green[cinfo->out_color_space];
- register int bindex = rgb_blue[cinfo->out_color_space];
- register int ps = rgb_pixelsize[cinfo->out_color_space];
- for (col = cinfo->output_width; col > 0; col--) {
-
- outptr[0] = inptr[bindex];
- outptr[1] = inptr[gindex];
- outptr[2] = inptr[rindex];
- outptr += 3; inptr += ps;
- }
- }
-
- pad = dest->pad_bytes;
- while (--pad >= 0)
- *outptr++ = 0;
- if (!dest->use_inversion_array)
- (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->row_width);
- }
- METHODDEF(void)
- put_gray_rows(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
- JDIMENSION rows_supplied)
- {
- bmp_dest_ptr dest = (bmp_dest_ptr)dinfo;
- JSAMPARRAY image_ptr;
- register JSAMPROW inptr, outptr;
- int pad;
- if (dest->use_inversion_array) {
-
- image_ptr = (*cinfo->mem->access_virt_sarray)
- ((j_common_ptr)cinfo, dest->whole_image,
- dest->cur_output_row, (JDIMENSION)1, TRUE);
- dest->cur_output_row++;
- outptr = image_ptr[0];
- } else {
- outptr = dest->iobuffer;
- }
-
- inptr = dest->pub.buffer[0];
- MEMCOPY(outptr, inptr, cinfo->output_width);
- outptr += cinfo->output_width;
-
- pad = dest->pad_bytes;
- while (--pad >= 0)
- *outptr++ = 0;
- if (!dest->use_inversion_array)
- (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->row_width);
- }
- LOCAL(void)
- write_bmp_header(j_decompress_ptr cinfo, bmp_dest_ptr dest)
- {
- char bmpfileheader[14];
- char bmpinfoheader[40];
- #define PUT_2B(array, offset, value) \
- (array[offset] = (char)((value) & 0xFF), \
- array[offset + 1] = (char)(((value) >> 8) & 0xFF))
- #define PUT_4B(array, offset, value) \
- (array[offset] = (char)((value) & 0xFF), \
- array[offset + 1] = (char)(((value) >> 8) & 0xFF), \
- array[offset + 2] = (char)(((value) >> 16) & 0xFF), \
- array[offset + 3] = (char)(((value) >> 24) & 0xFF))
- long headersize, bfSize;
- int bits_per_pixel, cmap_entries;
-
- if (IsExtRGB(cinfo->out_color_space)) {
- if (cinfo->quantize_colors) {
-
- bits_per_pixel = 8;
- cmap_entries = 256;
- } else {
-
- bits_per_pixel = 24;
- cmap_entries = 0;
- }
- } else if (cinfo->out_color_space == JCS_RGB565 ||
- cinfo->out_color_space == JCS_CMYK) {
- bits_per_pixel = 24;
- cmap_entries = 0;
- } else {
-
- bits_per_pixel = 8;
- cmap_entries = 256;
- }
-
- headersize = 14 + 40 + cmap_entries * 4;
- bfSize = headersize + (long)dest->row_width * (long)cinfo->output_height;
-
- MEMZERO(bmpfileheader, sizeof(bmpfileheader));
- MEMZERO(bmpinfoheader, sizeof(bmpinfoheader));
-
- bmpfileheader[0] = 0x42;
- bmpfileheader[1] = 0x4D;
- PUT_4B(bmpfileheader, 2, bfSize);
-
- PUT_4B(bmpfileheader, 10, headersize);
-
- PUT_2B(bmpinfoheader, 0, 40);
- PUT_4B(bmpinfoheader, 4, cinfo->output_width);
- PUT_4B(bmpinfoheader, 8, cinfo->output_height);
- PUT_2B(bmpinfoheader, 12, 1);
- PUT_2B(bmpinfoheader, 14, bits_per_pixel);
-
-
- if (cinfo->density_unit == 2) {
- PUT_4B(bmpinfoheader, 24, (long)(cinfo->X_density * 100));
- PUT_4B(bmpinfoheader, 28, (long)(cinfo->Y_density * 100));
- }
- PUT_2B(bmpinfoheader, 32, cmap_entries);
-
- if (JFWRITE(dest->pub.output_file, bmpfileheader, 14) != (size_t)14)
- ERREXIT(cinfo, JERR_FILE_WRITE);
- if (JFWRITE(dest->pub.output_file, bmpinfoheader, 40) != (size_t)40)
- ERREXIT(cinfo, JERR_FILE_WRITE);
- if (cmap_entries > 0)
- write_colormap(cinfo, dest, cmap_entries, 4);
- }
- LOCAL(void)
- write_os2_header(j_decompress_ptr cinfo, bmp_dest_ptr dest)
- {
- char bmpfileheader[14];
- char bmpcoreheader[12];
- long headersize, bfSize;
- int bits_per_pixel, cmap_entries;
-
- if (IsExtRGB(cinfo->out_color_space)) {
- if (cinfo->quantize_colors) {
-
- bits_per_pixel = 8;
- cmap_entries = 256;
- } else {
-
- bits_per_pixel = 24;
- cmap_entries = 0;
- }
- } else if (cinfo->out_color_space == JCS_RGB565 ||
- cinfo->out_color_space == JCS_CMYK) {
- bits_per_pixel = 24;
- cmap_entries = 0;
- } else {
-
- bits_per_pixel = 8;
- cmap_entries = 256;
- }
-
- headersize = 14 + 12 + cmap_entries * 3;
- bfSize = headersize + (long)dest->row_width * (long)cinfo->output_height;
-
- MEMZERO(bmpfileheader, sizeof(bmpfileheader));
- MEMZERO(bmpcoreheader, sizeof(bmpcoreheader));
-
- bmpfileheader[0] = 0x42;
- bmpfileheader[1] = 0x4D;
- PUT_4B(bmpfileheader, 2, bfSize);
-
- PUT_4B(bmpfileheader, 10, headersize);
-
- PUT_2B(bmpcoreheader, 0, 12);
- PUT_2B(bmpcoreheader, 4, cinfo->output_width);
- PUT_2B(bmpcoreheader, 6, cinfo->output_height);
- PUT_2B(bmpcoreheader, 8, 1);
- PUT_2B(bmpcoreheader, 10, bits_per_pixel);
- if (JFWRITE(dest->pub.output_file, bmpfileheader, 14) != (size_t)14)
- ERREXIT(cinfo, JERR_FILE_WRITE);
- if (JFWRITE(dest->pub.output_file, bmpcoreheader, 12) != (size_t)12)
- ERREXIT(cinfo, JERR_FILE_WRITE);
- if (cmap_entries > 0)
- write_colormap(cinfo, dest, cmap_entries, 3);
- }
- LOCAL(void)
- write_colormap(j_decompress_ptr cinfo, bmp_dest_ptr dest, int map_colors,
- int map_entry_size)
- {
- JSAMPARRAY colormap = cinfo->colormap;
- int num_colors = cinfo->actual_number_of_colors;
- FILE *outfile = dest->pub.output_file;
- int i;
- if (colormap != NULL) {
- if (cinfo->out_color_components == 3) {
-
- for (i = 0; i < num_colors; i++) {
- putc(GETJSAMPLE(colormap[2][i]), outfile);
- putc(GETJSAMPLE(colormap[1][i]), outfile);
- putc(GETJSAMPLE(colormap[0][i]), outfile);
- if (map_entry_size == 4)
- putc(0, outfile);
- }
- } else {
-
- for (i = 0; i < num_colors; i++) {
- putc(GETJSAMPLE(colormap[0][i]), outfile);
- putc(GETJSAMPLE(colormap[0][i]), outfile);
- putc(GETJSAMPLE(colormap[0][i]), outfile);
- if (map_entry_size == 4)
- putc(0, outfile);
- }
- }
- } else {
-
- for (i = 0; i < 256; i++) {
- putc(i, outfile);
- putc(i, outfile);
- putc(i, outfile);
- if (map_entry_size == 4)
- putc(0, outfile);
- }
- }
-
- if (i > map_colors)
- ERREXIT1(cinfo, JERR_TOO_MANY_COLORS, i);
- for (; i < map_colors; i++) {
- putc(0, outfile);
- putc(0, outfile);
- putc(0, outfile);
- if (map_entry_size == 4)
- putc(0, outfile);
- }
- }
- METHODDEF(void)
- start_output_bmp(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
- {
- bmp_dest_ptr dest = (bmp_dest_ptr)dinfo;
- if (!dest->use_inversion_array) {
-
- if (dest->is_os2)
- write_os2_header(cinfo, dest);
- else
- write_bmp_header(cinfo, dest);
- }
- }
- METHODDEF(void)
- finish_output_bmp(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
- {
- bmp_dest_ptr dest = (bmp_dest_ptr)dinfo;
- register FILE *outfile = dest->pub.output_file;
- JSAMPARRAY image_ptr;
- register JSAMPROW data_ptr;
- JDIMENSION row;
- register JDIMENSION col;
- cd_progress_ptr progress = (cd_progress_ptr)cinfo->progress;
- if (dest->use_inversion_array) {
-
- if (dest->is_os2)
- write_os2_header(cinfo, dest);
- else
- write_bmp_header(cinfo, dest);
-
- for (row = cinfo->output_height; row > 0; row--) {
- if (progress != NULL) {
- progress->pub.pass_counter = (long)(cinfo->output_height - row);
- progress->pub.pass_limit = (long)cinfo->output_height;
- (*progress->pub.progress_monitor) ((j_common_ptr)cinfo);
- }
- image_ptr = (*cinfo->mem->access_virt_sarray)
- ((j_common_ptr)cinfo, dest->whole_image, row - 1, (JDIMENSION)1,
- FALSE);
- data_ptr = image_ptr[0];
- for (col = dest->row_width; col > 0; col--) {
- putc(GETJSAMPLE(*data_ptr), outfile);
- data_ptr++;
- }
- }
- if (progress != NULL)
- progress->completed_extra_passes++;
- }
-
- fflush(outfile);
- if (ferror(outfile))
- ERREXIT(cinfo, JERR_FILE_WRITE);
- }
- GLOBAL(djpeg_dest_ptr)
- jinit_write_bmp(j_decompress_ptr cinfo, boolean is_os2,
- boolean use_inversion_array)
- {
- bmp_dest_ptr dest;
- JDIMENSION row_width;
-
- dest = (bmp_dest_ptr)
- (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
- sizeof(bmp_dest_struct));
- dest->pub.start_output = start_output_bmp;
- dest->pub.finish_output = finish_output_bmp;
- dest->pub.calc_buffer_dimensions = NULL;
- dest->is_os2 = is_os2;
- if (cinfo->out_color_space == JCS_GRAYSCALE) {
- dest->pub.put_pixel_rows = put_gray_rows;
- } else if (IsExtRGB(cinfo->out_color_space)) {
- if (cinfo->quantize_colors)
- dest->pub.put_pixel_rows = put_gray_rows;
- else
- dest->pub.put_pixel_rows = put_pixel_rows;
- } else if (!cinfo->quantize_colors &&
- (cinfo->out_color_space == JCS_RGB565 ||
- cinfo->out_color_space == JCS_CMYK)) {
- dest->pub.put_pixel_rows = put_pixel_rows;
- } else {
- ERREXIT(cinfo, JERR_BMP_COLORSPACE);
- }
-
- jpeg_calc_output_dimensions(cinfo);
-
- if (cinfo->out_color_space == JCS_RGB565) {
- row_width = cinfo->output_width * 2;
- dest->row_width = dest->data_width = cinfo->output_width * 3;
- while ((row_width & 3) != 0) row_width++;
- } else if (!cinfo->quantize_colors &&
- (IsExtRGB(cinfo->out_color_space) ||
- cinfo->out_color_space == JCS_CMYK)) {
- row_width = cinfo->output_width * cinfo->output_components;
- dest->row_width = dest->data_width = cinfo->output_width * 3;
- } else {
- row_width = cinfo->output_width * cinfo->output_components;
- dest->row_width = dest->data_width = row_width;
- }
- while ((dest->row_width & 3) != 0) dest->row_width++;
- dest->pad_bytes = (int)(dest->row_width - dest->data_width);
- if (use_inversion_array) {
-
- dest->whole_image = (*cinfo->mem->request_virt_sarray)
- ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,
- dest->row_width, cinfo->output_height, (JDIMENSION)1);
- dest->cur_output_row = 0;
- if (cinfo->progress != NULL) {
- cd_progress_ptr progress = (cd_progress_ptr)cinfo->progress;
- progress->total_extra_passes++;
- }
- } else {
- dest->iobuffer = (JSAMPLE *)(*cinfo->mem->alloc_small)
- ((j_common_ptr)cinfo, JPOOL_IMAGE, dest->row_width);
- }
- dest->use_inversion_array = use_inversion_array;
-
- dest->pub.buffer = (*cinfo->mem->alloc_sarray)
- ((j_common_ptr)cinfo, JPOOL_IMAGE, row_width, (JDIMENSION)1);
- dest->pub.buffer_height = 1;
- return (djpeg_dest_ptr)dest;
- }
- #endif
|