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 static int read_packed(io_glue *ig, char *format, ...);
39 static int write_packed(io_glue *ig, char *format, ...);
40 static int write_bmphead(io_glue *ig, i_img *im, int bit_count,
42 static int write_1bit_data(io_glue *ig, i_img *im);
43 static int write_4bit_data(io_glue *ig, i_img *im);
44 static int write_8bit_data(io_glue *ig, i_img *im);
45 static int write_24bit_data(io_glue *ig, i_img *im);
46 static int read_bmp_pal(io_glue *ig, i_img *im, int count);
47 static i_img *read_1bit_bmp(io_glue *ig, int xsize, int ysize, int clr_used,
48 int compression, long offbits);
49 static i_img *read_4bit_bmp(io_glue *ig, int xsize, int ysize, int clr_used,
50 int compression, long offbits);
51 static i_img *read_8bit_bmp(io_glue *ig, int xsize, int ysize, int clr_used,
52 int compression, long offbits);
53 static i_img *read_direct_bmp(io_glue *ig, int xsize, int ysize,
54 int bit_count, int clr_used, int compression,
58 =item i_writebmp_wiol(im, io_glue)
60 Writes the image as a BMP file. Uses 1-bit, 4-bit, 8-bit or 24-bit
61 formats depending on the image.
63 Never compresses the image.
68 i_writebmp_wiol(i_img *im, io_glue *ig) {
69 io_glue_commit_types(ig);
73 if (im->type == i_direct_type) {
74 return write_24bit_data(ig, im);
79 /* must be paletted */
80 pal_size = i_colorcount(im);
82 return write_1bit_data(ig, im);
84 else if (pal_size <= 16) {
85 return write_4bit_data(ig, im);
88 return write_8bit_data(ig, im);
94 =item i_readbmp_wiol(ig)
96 Reads a Windows format bitmap from the given file.
98 Handles BI_RLE4 and BI_RLE8 compressed images. Attempts to handle
99 BI_BITFIELDS images too, but I need a test image.
105 i_readbmp_wiol(io_glue *ig) {
106 int b_magic, m_magic, filesize, res1, res2, infohead_size;
107 int xsize, ysize, planes, bit_count, compression, size_image, xres, yres;
108 int clr_used, clr_important, offbits;
111 mm_log((1, "i_readbmp_wiol(ig %p)\n", ig));
113 io_glue_commit_types(ig);
116 if (!read_packed(ig, "CCVvvVVVVvvVVVVVV", &b_magic, &m_magic, &filesize,
117 &res1, &res2, &offbits, &infohead_size,
118 &xsize, &ysize, &planes,
119 &bit_count, &compression, &size_image, &xres, &yres,
120 &clr_used, &clr_important)) {
121 i_push_error(0, "file too short");
124 if (b_magic != 'B' || m_magic != 'M' || infohead_size != INFOHEAD_SIZE
126 i_push_error(0, "not a BMP file");
130 mm_log((1, " bmp header: filesize %d offbits %d xsize %d ysize %d planes %d "
131 "bit_count %d compression %d size %d xres %d yres %d clr_used %d "
132 "clr_important %d\n", filesize, offbits, xsize, ysize, planes,
133 bit_count, compression, size_image, xres, yres, clr_used,
136 if (!i_int_check_image_file_limits(xsize, ysize, 3, sizeof(i_sample_t))) {
137 mm_log((1, "i_readbmp_wiol: image size exceeds limits\n"));
143 im = read_1bit_bmp(ig, xsize, ysize, clr_used, compression, offbits);
147 im = read_4bit_bmp(ig, xsize, ysize, clr_used, compression, offbits);
151 im = read_8bit_bmp(ig, xsize, ysize, clr_used, compression, offbits);
157 im = read_direct_bmp(ig, xsize, ysize, bit_count, clr_used, compression,
162 i_push_errorf(0, "unknown bit count for BMP file (%d)", bit_count);
167 /* store the resolution */
170 else if (yres && !xres)
173 i_tags_set_float2(&im->tags, "i_xres", 0, xres * 0.0254, 4);
174 i_tags_set_float2(&im->tags, "i_yres", 0, yres * 0.0254, 4);
176 i_tags_addn(&im->tags, "bmp_compression", 0, compression);
177 i_tags_addn(&im->tags, "bmp_important_colors", 0, clr_important);
178 i_tags_addn(&im->tags, "bmp_used_colors", 0, clr_used);
179 i_tags_addn(&im->tags, "bmp_filesize", 0, filesize);
180 i_tags_addn(&im->tags, "bmp_bit_count", 0, bit_count);
181 i_tags_add(&im->tags, "i_format", 0, "bmp", 3, 0);
190 =head1 IMPLEMENTATION FUNCTIONS
192 Internal functions used in the implementation.
196 =item read_packed(ig, format, ...)
198 Reads from the specified "file" the specified sizes. The format codes
199 match those used by perl's pack() function, though only a few are
200 implemented. In all cases the vararg arguement is an int *.
202 Returns non-zero if all of the arguments were read.
207 int read_packed(io_glue *ig, char *format, ...) {
208 unsigned char buf[4];
212 va_start(ap, format);
215 p = va_arg(ap, int *);
219 if (ig->readcb(ig, buf, 2) != 2)
221 *p = buf[0] + (buf[1] << 8);
225 if (ig->readcb(ig, buf, 4) != 4)
227 *p = buf[0] + (buf[1] << 8) + (buf[2] << 16) + (buf[3] << 24);
231 if (ig->readcb(ig, buf, 1) != 1)
237 if (ig->readcb(ig, buf, 1) != 1)
242 case '3': /* extension - 24-bit number */
243 if (ig->readcb(ig, buf, 3) != 3)
245 *p = buf[0] + (buf[1] << 8) + (buf[2] << 16);
249 m_fatal(1, "Unknown read_packed format code 0x%02x", *format);
257 =item write_packed(ig, format, ...)
259 Writes packed data to the specified io_glue.
261 Returns non-zero on success.
267 write_packed(io_glue *ig, char *format, ...) {
268 unsigned char buf[4];
272 va_start(ap, format);
275 i = va_arg(ap, unsigned int);
281 if (ig->writecb(ig, buf, 2) == -1)
287 buf[1] = (i >> 8) & 0xFF;
288 buf[2] = (i >> 16) & 0xFF;
289 buf[3] = (i >> 24) & 0xFF;
290 if (ig->writecb(ig, buf, 4) == -1)
297 if (ig->writecb(ig, buf, 1) == -1)
302 m_fatal(1, "Unknown write_packed format code 0x%02x", *format);
312 =item write_bmphead(ig, im, bit_count, data_size)
314 Writes a Windows BMP header to the file.
316 Returns non-zero on success.
322 int write_bmphead(io_glue *ig, i_img *im, int bit_count, int data_size) {
324 int got_xres, got_yres, aspect_only;
326 int offset = FILEHEAD_SIZE + INFOHEAD_SIZE;
328 got_xres = i_tags_get_float(&im->tags, "i_xres", 0, &xres);
329 got_yres = i_tags_get_float(&im->tags, "i_yres", 0, &yres);
330 if (!i_tags_get_int(&im->tags, "i_aspect_only", 0,&aspect_only))
342 if (xres <= 0 || yres <= 0)
345 /* scale so the smaller value is 72 */
356 /* now to pels/meter */
360 if (im->type == i_palette_type) {
361 colors_used = i_colorcount(im);
362 offset += 4 * colors_used;
365 if (!write_packed(ig, "CCVvvVVVVvvVVVVVV", 'B', 'M', data_size+offset,
366 0, 0, offset, INFOHEAD_SIZE, im->xsize, im->ysize, 1,
367 bit_count, BI_RGB, 0, (int)(xres+0.5), (int)(yres+0.5),
368 colors_used, colors_used)){
369 i_push_error(0, "cannot write bmp header");
372 if (im->type == i_palette_type) {
376 for (i = 0; i < colors_used; ++i) {
377 i_getcolors(im, i, &c, 1);
378 if (im->channels >= 3) {
379 if (!write_packed(ig, "CCCC", c.channel[2], c.channel[1],
381 i_push_error(0, "cannot write palette entry");
386 if (!write_packed(ig, "CCCC", c.channel[0], c.channel[0],
388 i_push_error(0, "cannot write palette entry");
399 =item write_1bit_data(ig, im)
401 Writes the image data as a 1-bit/pixel image.
403 Returns non-zero on success.
408 write_1bit_data(io_glue *ig, i_img *im) {
410 unsigned char *packed;
414 int line_size = (im->xsize+7) / 8;
418 /* round up to nearest multiple of four */
419 line_size = (line_size + 3) / 4 * 4;
421 if (!write_bmphead(ig, im, 1, line_size * im->ysize))
424 /* this shouldn't be an issue, but let's be careful */
425 unpacked_size = im->xsize + 8;
426 if (unpacked_size < im->xsize) {
427 i_push_error(0, "integer overflow during memory allocation");
430 line = mymalloc(unpacked_size); /* checked 29jun05 tonyc */
431 memset(line + im->xsize, 0, 8);
433 /* size allocated here is always much smaller than xsize, hence
434 can't overflow int */
435 packed = mymalloc(line_size); /* checked 29jun05 tonyc */
436 memset(packed, 0, line_size);
438 for (y = im->ysize-1; y >= 0; --y) {
439 i_gpal(im, 0, im->xsize, y, line);
443 for (x = 0; x < im->xsize; ++x) {
446 if ((mask >>= 1) == 0) {
455 if (ig->writecb(ig, packed, line_size) < 0) {
458 i_push_error(0, "writing 1 bit/pixel packed data");
471 =item write_4bit_data(ig, im)
473 Writes the image data as a 4-bit/pixel image.
475 Returns non-zero on success.
480 write_4bit_data(io_glue *ig, i_img *im) {
482 unsigned char *packed;
484 int line_size = (im->xsize+1) / 2;
488 /* round up to nearest multiple of four */
489 line_size = (line_size + 3) / 4 * 4;
491 if (!write_bmphead(ig, im, 4, line_size * im->ysize))
494 /* this shouldn't be an issue, but let's be careful */
495 unpacked_size = im->xsize + 2;
496 if (unpacked_size < im->xsize) {
497 i_push_error(0, "integer overflow during memory allocation");
500 line = mymalloc(unpacked_size); /* checked 29jun05 tonyc */
501 memset(line + im->xsize, 0, 2);
503 /* size allocated here is always much smaller than xsize, hence
504 can't overflow int */
505 packed = mymalloc(line_size); /* checked 29jun05 tonyc */
506 memset(packed, 0, line_size);
508 for (y = im->ysize-1; y >= 0; --y) {
509 i_gpal(im, 0, im->xsize, y, line);
511 for (x = 0; x < im->xsize; x += 2) {
512 *out++ = (line[x] << 4) + line[x+1];
514 if (ig->writecb(ig, packed, line_size) < 0) {
517 i_push_error(0, "writing 4 bit/pixel packed data");
530 =item write_8bit_data(ig, im)
532 Writes the image data as a 8-bit/pixel image.
534 Returns non-zero on success.
539 write_8bit_data(io_glue *ig, i_img *im) {
541 int line_size = im->xsize;
545 /* round up to nearest multiple of four */
546 line_size = (line_size + 3) / 4 * 4;
548 if (!write_bmphead(ig, im, 8, line_size * im->ysize))
551 /* this shouldn't be an issue, but let's be careful */
552 unpacked_size = im->xsize + 4;
553 if (unpacked_size < im->xsize) {
554 i_push_error(0, "integer overflow during memory allocation");
557 line = mymalloc(unpacked_size); /* checked 29jun05 tonyc */
558 memset(line + im->xsize, 0, 4);
560 for (y = im->ysize-1; y >= 0; --y) {
561 i_gpal(im, 0, im->xsize, y, line);
562 if (ig->writecb(ig, line, line_size) < 0) {
564 i_push_error(0, "writing 8 bit/pixel packed data");
575 static int bgr_chans[] = { 2, 1, 0, };
576 static int grey_chans[] = { 0, 0, 0, };
579 =item write_24bit_data(ig, im)
581 Writes the image data as a 24-bit/pixel image.
583 Returns non-zero on success.
588 write_24bit_data(io_glue *ig, i_img *im) {
590 unsigned char *samples;
592 int line_size = 3 * im->xsize;
594 /* just in case we implement a direct format with 2bytes/pixel
596 if (line_size / 3 != im->xsize) {
597 i_push_error(0, "integer overflow during memory allocation");
601 line_size = (line_size + 3) / 4 * 4;
603 if (!write_bmphead(ig, im, 24, line_size * im->ysize))
605 chans = im->channels >= 3 ? bgr_chans : grey_chans;
606 samples = mymalloc(line_size); /* checked 29jun05 tonyc */
607 memset(samples, 0, line_size);
608 for (y = im->ysize-1; y >= 0; --y) {
609 i_gsamp(im, 0, im->xsize, y, samples, chans, 3);
610 if (ig->writecb(ig, samples, line_size) < 0) {
611 i_push_error(0, "writing image data");
624 =item read_bmp_pal(ig, im, count)
626 Reads count palette entries from the file and add them to the image.
628 Returns non-zero on success.
633 read_bmp_pal(io_glue *ig, i_img *im, int count) {
638 for (i = 0; i < count; ++i) {
639 if (!read_packed(ig, "CCCC", &b, &g, &r, &x)) {
640 i_push_error(0, "reading BMP palette");
646 if (i_addcolors(im, &c, 1) < 0) {
647 i_push_error(0, "out of space in image palette");
656 =item read_1bit_bmp(ig, xsize, ysize, clr_used, compression, offbits)
658 Reads in the palette and image data for a 1-bit/pixel image.
660 Returns the image or NULL.
665 read_1bit_bmp(io_glue *ig, int xsize, int ysize, int clr_used,
666 int compression, long offbits) {
668 int x, y, lasty, yinc;
670 unsigned char *packed;
671 int line_size = (xsize + 7)/8;
676 if (compression != BI_RGB) {
677 i_push_errorf(0, "unknown 1-bit BMP compression (%d)", compression);
681 if (xsize + 8 < xsize) { /* if there was overflow */
682 /* we check with 8 because we allocate that much for the decoded
684 i_push_error(0, "integer overflow during memory allocation");
688 /* if xsize+7 is ok then (xsize+7)/8 will be and the minor
689 adjustments below won't make it overflow */
690 line_size = (line_size+3) / 4 * 4;
698 /* when ysize is -ve it's a top-down image */
706 if (clr_used < 0 || clr_used > 2) {
707 i_push_errorf(0, "out of range colors used (%d)", clr_used);
711 base_offset = FILEHEAD_SIZE + INFOHEAD_SIZE + clr_used * 4;
712 if (offbits < base_offset) {
713 i_push_errorf(0, "image data offset too small (%ld)", offbits);
717 im = i_img_pal_new(xsize, ysize, 3, 256);
720 if (!read_bmp_pal(ig, im, clr_used)) {
725 if (offbits > base_offset) {
726 /* this will be slow if the offset is large, but that should be
729 while (base_offset < offbits) {
730 if (ig->readcb(ig, &buffer, 1) != 1) {
732 i_push_error(0, "failed skipping to image data offset");
739 i_tags_add(&im->tags, "bmp_compression_name", 0, "BI_RGB", -1, 0);
741 packed = mymalloc(line_size); /* checked 29jun05 tonyc */
742 line = mymalloc(xsize+8); /* checked 29jun05 tonyc */
744 if (ig->readcb(ig, packed, line_size) != line_size) {
747 i_push_error(0, "failed reading 1-bit bmp data");
754 for (x = 0; x < xsize; ++x) {
755 *p++ = (*in & bit) ? 1 : 0;
762 i_ppal(im, 0, xsize, y, line);
772 =item read_4bit_bmp(ig, xsize, ysize, clr_used, compression)
774 Reads in the palette and image data for a 4-bit/pixel image.
776 Returns the image or NULL.
778 Hopefully this will be combined with the following function at some
784 read_4bit_bmp(io_glue *ig, int xsize, int ysize, int clr_used,
785 int compression, long offbits) {
787 int x, y, lasty, yinc;
789 unsigned char *packed;
790 int line_size = (xsize + 1)/2;
795 /* line_size is going to be smaller than xsize in most cases (and
796 when it's not, xsize is itself small), and hence not overflow */
797 line_size = (line_size+3) / 4 * 4;
805 /* when ysize is -ve it's a top-down image */
814 if (clr_used > 16 || clr_used < 0) {
815 i_push_errorf(0, "out of range colors used (%d)", clr_used);
819 base_offset = FILEHEAD_SIZE + INFOHEAD_SIZE + clr_used * 4;
820 if (offbits < base_offset) {
821 i_push_errorf(0, "image data offset too small (%ld)", offbits);
825 im = i_img_pal_new(xsize, ysize, 3, 256);
826 if (!im) /* error should have been pushed already */
828 if (!read_bmp_pal(ig, im, clr_used)) {
833 if (offbits > base_offset) {
834 /* this will be slow if the offset is large, but that should be
837 while (base_offset < offbits) {
838 if (ig->readcb(ig, &buffer, 1) != 1) {
840 i_push_error(0, "failed skipping to image data offset");
848 packed = mymalloc(260); /* checked 29jun05 tonyc */
850 packed = mymalloc(line_size); /* checked 29jun05 tonyc */
851 /* xsize won't approach MAXINT */
852 line = mymalloc(xsize+1); /* checked 29jun05 tonyc */
853 if (compression == BI_RGB) {
854 i_tags_add(&im->tags, "bmp_compression_name", 0, "BI_RGB", -1, 0);
856 if (ig->readcb(ig, packed, line_size) != line_size) {
859 i_push_error(0, "failed reading 4-bit bmp data");
865 for (x = 0; x < xsize; x+=2) {
870 i_ppal(im, 0, xsize, y, line);
876 else if (compression == BI_RLE4) {
880 i_tags_add(&im->tags, "bmp_compression_name", 0, "BI_RLE4", -1, 0);
883 /* there's always at least 2 bytes in a sequence */
884 if (ig->readcb(ig, packed, 2) != 2) {
887 i_push_error(0, "missing data during decompression");
891 else if (packed[0]) {
892 line[0] = packed[1] >> 4;
893 line[1] = packed[1] & 0x0F;
894 for (i = 0; i < packed[0]; i += 2) {
896 i_ppal(im, x, x+2, y, line);
898 i_ppal(im, x, x+(packed[0]-i), y, line);
903 case BMPRLE_ENDOFLINE:
908 case BMPRLE_ENDOFBMP:
914 if (ig->readcb(ig, packed, 2) != 2) {
917 i_push_error(0, "missing data during decompression");
922 y += yinc * packed[1];
927 size = (count + 1) / 2;
928 read_size = (size+1) / 2 * 2;
929 if (ig->readcb(ig, packed, read_size) != read_size) {
932 i_push_error(0, "missing data during decompression");
933 /*i_img_destroy(im);*/
936 for (i = 0; i < size; ++i) {
937 line[0] = packed[i] >> 4;
938 line[1] = packed[i] & 0xF;
939 i_ppal(im, x, x+2, y, line);
947 else { /*if (compression == BI_RLE4) {*/
950 i_push_errorf(0, "unknown 4-bit BMP compression (%d)", compression);
959 =item read_8bit_bmp(ig, xsize, ysize, clr_used, compression)
961 Reads in the palette and image data for a 8-bit/pixel image.
963 Returns the image or NULL.
968 read_8bit_bmp(io_glue *ig, int xsize, int ysize, int clr_used,
969 int compression, long offbits) {
971 int x, y, lasty, yinc;
973 int line_size = xsize;
976 line_size = (line_size+3) / 4 * 4;
977 if (line_size < xsize) { /* if it overflowed (unlikely, but check) */
978 i_push_error(0, "integer overflow during memory allocation");
988 /* when ysize is -ve it's a top-down image */
996 if (clr_used > 256 || clr_used < 0) {
997 i_push_errorf(0, "out of range colors used (%d)", clr_used);
1001 base_offset = FILEHEAD_SIZE + INFOHEAD_SIZE + clr_used * 4;
1002 if (offbits < base_offset) {
1003 i_push_errorf(0, "image data offset too small (%ld)", offbits);
1007 im = i_img_pal_new(xsize, ysize, 3, 256);
1010 if (!read_bmp_pal(ig, im, clr_used)) {
1015 if (offbits > base_offset) {
1016 /* this will be slow if the offset is large, but that should be
1019 while (base_offset < offbits) {
1020 if (ig->readcb(ig, &buffer, 1) != 1) {
1022 i_push_error(0, "failed skipping to image data offset");
1029 line = mymalloc(line_size); /* checked 29jun05 tonyc */
1030 if (compression == BI_RGB) {
1031 i_tags_add(&im->tags, "bmp_compression_name", 0, "BI_RGB", -1, 0);
1032 while (y != lasty) {
1033 if (ig->readcb(ig, line, line_size) != line_size) {
1035 i_push_error(0, "failed reading 8-bit bmp data");
1039 i_ppal(im, 0, xsize, y, line);
1044 else if (compression == BI_RLE8) {
1047 unsigned char packed[2];
1049 i_tags_add(&im->tags, "bmp_compression_name", 0, "BI_RLE8", -1, 0);
1052 /* there's always at least 2 bytes in a sequence */
1053 if (ig->readcb(ig, packed, 2) != 2) {
1055 i_push_error(0, "missing data during decompression");
1060 memset(line, packed[1], packed[0]);
1061 i_ppal(im, x, x+packed[0], y, line);
1064 switch (packed[1]) {
1065 case BMPRLE_ENDOFLINE:
1070 case BMPRLE_ENDOFBMP:
1075 if (ig->readcb(ig, packed, 2) != 2) {
1077 i_push_error(0, "missing data during decompression");
1082 y += yinc * packed[1];
1087 read_size = (count+1) / 2 * 2;
1088 if (ig->readcb(ig, line, read_size) != read_size) {
1090 i_push_error(0, "missing data during decompression");
1094 i_ppal(im, x, x+count, y, line);
1103 i_push_errorf(0, "unknown 8-bit BMP compression (%d)", compression);
1115 static struct bm_masks std_masks[] =
1118 { 0770000, 00007700, 00000077, },
1122 { 0xFF0000, 0x00FF00, 0x0000FF, },
1126 { 0xFF0000, 0x00FF00, 0x0000FF, },
1132 =item read_direct_bmp(ig, xsize, ysize, bit_count, clr_used, compression)
1134 Skips the palette and reads in the image data for a direct colour image.
1136 Returns the image or NULL.
1141 read_direct_bmp(io_glue *ig, int xsize, int ysize, int bit_count,
1142 int clr_used, int compression, long offbits) {
1144 int x, y, lasty, yinc;
1146 int pix_size = bit_count / 8;
1147 int line_size = xsize * pix_size;
1148 struct bm_masks masks;
1149 char unpack_code[2] = "";
1153 const char *compression_name;
1155 long base_offset = FILEHEAD_SIZE + INFOHEAD_SIZE;
1157 unpack_code[0] = *("v3V"+pix_size-2);
1158 unpack_code[1] = '\0';
1160 line_size = (line_size+3) / 4 * 4;
1161 extras = line_size - xsize * pix_size;
1169 /* when ysize is -ve it's a top-down image */
1175 if (compression == BI_RGB) {
1176 compression_name = "BI_RGB";
1177 masks = std_masks[pix_size-2];
1179 /* there's a potential "palette" after the header */
1180 for (i = 0; i < clr_used; ++clr_used) {
1182 if (ig->readcb(ig, buf, 4) != 4) {
1183 i_push_error(0, "skipping colors");
1189 else if (compression == BI_BITFIELDS) {
1191 compression_name = "BI_BITFIELDS";
1193 for (i = 0; i < 3; ++i) {
1194 if (!read_packed(ig, "V", masks.masks+i)) {
1195 i_push_error(0, "reading pixel masks");
1198 /* work out a shift for the mask */
1200 bit = masks.masks[i] & -masks.masks[i];
1205 masks.shifts[i] = pos - 8;
1207 base_offset += 4 * 4;
1210 i_push_errorf(0, "unknown 24-bit BMP compression (%d)", compression);
1214 if (offbits > base_offset) {
1215 /* this will be slow if the offset is large, but that should be
1218 while (base_offset < offbits) {
1219 if (ig->readcb(ig, &buffer, 1) != 1) {
1220 i_push_error(0, "failed skipping to image data offset");
1227 im = i_img_empty(NULL, xsize, ysize);
1231 i_tags_add(&im->tags, "bmp_compression_name", 0, compression_name, -1, 0);
1233 /* I wasn't able to make this overflow in testing, but better to be
1235 bytes = sizeof(i_color) * xsize;
1236 if (bytes / sizeof(i_color) != xsize) {
1238 i_push_error(0, "integer overflow calculating buffer size");
1241 line = mymalloc(bytes); /* checked 29jun05 tonyc */
1242 while (y != lasty) {
1244 for (x = 0; x < xsize; ++x) {
1246 if (!read_packed(ig, unpack_code, &pixel)) {
1247 i_push_error(0, "failed reading image data");
1252 for (i = 0; i < 3; ++i) {
1253 if (masks.shifts[i] > 0)
1254 p->channel[i] = (pixel & masks.masks[i]) >> masks.shifts[i];
1256 p->channel[i] = (pixel & masks.masks[i]) << -masks.shifts[i];
1260 i_plin(im, 0, xsize, y, line);
1262 ig->readcb(ig, junk, extras);
1277 Tony Cook <tony@develop-help.com>
1281 Cannot save as compressed BMP.
1285 Doesn't handle OS/2 bitmaps.
1287 16-bit/pixel images haven't been tested. (I need an image).
1289 BI_BITFIELDS compression hasn't been tested (I need an image).
1291 The header handling for paletted images needs to be refactored