7 bmp.c - read and write windows BMP files
14 if (!i_writebmp_wiol(im, ig)) {
21 Reads and writes Windows BMP files.
28 #define FILEHEAD_SIZE 14
29 #define INFOHEAD_SIZE 40
33 #define BI_BITFIELDS 3
34 #define BMPRLE_ENDOFLINE 0
35 #define BMPRLE_ENDOFBMP 1
36 #define BMPRLE_DELTA 2
38 #define SIGNBIT32 ((i_upacked_t)1U << 31)
39 #define SIGNBIT16 ((i_upacked_t)1U << 15)
41 #define SIGNMAX32 ((1UL << 31) - 1)
43 static int read_packed(io_glue *ig, char *format, ...);
44 static int write_packed(io_glue *ig, char *format, ...);
45 static int write_bmphead(io_glue *ig, i_img *im, int bit_count,
47 static int write_1bit_data(io_glue *ig, i_img *im);
48 static int write_4bit_data(io_glue *ig, i_img *im);
49 static int write_8bit_data(io_glue *ig, i_img *im);
50 static int write_24bit_data(io_glue *ig, i_img *im);
51 static int read_bmp_pal(io_glue *ig, i_img *im, int count);
52 static i_img *read_1bit_bmp(io_glue *ig, int xsize, int ysize, int clr_used,
53 int compression, long offbits, int allow_incomplete);
54 static i_img *read_4bit_bmp(io_glue *ig, int xsize, int ysize, int clr_used,
55 int compression, long offbits, int allow_incomplete);
56 static i_img *read_8bit_bmp(io_glue *ig, int xsize, int ysize, int clr_used,
57 int compression, long offbits, int allow_incomplete);
58 static i_img *read_direct_bmp(io_glue *ig, int xsize, int ysize,
59 int bit_count, int clr_used, int compression,
60 long offbits, int allow_incomplete);
62 /* used for the read_packed() and write_packed() functions, an integer
64 typedef long i_packed_t;
65 typedef unsigned long i_upacked_t;
68 =item i_writebmp_wiol(im, io_glue)
70 Writes the image as a BMP file. Uses 1-bit, 4-bit, 8-bit or 24-bit
71 formats depending on the image.
73 Never compresses the image.
78 i_writebmp_wiol(i_img *im, io_glue *ig) {
82 if (im->type == i_direct_type) {
83 return write_24bit_data(ig, im);
88 /* must be paletted */
89 pal_size = i_colorcount(im);
91 return write_1bit_data(ig, im);
93 else if (pal_size <= 16) {
94 return write_4bit_data(ig, im);
97 return write_8bit_data(ig, im);
103 =item i_readbmp_wiol(ig)
105 Reads a Windows format bitmap from the given file.
107 Handles BI_RLE4 and BI_RLE8 compressed images. Attempts to handle
108 BI_BITFIELDS images too, but I need a test image.
114 i_readbmp_wiol(io_glue *ig, int allow_incomplete) {
115 i_packed_t b_magic, m_magic, filesize, res1, res2, infohead_size;
116 i_packed_t xsize, ysize, planes, bit_count, compression, size_image, xres, yres;
117 i_packed_t clr_used, clr_important, offbits;
120 mm_log((1, "i_readbmp_wiol(ig %p)\n", ig));
124 if (!read_packed(ig, "CCVvvVVV!V!vvVVVVVV", &b_magic, &m_magic, &filesize,
125 &res1, &res2, &offbits, &infohead_size,
126 &xsize, &ysize, &planes,
127 &bit_count, &compression, &size_image, &xres, &yres,
128 &clr_used, &clr_important)) {
129 i_push_error(0, "file too short to be a BMP file");
132 if (b_magic != 'B' || m_magic != 'M' || infohead_size != INFOHEAD_SIZE
134 i_push_error(0, "not a BMP file");
138 mm_log((1, " bmp header: filesize %d offbits %d xsize %d ysize %d planes %d "
139 "bit_count %d compression %d size %d xres %d yres %d clr_used %d "
140 "clr_important %d\n", (int)filesize, (int)offbits, (int)xsize,
141 (int)ysize, (int)planes, (int)bit_count, (int)compression,
142 (int)size_image, (int)xres, (int)yres, (int)clr_used,
143 (int)clr_important));
145 if (!i_int_check_image_file_limits(xsize, abs(ysize), 3, sizeof(i_sample_t))) {
146 mm_log((1, "i_readbmp_wiol: image size exceeds limits\n"));
152 im = read_1bit_bmp(ig, xsize, ysize, clr_used, compression, offbits,
157 im = read_4bit_bmp(ig, xsize, ysize, clr_used, compression, offbits,
162 im = read_8bit_bmp(ig, xsize, ysize, clr_used, compression, offbits,
169 im = read_direct_bmp(ig, xsize, ysize, bit_count, clr_used, compression,
170 offbits, allow_incomplete);
174 i_push_errorf(0, "unknown bit count for BMP file (%d)", (int)bit_count);
179 /* store the resolution */
182 else if (yres && !xres)
185 i_tags_set_float2(&im->tags, "i_xres", 0, xres * 0.0254, 4);
186 i_tags_set_float2(&im->tags, "i_yres", 0, yres * 0.0254, 4);
188 i_tags_addn(&im->tags, "bmp_compression", 0, compression);
189 i_tags_addn(&im->tags, "bmp_important_colors", 0, clr_important);
190 i_tags_addn(&im->tags, "bmp_used_colors", 0, clr_used);
191 i_tags_addn(&im->tags, "bmp_filesize", 0, filesize);
192 i_tags_addn(&im->tags, "bmp_bit_count", 0, bit_count);
193 i_tags_add(&im->tags, "i_format", 0, "bmp", 3, 0);
202 =head1 IMPLEMENTATION FUNCTIONS
204 Internal functions used in the implementation.
208 =item read_packed(ig, format, ...)
210 Reads from the specified "file" the specified sizes. The format codes
211 match those used by perl's pack() function, though only a few are
212 implemented. In all cases the vararg arguement is an int *.
214 Returns non-zero if all of the arguments were read.
219 read_packed(io_glue *ig, char *format, ...) {
220 unsigned char buf[4];
225 int shrieking; /* format code has a ! flag */
227 va_start(ap, format);
230 p = va_arg(ap, i_packed_t *);
233 shrieking = *format == '!';
234 if (shrieking) ++format;
238 if (i_io_read(ig, buf, 2) != 2)
240 work = buf[0] + ((i_packed_t)buf[1] << 8);
242 *p = (work ^ SIGNBIT16) - SIGNBIT16;
248 if (i_io_read(ig, buf, 4) != 4)
250 work = buf[0] + (buf[1] << 8) + ((i_packed_t)buf[2] << 16) + ((i_packed_t)buf[3] << 24);
252 *p = (work ^ SIGNBIT32) - SIGNBIT32;
258 if (i_io_read(ig, buf, 1) != 1)
264 if (i_io_read(ig, buf, 1) != 1)
269 case '3': /* extension - 24-bit number */
270 if (i_io_read(ig, buf, 3) != 3)
272 *p = buf[0] + (buf[1] << 8) + ((i_packed_t)buf[2] << 16);
276 i_fatal(1, "Unknown read_packed format code 0x%02x", code);
283 =item write_packed(ig, format, ...)
285 Writes packed data to the specified io_glue.
287 Returns non-zero on success.
293 write_packed(io_glue *ig, char *format, ...) {
294 unsigned char buf[4];
298 va_start(ap, format);
301 i = va_arg(ap, i_upacked_t);
307 if (i_io_write(ig, buf, 2) == -1)
313 buf[1] = (i >> 8) & 0xFF;
314 buf[2] = (i >> 16) & 0xFF;
315 buf[3] = (i >> 24) & 0xFF;
316 if (i_io_write(ig, buf, 4) == -1)
323 if (i_io_write(ig, buf, 1) == -1)
328 i_fatal(1, "Unknown write_packed format code 0x%02x", *format);
338 =item write_bmphead(ig, im, bit_count, data_size)
340 Writes a Windows BMP header to the file.
342 Returns non-zero on success.
348 int write_bmphead(io_glue *ig, i_img *im, int bit_count, int data_size) {
350 int got_xres, got_yres, aspect_only;
352 int offset = FILEHEAD_SIZE + INFOHEAD_SIZE;
354 if (im->xsize > SIGNMAX32 || im->ysize > SIGNMAX32) {
355 i_push_error(0, "image too large to write to BMP");
359 got_xres = i_tags_get_float(&im->tags, "i_xres", 0, &xres);
360 got_yres = i_tags_get_float(&im->tags, "i_yres", 0, &yres);
361 if (!i_tags_get_int(&im->tags, "i_aspect_only", 0,&aspect_only))
373 if (xres <= 0 || yres <= 0)
376 /* scale so the smaller value is 72 */
387 /* now to pels/meter */
391 if (im->type == i_palette_type) {
392 colors_used = i_colorcount(im);
393 offset += 4 * colors_used;
396 if (!write_packed(ig, "CCVvvVVVVvvVVVVVV", 'B', 'M',
397 (i_upacked_t)(data_size+offset),
398 (i_upacked_t)0, (i_upacked_t)0, (i_upacked_t)offset,
399 (i_upacked_t)INFOHEAD_SIZE, (i_upacked_t)im->xsize,
400 (i_upacked_t)im->ysize, (i_upacked_t)1,
401 (i_upacked_t)bit_count, (i_upacked_t)BI_RGB,
402 (i_upacked_t)data_size,
403 (i_upacked_t)(xres+0.5), (i_upacked_t)(yres+0.5),
404 (i_upacked_t)colors_used, (i_upacked_t)colors_used)){
405 i_push_error(0, "cannot write bmp header");
408 if (im->type == i_palette_type) {
412 for (i = 0; i < colors_used; ++i) {
413 i_getcolors(im, i, &c, 1);
414 if (im->channels >= 3) {
415 if (!write_packed(ig, "CCCC", (i_upacked_t)(c.channel[2]),
416 (i_upacked_t)(c.channel[1]),
417 (i_upacked_t)(c.channel[0]), (i_upacked_t)0)) {
418 i_push_error(0, "cannot write palette entry");
423 i_upacked_t v = c.channel[0];
424 if (!write_packed(ig, "CCCC", v, v, v, 0)) {
425 i_push_error(0, "cannot write palette entry");
436 =item write_1bit_data(ig, im)
438 Writes the image data as a 1-bit/pixel image.
440 Returns non-zero on success.
445 write_1bit_data(io_glue *ig, i_img *im) {
447 unsigned char *packed;
451 int line_size = (im->xsize+7) / 8;
455 /* round up to nearest multiple of four */
456 line_size = (line_size + 3) / 4 * 4;
458 if (!write_bmphead(ig, im, 1, line_size * im->ysize))
461 /* this shouldn't be an issue, but let's be careful */
462 unpacked_size = im->xsize + 8;
463 if (unpacked_size < im->xsize) {
464 i_push_error(0, "integer overflow during memory allocation");
467 line = mymalloc(unpacked_size); /* checked 29jun05 tonyc */
468 memset(line + im->xsize, 0, 8);
470 /* size allocated here is always much smaller than xsize, hence
471 can't overflow int */
472 packed = mymalloc(line_size); /* checked 29jun05 tonyc */
473 memset(packed, 0, line_size);
475 for (y = im->ysize-1; y >= 0; --y) {
476 i_gpal(im, 0, im->xsize, y, line);
480 for (x = 0; x < im->xsize; ++x) {
483 if ((mask >>= 1) == 0) {
492 if (i_io_write(ig, packed, line_size) < 0) {
495 i_push_error(0, "writing 1 bit/pixel packed data");
508 =item write_4bit_data(ig, im)
510 Writes the image data as a 4-bit/pixel image.
512 Returns non-zero on success.
517 write_4bit_data(io_glue *ig, i_img *im) {
519 unsigned char *packed;
521 int line_size = (im->xsize+1) / 2;
525 /* round up to nearest multiple of four */
526 line_size = (line_size + 3) / 4 * 4;
528 if (!write_bmphead(ig, im, 4, line_size * im->ysize))
531 /* this shouldn't be an issue, but let's be careful */
532 unpacked_size = im->xsize + 2;
533 if (unpacked_size < im->xsize) {
534 i_push_error(0, "integer overflow during memory allocation");
537 line = mymalloc(unpacked_size); /* checked 29jun05 tonyc */
538 memset(line + im->xsize, 0, 2);
540 /* size allocated here is always much smaller than xsize, hence
541 can't overflow int */
542 packed = mymalloc(line_size); /* checked 29jun05 tonyc */
543 memset(packed, 0, line_size);
545 for (y = im->ysize-1; y >= 0; --y) {
546 i_gpal(im, 0, im->xsize, y, line);
548 for (x = 0; x < im->xsize; x += 2) {
549 *out++ = (line[x] << 4) + line[x+1];
551 if (i_io_write(ig, packed, line_size) < 0) {
554 i_push_error(0, "writing 4 bit/pixel packed data");
567 =item write_8bit_data(ig, im)
569 Writes the image data as a 8-bit/pixel image.
571 Returns non-zero on success.
576 write_8bit_data(io_glue *ig, i_img *im) {
578 int line_size = im->xsize;
582 /* round up to nearest multiple of four */
583 line_size = (line_size + 3) / 4 * 4;
585 if (!write_bmphead(ig, im, 8, line_size * im->ysize))
588 /* this shouldn't be an issue, but let's be careful */
589 unpacked_size = im->xsize + 4;
590 if (unpacked_size < im->xsize) {
591 i_push_error(0, "integer overflow during memory allocation");
594 line = mymalloc(unpacked_size); /* checked 29jun05 tonyc */
595 memset(line + im->xsize, 0, 4);
597 for (y = im->ysize-1; y >= 0; --y) {
598 i_gpal(im, 0, im->xsize, y, line);
599 if (i_io_write(ig, line, line_size) < 0) {
601 i_push_error(0, "writing 8 bit/pixel packed data");
613 =item write_24bit_data(ig, im)
615 Writes the image data as a 24-bit/pixel image.
617 Returns non-zero on success.
622 write_24bit_data(io_glue *ig, i_img *im) {
623 unsigned char *samples;
625 int line_size = 3 * im->xsize;
628 i_get_file_background(im, &bg);
630 /* just in case we implement a direct format with 2bytes/pixel
632 if (line_size / 3 != im->xsize) {
633 i_push_error(0, "integer overflow during memory allocation");
637 line_size = (line_size + 3) / 4 * 4;
639 if (!write_bmphead(ig, im, 24, line_size * im->ysize))
641 samples = mymalloc(4 * im->xsize);
642 memset(samples, 0, line_size);
643 for (y = im->ysize-1; y >= 0; --y) {
644 unsigned char *samplep = samples;
646 i_gsamp_bg(im, 0, im->xsize, y, samples, 3, &bg);
647 for (x = 0; x < im->xsize; ++x) {
648 unsigned char tmp = samplep[2];
649 samplep[2] = samplep[0];
653 if (i_io_write(ig, samples, line_size) < 0) {
654 i_push_error(0, "writing image data");
667 =item read_bmp_pal(ig, im, count)
669 Reads count palette entries from the file and add them to the image.
671 Returns non-zero on success.
676 read_bmp_pal(io_glue *ig, i_img *im, int count) {
678 i_packed_t r, g, b, x;
681 for (i = 0; i < count; ++i) {
682 if (!read_packed(ig, "CCCC", &b, &g, &r, &x)) {
683 i_push_error(0, "reading BMP palette");
689 if (i_addcolors(im, &c, 1) < 0) {
690 i_push_error(0, "out of space in image palette");
699 =item read_1bit_bmp(ig, xsize, ysize, clr_used, compression, offbits)
701 Reads in the palette and image data for a 1-bit/pixel image.
703 Returns the image or NULL.
708 read_1bit_bmp(io_glue *ig, int xsize, int ysize, int clr_used,
709 int compression, long offbits, int allow_incomplete) {
711 int x, y, lasty, yinc, start_y;
713 unsigned char *packed;
714 int line_size = (xsize + 7)/8;
719 if (compression != BI_RGB) {
720 i_push_errorf(0, "unknown 1-bit BMP compression (%d)", compression);
724 if (xsize + 8 < xsize) { /* if there was overflow */
725 /* we check with 8 because we allocate that much for the decoded
727 i_push_error(0, "integer overflow during memory allocation");
731 /* if xsize+7 is ok then (xsize+7)/8 will be and the minor
732 adjustments below won't make it overflow */
733 line_size = (line_size+3) / 4 * 4;
741 /* when ysize is -ve it's a top-down image */
750 if (clr_used < 0 || clr_used > 2) {
751 i_push_errorf(0, "out of range colors used (%d)", clr_used);
755 base_offset = FILEHEAD_SIZE + INFOHEAD_SIZE + clr_used * 4;
756 if (offbits < base_offset) {
757 i_push_errorf(0, "image data offset too small (%ld)", offbits);
761 im = i_img_pal_new(xsize, ysize, 3, 256);
764 if (!read_bmp_pal(ig, im, clr_used)) {
769 if (offbits > base_offset) {
770 /* this will be slow if the offset is large, but that should be
773 while (base_offset < offbits) {
774 if (i_io_read(ig, &buffer, 1) != 1) {
776 i_push_error(0, "failed skipping to image data offset");
783 i_tags_add(&im->tags, "bmp_compression_name", 0, "BI_RGB", -1, 0);
785 packed = mymalloc(line_size); /* checked 29jun05 tonyc */
786 line = mymalloc(xsize+8); /* checked 29jun05 tonyc */
788 if (i_io_read(ig, packed, line_size) != line_size) {
791 if (allow_incomplete) {
792 i_tags_setn(&im->tags, "i_incomplete", 1);
793 i_tags_setn(&im->tags, "i_lines_read", abs(start_y - y));
797 i_push_error(0, "failed reading 1-bit bmp data");
805 for (x = 0; x < xsize; ++x) {
806 *p++ = (*in & bit) ? 1 : 0;
813 i_ppal(im, 0, xsize, y, line);
823 =item read_4bit_bmp(ig, xsize, ysize, clr_used, compression)
825 Reads in the palette and image data for a 4-bit/pixel image.
827 Returns the image or NULL.
829 Hopefully this will be combined with the following function at some
835 read_4bit_bmp(io_glue *ig, int xsize, int ysize, int clr_used,
836 int compression, long offbits, int allow_incomplete) {
838 int x, y, lasty, yinc;
840 unsigned char *packed;
841 int line_size = (xsize + 1)/2;
847 /* line_size is going to be smaller than xsize in most cases (and
848 when it's not, xsize is itself small), and hence not overflow */
849 line_size = (line_size+3) / 4 * 4;
857 /* when ysize is -ve it's a top-down image */
867 if (clr_used > 16 || clr_used < 0) {
868 i_push_errorf(0, "out of range colors used (%d)", clr_used);
872 base_offset = FILEHEAD_SIZE + INFOHEAD_SIZE + clr_used * 4;
873 if (offbits < base_offset) {
874 i_push_errorf(0, "image data offset too small (%ld)", offbits);
878 im = i_img_pal_new(xsize, ysize, 3, 256);
879 if (!im) /* error should have been pushed already */
881 if (!read_bmp_pal(ig, im, clr_used)) {
886 if (offbits > base_offset) {
887 /* this will be slow if the offset is large, but that should be
890 while (base_offset < offbits) {
891 if (i_io_read(ig, &buffer, 1) != 1) {
893 i_push_error(0, "failed skipping to image data offset");
901 packed = mymalloc(260); /* checked 29jun05 tonyc */
903 packed = mymalloc(line_size); /* checked 29jun05 tonyc */
904 /* xsize won't approach MAXINT */
905 line = mymalloc(xsize+1); /* checked 29jun05 tonyc */
906 if (compression == BI_RGB) {
907 i_tags_add(&im->tags, "bmp_compression_name", 0, "BI_RGB", -1, 0);
909 if (i_io_read(ig, packed, line_size) != line_size) {
912 if (allow_incomplete) {
913 i_tags_setn(&im->tags, "i_incomplete", 1);
914 i_tags_setn(&im->tags, "i_lines_read", abs(y - starty));
918 i_push_error(0, "failed reading 4-bit bmp data");
925 for (x = 0; x < xsize; x+=2) {
930 i_ppal(im, 0, xsize, y, line);
936 else if (compression == BI_RLE4) {
940 i_tags_add(&im->tags, "bmp_compression_name", 0, "BI_RLE4", -1, 0);
943 /* there's always at least 2 bytes in a sequence */
944 if (i_io_read(ig, packed, 2) != 2) {
947 if (allow_incomplete) {
948 i_tags_setn(&im->tags, "i_incomplete", 1);
949 i_tags_setn(&im->tags, "i_lines_read", abs(y - starty));
953 i_push_error(0, "missing data during decompression");
958 else if (packed[0]) {
959 if (x + packed[0] > xsize) {
960 /* this file is corrupt */
963 i_push_error(0, "invalid data during decompression");
967 line[0] = packed[1] >> 4;
968 line[1] = packed[1] & 0x0F;
969 for (i = 0; i < packed[0]; i += 2) {
971 i_ppal(im, x, x+2, y, line);
973 i_ppal(im, x, x+(packed[0]-i), y, line);
978 case BMPRLE_ENDOFLINE:
983 case BMPRLE_ENDOFBMP:
989 if (i_io_read(ig, packed, 2) != 2) {
992 if (allow_incomplete) {
993 i_tags_setn(&im->tags, "i_incomplete", 1);
994 i_tags_setn(&im->tags, "i_lines_read", abs(y - starty));
998 i_push_error(0, "missing data during decompression");
1004 y += yinc * packed[1];
1009 if (x + count > xsize) {
1010 /* this file is corrupt */
1013 i_push_error(0, "invalid data during decompression");
1017 size = (count + 1) / 2;
1018 read_size = (size+1) / 2 * 2;
1019 if (i_io_read(ig, packed, read_size) != read_size) {
1022 if (allow_incomplete) {
1023 i_tags_setn(&im->tags, "i_incomplete", 1);
1024 i_tags_setn(&im->tags, "i_lines_read", abs(y - starty));
1028 i_push_error(0, "missing data during decompression");
1033 for (i = 0; i < size; ++i) {
1034 line[0] = packed[i] >> 4;
1035 line[1] = packed[i] & 0xF;
1036 i_ppal(im, x, x+2, y, line);
1044 else { /*if (compression == BI_RLE4) {*/
1047 i_push_errorf(0, "unknown 4-bit BMP compression (%d)", compression);
1056 =item read_8bit_bmp(ig, xsize, ysize, clr_used, compression, allow_incomplete)
1058 Reads in the palette and image data for a 8-bit/pixel image.
1060 Returns the image or NULL.
1065 read_8bit_bmp(io_glue *ig, int xsize, int ysize, int clr_used,
1066 int compression, long offbits, int allow_incomplete) {
1068 int x, y, lasty, yinc, start_y;
1070 int line_size = xsize;
1073 line_size = (line_size+3) / 4 * 4;
1074 if (line_size < xsize) { /* if it overflowed (unlikely, but check) */
1075 i_push_error(0, "integer overflow during memory allocation");
1085 /* when ysize is -ve it's a top-down image */
1094 if (clr_used > 256 || clr_used < 0) {
1095 i_push_errorf(0, "out of range colors used (%d)", clr_used);
1099 base_offset = FILEHEAD_SIZE + INFOHEAD_SIZE + clr_used * 4;
1100 if (offbits < base_offset) {
1101 i_push_errorf(0, "image data offset too small (%ld)", offbits);
1105 im = i_img_pal_new(xsize, ysize, 3, 256);
1108 if (!read_bmp_pal(ig, im, clr_used)) {
1113 if (offbits > base_offset) {
1114 /* this will be slow if the offset is large, but that should be
1117 while (base_offset < offbits) {
1118 if (i_io_read(ig, &buffer, 1) != 1) {
1120 i_push_error(0, "failed skipping to image data offset");
1127 line = mymalloc(line_size); /* checked 29jun05 tonyc */
1128 if (compression == BI_RGB) {
1129 i_tags_add(&im->tags, "bmp_compression_name", 0, "BI_RGB", -1, 0);
1130 while (y != lasty) {
1131 if (i_io_read(ig, line, line_size) != line_size) {
1133 if (allow_incomplete) {
1134 i_tags_setn(&im->tags, "i_incomplete", 1);
1135 i_tags_setn(&im->tags, "i_lines_read", abs(start_y - y));
1139 i_push_error(0, "failed reading 8-bit bmp data");
1144 i_ppal(im, 0, xsize, y, line);
1149 else if (compression == BI_RLE8) {
1152 unsigned char packed[2];
1154 i_tags_add(&im->tags, "bmp_compression_name", 0, "BI_RLE8", -1, 0);
1157 /* there's always at least 2 bytes in a sequence */
1158 if (i_io_read(ig, packed, 2) != 2) {
1160 if (allow_incomplete) {
1161 i_tags_setn(&im->tags, "i_incomplete", 1);
1162 i_tags_setn(&im->tags, "i_lines_read", abs(start_y-y));
1166 i_push_error(0, "missing data during decompression");
1172 if (x + packed[0] > xsize) {
1173 /* this file isn't incomplete, it's corrupt */
1175 i_push_error(0, "invalid data during decompression");
1179 memset(line, packed[1], packed[0]);
1180 i_ppal(im, x, x+packed[0], y, line);
1183 switch (packed[1]) {
1184 case BMPRLE_ENDOFLINE:
1189 case BMPRLE_ENDOFBMP:
1194 if (i_io_read(ig, packed, 2) != 2) {
1196 if (allow_incomplete) {
1197 i_tags_setn(&im->tags, "i_incomplete", 1);
1198 i_tags_setn(&im->tags, "i_lines_read", abs(start_y-y));
1202 i_push_error(0, "missing data during decompression");
1208 y += yinc * packed[1];
1213 if (x + count > xsize) {
1214 /* runs shouldn't cross a line boundary */
1215 /* this file isn't incomplete, it's corrupt */
1217 i_push_error(0, "invalid data during decompression");
1221 read_size = (count+1) / 2 * 2;
1222 if (i_io_read(ig, line, read_size) != read_size) {
1224 if (allow_incomplete) {
1225 i_tags_setn(&im->tags, "i_incomplete", 1);
1226 i_tags_setn(&im->tags, "i_lines_read", abs(start_y-y));
1230 i_push_error(0, "missing data during decompression");
1235 i_ppal(im, x, x+count, y, line);
1244 i_push_errorf(0, "unknown 8-bit BMP compression (%d)", compression);
1256 static struct bm_masks std_masks[] =
1259 { 0770000, 00007700, 00000077, },
1263 { 0xFF0000, 0x00FF00, 0x0000FF, },
1267 { 0xFF0000, 0x00FF00, 0x0000FF, },
1273 =item read_direct_bmp(ig, xsize, ysize, bit_count, clr_used, compression, allow_incomplete)
1275 Skips the palette and reads in the image data for a direct colour image.
1277 Returns the image or NULL.
1282 read_direct_bmp(io_glue *ig, int xsize, int ysize, int bit_count,
1283 int clr_used, int compression, long offbits,
1284 int allow_incomplete) {
1286 int x, y, starty, lasty, yinc;
1288 int pix_size = bit_count / 8;
1289 int line_size = xsize * pix_size;
1290 struct bm_masks masks;
1291 char unpack_code[2] = "";
1295 const char *compression_name;
1297 long base_offset = FILEHEAD_SIZE + INFOHEAD_SIZE;
1299 unpack_code[0] = *("v3V"+pix_size-2);
1300 unpack_code[1] = '\0';
1302 line_size = (line_size+3) / 4 * 4;
1303 extras = line_size - xsize * pix_size;
1311 /* when ysize is -ve it's a top-down image */
1318 if (compression == BI_RGB) {
1319 compression_name = "BI_RGB";
1320 masks = std_masks[pix_size-2];
1322 /* there's a potential "palette" after the header */
1323 for (i = 0; i < clr_used; ++clr_used) {
1325 if (i_io_read(ig, buf, 4) != 4) {
1326 i_push_error(0, "skipping colors");
1332 else if (compression == BI_BITFIELDS) {
1334 compression_name = "BI_BITFIELDS";
1336 for (i = 0; i < 3; ++i) {
1338 if (!read_packed(ig, "V", &rmask)) {
1339 i_push_error(0, "reading pixel masks");
1342 masks.masks[i] = rmask;
1343 /* work out a shift for the mask */
1345 bit = masks.masks[i] & -masks.masks[i];
1350 masks.shifts[i] = pos - 8;
1352 base_offset += 4 * 4;
1355 i_push_errorf(0, "unknown 24-bit BMP compression (%d)", compression);
1359 if (offbits < base_offset) {
1360 i_push_errorf(0, "image data offset too small (%ld)", offbits);
1364 if (offbits > base_offset) {
1365 /* this will be slow if the offset is large, but that should be
1368 while (base_offset < offbits) {
1369 if (i_io_read(ig, &buffer, 1) != 1) {
1370 i_push_error(0, "failed skipping to image data offset");
1377 im = i_img_empty(NULL, xsize, ysize);
1381 i_tags_add(&im->tags, "bmp_compression_name", 0, compression_name, -1, 0);
1383 /* I wasn't able to make this overflow in testing, but better to be
1385 bytes = sizeof(i_color) * xsize;
1386 if (bytes / sizeof(i_color) != xsize) {
1388 i_push_error(0, "integer overflow calculating buffer size");
1391 line = mymalloc(bytes); /* checked 29jun05 tonyc */
1392 while (y != lasty) {
1394 for (x = 0; x < xsize; ++x) {
1396 if (!read_packed(ig, unpack_code, &pixel)) {
1398 if (allow_incomplete) {
1399 i_tags_setn(&im->tags, "i_incomplete", 1);
1400 i_tags_setn(&im->tags, "i_lines_read", abs(starty - y));
1404 i_push_error(0, "failed reading image data");
1409 for (i = 0; i < 3; ++i) {
1410 if (masks.shifts[i] > 0)
1411 p->channel[i] = (pixel & masks.masks[i]) >> masks.shifts[i];
1413 p->channel[i] = (pixel & masks.masks[i]) << -masks.shifts[i];
1417 i_plin(im, 0, xsize, y, line);
1419 i_io_read(ig, junk, extras);
1434 Tony Cook <tony@develop-help.com>
1438 Cannot save as compressed BMP.
1442 Doesn't handle OS/2 bitmaps.
1444 16-bit/pixel images haven't been tested. (I need an image).
1446 BI_BITFIELDS compression hasn't been tested (I need an image).
1448 The header handling for paletted images needs to be refactored