1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
|
#include "imsgi.h"
#include <stdlib.h>
#include <errno.h>
#include <string.h>
/* value for imagic */
#define SGI_MAGIC 474
/* values for the storage field */
#define SGI_STORAGE_VERBATIM 0
#define SGI_STORAGE_RLE 1
/* values for the colormap field */
#define SGI_COLORMAP_NORMAL 0
#define SGI_COLORMAP_DITHERED 1
#define SGI_COLORMAP_SCREEN 2
#define SGI_COLORMAP_COLORMAP 3
/* we add that little bit to avoid rounding issues */
#define SampleFTo16(num) ((int)((num) * 65535.0 + 0.01))
/* maximum size of an SGI image */
#define SGI_DIM_LIMIT 0xFFFF
typedef struct {
unsigned short imagic;
unsigned char storagetype;
unsigned char BPC;
unsigned short dimensions;
unsigned short xsize, ysize, zsize;
unsigned int pixmin, pixmax;
char name[80];
unsigned int colormap;
} rgb_header;
static i_img *
read_rgb_8_verbatim(i_img *im, io_glue *ig, rgb_header const *hdr);
static i_img *
read_rgb_8_rle(i_img *im, io_glue *ig, rgb_header const *hdr);
static i_img *
read_rgb_16_verbatim(i_img *im, io_glue *ig, rgb_header const *hdr);
static i_img *
read_rgb_16_rle(i_img *im, io_glue *ig, rgb_header const *hdr);
static int
write_sgi_header(i_img *img, io_glue *ig, int *rle, int *bpc2);
static int
write_sgi_8_rle(i_img *img, io_glue *ig);
static int
write_sgi_8_verb(i_img *img, io_glue *ig);
static int
write_sgi_16_rle(i_img *img, io_glue *ig);
static int
write_sgi_16_verb(i_img *img, io_glue *ig);
#define Sample16ToF(num) ((num) / 65535.0)
#define _STRING(x) #x
#define STRING(x) _STRING(x)
/*
=head1 NAME
rgb.c - implements reading and writing sgi image files, uses io layer.
=head1 SYNOPSIS
io_glue *ig = io_new_fd( fd );
i_img *im = i_readrgb_wiol(ig, 0); // disallow partial reads
// or
io_glue *ig = io_new_fd( fd );
return_code = i_writergb_wiol(im, ig);
=head1 DESCRIPTION
imsgi.c implements the basic functions to read and write portable SGI
files. It uses the iolayer and needs either a seekable source or an
entire memory mapped buffer.
=head1 FUNCTION REFERENCE
Some of these functions are internal.
=over
=cut
*/
/*
=item rgb_header_unpack(header, headbuf)
Unpacks the header structure into from buffer and stores
in the header structure.
header - header structure
headbuf - buffer to unpack from
=cut
*/
static
void
rgb_header_unpack(rgb_header *header, const unsigned char *headbuf) {
header->imagic = (headbuf[0]<<8) + headbuf[1];
header->storagetype = headbuf[2];
header->BPC = headbuf[3];
header->dimensions = (headbuf[4]<<8) + headbuf[5];
header->xsize = (headbuf[6]<<8) + headbuf[7];
header->ysize = (headbuf[8]<<8) + headbuf[9];
header->zsize = (headbuf[10]<<8) + headbuf[11];
header->pixmin = (headbuf[12]<<24) + (headbuf[13]<<16)+(headbuf[14]<<8)+headbuf[15];
header->pixmax = (headbuf[16]<<24) + (headbuf[17]<<16)+(headbuf[18]<<8)+headbuf[19];
memcpy(header->name,headbuf+24,80);
header->name[79] = '\0';
header->colormap = (headbuf[104]<<24) + (headbuf[105]<<16)+(headbuf[106]<<8)+headbuf[107];
}
/* don't make this a macro */
static void
store_16(unsigned char *buf, unsigned short value) {
buf[0] = value >> 8;
buf[1] = value & 0xFF;
}
static void
store_32(unsigned char *buf, unsigned long value) {
buf[0] = value >> 24;
buf[1] = (value >> 16) & 0xFF;
buf[2] = (value >> 8) & 0xFF;
buf[3] = value & 0xFF;
}
/*
=item rgb_header_pack(header, headbuf)
Packs header structure into buffer for writing.
header - header structure
headbuf - buffer to pack into
=cut
*/
static
void
rgb_header_pack(const rgb_header *header, unsigned char headbuf[512]) {
memset(headbuf, 0, 512);
store_16(headbuf, header->imagic);
headbuf[2] = header->storagetype;
headbuf[3] = header->BPC;
store_16(headbuf+4, header->dimensions);
store_16(headbuf+6, header->xsize);
store_16(headbuf+8, header->ysize);
store_16(headbuf+10, header->zsize);
store_32(headbuf+12, header->pixmin);
store_32(headbuf+16, header->pixmax);
memccpy(headbuf+24, header->name, '\0', 80);
store_32(headbuf+104, header->colormap);
}
/*
=item i_readsgi_wiol(ig, partial)
Read in an image from the iolayer data source and return the image structure to it.
Returns NULL on error.
ig - io_glue object
length - maximum length to read from data source, before closing it -1
signifies no limit.
=cut
*/
i_img *
i_readsgi_wiol(io_glue *ig, int partial) {
i_img *img = NULL;
int width, height, channels;
rgb_header header;
unsigned char headbuf[512];
mm_log((1,"i_readsgi(ig %p, partial %d)\n", ig, partial));
i_clear_error();
if (i_io_read(ig, headbuf, 512) != 512) {
i_push_error(errno, "SGI image: could not read header");
return NULL;
}
rgb_header_unpack(&header, headbuf);
if (header.imagic != SGI_MAGIC) {
i_push_error(0, "SGI image: invalid magic number");
return NULL;
}
mm_log((1,"imagic: %d\n", header.imagic));
mm_log((1,"storagetype: %d\n", header.storagetype));
mm_log((1,"BPC: %d\n", header.BPC));
mm_log((1,"dimensions: %d\n", header.dimensions));
mm_log((1,"xsize: %d\n", header.xsize));
mm_log((1,"ysize: %d\n", header.ysize));
mm_log((1,"zsize: %d\n", header.zsize));
mm_log((1,"min: %d\n", header.pixmin));
mm_log((1,"max: %d\n", header.pixmax));
mm_log((1,"name [skipped]\n"));
mm_log((1,"colormap: %d\n", header.colormap));
if (header.colormap != SGI_COLORMAP_NORMAL) {
i_push_errorf(0, "SGI image: invalid value for colormap (%d)", header.colormap);
return NULL;
}
if (header.BPC != 1 && header.BPC != 2) {
i_push_errorf(0, "SGI image: invalid value for BPC (%d)", header.BPC);
return NULL;
}
if (header.storagetype != SGI_STORAGE_VERBATIM
&& header.storagetype != SGI_STORAGE_RLE) {
i_push_error(0, "SGI image: invalid storage type field");
return NULL;
}
if (header.pixmin >= header.pixmax) {
i_push_error(0, "SGI image: invalid pixmin >= pixmax");
return NULL;
}
width = header.xsize;
height = header.ysize;
channels = header.zsize;
switch (header.dimensions) {
case 1:
channels = 1;
height = 1;
break;
case 2:
channels = 1;
break;
case 3:
/* fall through and use all of the dimensions */
break;
default:
i_push_error(0, "SGI image: invalid dimension field");
return NULL;
}
if (!i_int_check_image_file_limits(width, height, channels, header.BPC)) {
mm_log((1, "i_readsgi_wiol: image size exceeds limits\n"));
return NULL;
}
if (header.BPC == 1) {
img = i_img_8_new(width, height, channels);
if (!img)
goto ErrorReturn;
switch (header.storagetype) {
case SGI_STORAGE_VERBATIM:
img = read_rgb_8_verbatim(img, ig, &header);
break;
case SGI_STORAGE_RLE:
img = read_rgb_8_rle(img, ig, &header);
break;
default:
goto ErrorReturn;
}
}
else {
img = i_img_16_new(width, height, channels);
if (!img)
goto ErrorReturn;
switch (header.storagetype) {
case SGI_STORAGE_VERBATIM:
img = read_rgb_16_verbatim(img, ig, &header);
break;
case SGI_STORAGE_RLE:
img = read_rgb_16_rle(img, ig, &header);
break;
default:
goto ErrorReturn;
}
}
if (!img)
goto ErrorReturn;
if (*header.name)
i_tags_set(&img->tags, "i_comment", header.name, -1);
i_tags_setn(&img->tags, "sgi_pixmin", header.pixmin);
i_tags_setn(&img->tags, "sgi_pixmax", header.pixmax);
i_tags_setn(&img->tags, "sgi_bpc", header.BPC);
i_tags_setn(&img->tags, "sgi_rle", header.storagetype == SGI_STORAGE_RLE);
i_tags_set(&img->tags, "i_format", "sgi", -1);
return img;
ErrorReturn:
if (img) i_img_destroy(img);
return NULL;
}
/*
=item i_writergb_wiol(img, ig)
Writes an image in targa format. Returns 0 on error.
img - image to store
ig - io_glue object
=cut
*/
int
i_writesgi_wiol(io_glue *ig, i_img *img) {
int rle;
int bpc2;
i_clear_error();
if (img->xsize > SGI_DIM_LIMIT || img->ysize > SGI_DIM_LIMIT) {
i_push_error(0, "image too large for SGI");
return 0;
}
if (!write_sgi_header(img, ig, &rle, &bpc2))
return 0;
mm_log((1, "format rle %d bpc2 %d\n", rle, bpc2));
if (bpc2) {
if (rle)
return write_sgi_16_rle(img, ig);
else
return write_sgi_16_verb(img, ig);
}
else {
if (rle)
return write_sgi_8_rle(img, ig);
else
return write_sgi_8_verb(img, ig);
}
}
static i_img *
read_rgb_8_verbatim(i_img *img, io_glue *ig, rgb_header const *header) {
i_color *linebuf;
unsigned char *databuf;
int c, y;
int savemask;
i_img_dim width = i_img_get_width(img);
i_img_dim height = i_img_get_height(img);
int channels = i_img_getchannels(img);
int pixmin = header->pixmin;
int pixmax = header->pixmax;
int outmax = pixmax - pixmin;
linebuf = mymalloc(width * sizeof(i_color)); /* checked 31Jul07 TonyC */
databuf = mymalloc(width); /* checked 31Jul07 TonyC */
savemask = i_img_getmask(img);
for(c = 0; c < channels; c++) {
i_img_setmask(img, 1<<c);
for(y = 0; y < height; y++) {
int x;
if (i_io_read(ig, databuf, width) != width) {
i_push_error(0, "SGI image: cannot read image data");
i_img_destroy(img);
myfree(linebuf);
myfree(databuf);
return NULL;
}
if (pixmin == 0 && pixmax == 255) {
for(x = 0; x < img->xsize; x++)
linebuf[x].channel[c] = databuf[x];
}
else {
for(x = 0; x < img->xsize; x++) {
int sample = databuf[x];
if (sample < pixmin)
sample = 0;
else if (sample > pixmax)
sample = outmax;
else
sample -= pixmin;
linebuf[x].channel[c] = sample * 255 / outmax;
}
}
i_plin(img, 0, width, height-1-y, linebuf);
}
}
i_img_setmask(img, savemask);
myfree(linebuf);
myfree(databuf);
return img;
}
static int
read_rle_tables(io_glue *ig, i_img *img,
unsigned long **pstart_tab, unsigned long **plength_tab,
unsigned long *pmax_length) {
i_img_dim height = i_img_get_height(img);
int channels = i_img_getchannels(img);
unsigned char *databuf;
unsigned long *start_tab, *length_tab;
unsigned long max_length = 0;
int i;
size_t databuf_size = (size_t)height * channels * 4;
size_t tab_size = (size_t)height * channels * sizeof(unsigned long);
/* assumption: that the lengths are in bytes rather than in pixels */
if (databuf_size / height / channels != 4
|| tab_size / height / channels != sizeof(unsigned long)) {
i_push_error(0, "SGI image: integer overflow calculating allocation size");
return 0;
}
databuf = mymalloc(height * channels * 4); /* checked 31Jul07 TonyC */
start_tab = mymalloc(height*channels*sizeof(unsigned long));
length_tab = mymalloc(height*channels*sizeof(unsigned long));
/* Read offset table */
if (i_io_read(ig, databuf, height * channels * 4) != height * channels * 4) {
i_push_error(0, "SGI image: short read reading RLE start table");
goto ErrorReturn;
}
for(i = 0; i < height * channels; i++)
start_tab[i] = ((unsigned long)databuf[i*4] << 24) | (databuf[i*4+1] << 16) |
(databuf[i*4+2] << 8) | (databuf[i*4+3]);
/* Read length table */
if (i_io_read(ig, databuf, height*channels*4) != height*channels*4) {
i_push_error(0, "SGI image: short read reading RLE length table");
goto ErrorReturn;
}
for(i=0; i < height * channels; i++) {
length_tab[i] = ((unsigned long)databuf[i*4] << 24) | (databuf[i*4+1] << 16) |
(databuf[i*4+2] << 8) | (databuf[i*4+3]);
if (length_tab[i] > max_length)
max_length = length_tab[i];
}
mm_log((3, "Offset/length table:\n"));
for(i=0; i < height * channels; i++)
mm_log((3, "%d: %lu/%lu\n", i, start_tab[i], length_tab[i]));
*pstart_tab = start_tab;
*plength_tab = length_tab;
*pmax_length = max_length;
myfree(databuf);
return 1;
ErrorReturn:
myfree(databuf);
myfree(start_tab);
myfree(length_tab);
return 0;
}
static i_img *
read_rgb_8_rle(i_img *img, io_glue *ig, rgb_header const *header) {
i_color *linebuf = NULL;
unsigned char *databuf = NULL;
unsigned long *start_tab, *length_tab;
unsigned long max_length;
i_img_dim width = i_img_get_width(img);
i_img_dim height = i_img_get_height(img);
int channels = i_img_getchannels(img);
i_img_dim y;
int c;
int pixmin = header->pixmin;
int pixmax = header->pixmax;
int outmax = pixmax - pixmin;
if (!read_rle_tables(ig, img,
&start_tab, &length_tab, &max_length)) {
i_img_destroy(img);
return NULL;
}
mm_log((1, "maxlen for an rle buffer: %lu\n", max_length));
if (max_length > (img->xsize + 1) * 2) {
i_push_errorf(0, "SGI image: ridiculous RLE line length %lu", max_length);
goto ErrorReturn;
}
linebuf = mymalloc(width*sizeof(i_color)); /* checked 31Jul07 TonyC */
databuf = mymalloc(max_length); /* checked 31Jul07 TonyC */
for(y = 0; y < img->ysize; y++) {
for(c = 0; c < channels; c++) {
int ci = height * c + y;
int datalen = length_tab[ci];
unsigned char *inp;
i_color *outp;
int data_left = datalen;
int pixels_left = width;
i_sample_t sample;
if (i_io_seek(ig, start_tab[ci], SEEK_SET) != start_tab[ci]) {
i_push_error(0, "SGI image: cannot seek to RLE data");
goto ErrorReturn;
}
if (i_io_read(ig, databuf, datalen) != datalen) {
i_push_error(0, "SGI image: cannot read RLE data");
goto ErrorReturn;
}
inp = databuf;
outp = linebuf;
while (data_left) {
int code = *inp++;
int count = code & 0x7f;
--data_left;
if (count == 0)
break;
if (code & 0x80) {
/* literal run */
/* sanity checks */
if (count > pixels_left) {
i_push_error(0, "SGI image: literal run overflows scanline");
goto ErrorReturn;
}
if (count > data_left) {
i_push_error(0, "SGI image: literal run consumes more data than available");
goto ErrorReturn;
}
/* copy the run */
pixels_left -= count;
data_left -= count;
if (pixmin == 0 && pixmax == 255) {
while (count-- > 0) {
outp->channel[c] = *inp++;
++outp;
}
}
else {
while (count-- > 0) {
int sample = *inp++;
if (sample < pixmin)
sample = 0;
else if (sample > pixmax)
sample = outmax;
else
sample -= pixmin;
outp->channel[c] = sample * 255 / outmax;
++outp;
}
}
}
else {
/* RLE run */
if (count > pixels_left) {
i_push_error(0, "SGI image: RLE run overflows scanline");
mm_log((2, "RLE run overflows scanline (y %" i_DF " chan %d offset %lu len %lu)\n", i_DFc(y), c, start_tab[ci], length_tab[ci]));
goto ErrorReturn;
}
if (data_left < 1) {
i_push_error(0, "SGI image: RLE run has no data for pixel");
goto ErrorReturn;
}
sample = *inp++;
if (pixmin != 0 || pixmax != 255) {
if (sample < pixmin)
sample = 0;
else if (sample > pixmax)
sample = outmax;
else
sample -= pixmin;
sample = sample * 255 / outmax;
}
--data_left;
pixels_left -= count;
while (count-- > 0) {
outp->channel[c] = sample;
++outp;
}
}
}
/* must have a full scanline */
if (pixels_left) {
i_push_error(0, "SGI image: incomplete RLE scanline");
goto ErrorReturn;
}
/* must have used all of the data */
if (data_left) {
i_push_errorf(0, "SGI image: unused RLE data");
goto ErrorReturn;
}
}
i_plin(img, 0, width, height-1-y, linebuf);
}
myfree(linebuf);
myfree(databuf);
myfree(start_tab);
myfree(length_tab);
return img;
ErrorReturn:
if (linebuf)
myfree(linebuf);
if (databuf)
myfree(databuf);
myfree(start_tab);
myfree(length_tab);
i_img_destroy(img);
return NULL;
}
static i_img *
read_rgb_16_verbatim(i_img *img, io_glue *ig, rgb_header const *header) {
i_fcolor *linebuf;
unsigned char *databuf;
int c, y;
int savemask;
i_img_dim width = i_img_get_width(img);
i_img_dim height = i_img_get_height(img);
int channels = i_img_getchannels(img);
int pixmin = header->pixmin;
int pixmax = header->pixmax;
int outmax = pixmax - pixmin;
linebuf = mymalloc(width * sizeof(i_fcolor)); /* checked 31Jul07 TonyC */
databuf = mymalloc(width * 2); /* checked 31Jul07 TonyC */
savemask = i_img_getmask(img);
for(c = 0; c < channels; c++) {
i_img_setmask(img, 1<<c);
for(y = 0; y < height; y++) {
int x;
if (i_io_read(ig, databuf, width*2) != width*2) {
i_push_error(0, "SGI image: cannot read image data");
i_img_destroy(img);
myfree(linebuf);
myfree(databuf);
return NULL;
}
if (pixmin == 0 && pixmax == 65535) {
for(x = 0; x < img->xsize; x++)
linebuf[x].channel[c] = (databuf[x*2] * 256 + databuf[x*2+1]) / 65535.0;
}
else {
for(x = 0; x < img->xsize; x++) {
int sample = databuf[x*2] * 256 + databuf[x*2+1];
if (sample < pixmin)
sample = 0;
else if (sample > pixmax)
sample = outmax;
else
sample -= pixmin;
linebuf[x].channel[c] = (double)sample / outmax;
}
}
i_plinf(img, 0, width, height-1-y, linebuf);
}
}
i_img_setmask(img, savemask);
myfree(linebuf);
myfree(databuf);
return img;
}
static i_img *
read_rgb_16_rle(i_img *img, io_glue *ig, rgb_header const *header) {
i_fcolor *linebuf = NULL;
unsigned char *databuf = NULL;
unsigned long *start_tab, *length_tab;
unsigned long max_length;
i_img_dim width = i_img_get_width(img);
i_img_dim height = i_img_get_height(img);
int channels = i_img_getchannels(img);
i_img_dim y;
int c;
int pixmin = header->pixmin;
int pixmax = header->pixmax;
int outmax = pixmax - pixmin;
if (!read_rle_tables(ig, img,
&start_tab, &length_tab, &max_length)) {
i_img_destroy(img);
return NULL;
}
mm_log((1, "maxlen for an rle buffer: %lu\n", max_length));
if (max_length > (img->xsize * 2 + 1) * 2) {
i_push_errorf(0, "SGI image: ridiculous RLE line length %lu", max_length);
goto ErrorReturn;
}
linebuf = mymalloc(width*sizeof(i_fcolor)); /* checked 31Jul07 TonyC */
databuf = mymalloc(max_length); /* checked 31Jul07 TonyC */
for(y = 0; y < img->ysize; y++) {
for(c = 0; c < channels; c++) {
int ci = height * c + y;
int datalen = length_tab[ci];
unsigned char *inp;
i_fcolor *outp;
int data_left = datalen;
int pixels_left = width;
int sample;
if (datalen & 1) {
i_push_error(0, "SGI image: invalid RLE length value for BPC=2");
goto ErrorReturn;
}
if (i_io_seek(ig, start_tab[ci], SEEK_SET) != start_tab[ci]) {
i_push_error(0, "SGI image: cannot seek to RLE data");
goto ErrorReturn;
}
if (i_io_read(ig, databuf, datalen) != datalen) {
i_push_error(0, "SGI image: cannot read RLE data");
goto ErrorReturn;
}
inp = databuf;
outp = linebuf;
while (data_left > 0) {
int code = inp[0] * 256 + inp[1];
int count = code & 0x7f;
inp += 2;
data_left -= 2;
if (count == 0)
break;
if (code & 0x80) {
/* literal run */
/* sanity checks */
if (count > pixels_left) {
i_push_error(0, "SGI image: literal run overflows scanline");
goto ErrorReturn;
}
if (count > data_left) {
i_push_error(0, "SGI image: literal run consumes more data than available");
goto ErrorReturn;
}
/* copy the run */
pixels_left -= count;
data_left -= count * 2;
if (pixmin == 0 && pixmax == 65535) {
while (count-- > 0) {
outp->channel[c] = (inp[0] * 256 + inp[1]) / 65535.0;
inp += 2;
++outp;
}
}
else {
while (count-- > 0) {
int sample = inp[0] * 256 + inp[1];
if (sample < pixmin)
sample = 0;
else if (sample > pixmax)
sample = outmax;
else
sample -= pixmin;
outp->channel[c] = (double)sample / outmax;
++outp;
inp += 2;
}
}
}
else {
double fsample;
/* RLE run */
if (count > pixels_left) {
i_push_error(0, "SGI image: RLE run overflows scanline");
goto ErrorReturn;
}
if (data_left < 2) {
i_push_error(0, "SGI image: RLE run has no data for pixel");
goto ErrorReturn;
}
sample = inp[0] * 256 + inp[1];
inp += 2;
data_left -= 2;
if (pixmin != 0 || pixmax != 65535) {
if (sample < pixmin)
sample = 0;
else if (sample > pixmax)
sample = outmax;
else
sample -= pixmin;
fsample = (double)sample / outmax;
}
else {
fsample = (double)sample / 65535.0;
}
pixels_left -= count;
while (count-- > 0) {
outp->channel[c] = fsample;
++outp;
}
}
}
/* must have a full scanline */
if (pixels_left) {
i_push_error(0, "SGI image: incomplete RLE scanline");
goto ErrorReturn;
}
/* must have used all of the data */
if (data_left) {
i_push_errorf(0, "SGI image: unused RLE data");
goto ErrorReturn;
}
}
i_plinf(img, 0, width, height-1-y, linebuf);
}
myfree(linebuf);
myfree(databuf);
myfree(start_tab);
myfree(length_tab);
return img;
ErrorReturn:
if (linebuf)
myfree(linebuf);
if (databuf)
myfree(databuf);
myfree(start_tab);
myfree(length_tab);
i_img_destroy(img);
return NULL;
}
static int
write_sgi_header(i_img *img, io_glue *ig, int *rle, int *bpc2) {
rgb_header header;
unsigned char headbuf[512] = { 0 };
header.imagic = SGI_MAGIC;
if (!i_tags_get_int(&img->tags, "sgi_rle", 0, rle))
*rle = 0;
header.storagetype = *rle ? SGI_STORAGE_RLE : SGI_STORAGE_VERBATIM;
header.pixmin = 0;
header.colormap = SGI_COLORMAP_NORMAL;
*bpc2 = img->bits > 8;
if (*bpc2) {
header.BPC = 2;
header.pixmax = 65535;
}
else {
header.BPC = 1;
header.pixmax = 255;
}
if (img->channels == 1) {
header.dimensions = 2;
}
else {
header.dimensions = 3;
}
header.xsize = img->xsize;
header.ysize = img->ysize;
header.zsize = img->channels;
memset(header.name, 0, sizeof(header.name));
i_tags_get_string(&img->tags, "i_comment", 0,
header.name, sizeof(header.name));
rgb_header_pack(&header, headbuf);
if (i_io_write(ig, headbuf, sizeof(headbuf)) != sizeof(headbuf)) {
i_push_error(0, "SGI image: cannot write header");
return 0;
}
return 1;
}
static int
write_sgi_8_verb(i_img *img, io_glue *ig) {
i_sample_t *linebuf;
i_img_dim width = img->xsize;
int c;
i_img_dim y;
linebuf = mymalloc(width); /* checked 31Jul07 TonyC */
for (c = 0; c < img->channels; ++c) {
for (y = img->ysize - 1; y >= 0; --y) {
i_gsamp(img, 0, width, y, linebuf, &c, 1);
if (i_io_write(ig, linebuf, width) != width) {
i_push_error(errno, "SGI image: error writing image data");
myfree(linebuf);
return 0;
}
}
}
myfree(linebuf);
if (i_io_close(ig))
return 0;
return 1;
}
static int
write_sgi_8_rle(i_img *img, io_glue *ig) {
i_sample_t *linebuf;
unsigned char *comp_buf;
i_img_dim width = img->xsize;
int c;
i_img_dim y;
unsigned char *offsets;
unsigned char *lengths;
int offset_pos = 0;
size_t offsets_size = (size_t)4 * img->ysize * img->channels * 2;
unsigned long start_offset = 512 + offsets_size;
unsigned long current_offset = start_offset;
int in_left;
unsigned char *outp;
i_sample_t *inp;
size_t comp_size;
if (offsets_size / 2 / 4 / img->channels != img->ysize) {
i_push_error(0, "SGI image: integer overflow calculating allocation size");
return 0;
}
linebuf = mymalloc(width); /* checked 31Jul07 TonyC */
comp_buf = mymalloc((width + 1) * 2); /* checked 31Jul07 TonyC */
offsets = mymalloc(offsets_size);
memset(offsets, 0, offsets_size);
if (i_io_write(ig, offsets, offsets_size) != offsets_size) {
i_push_error(errno, "SGI image: error writing offsets/lengths");
goto Error;
}
lengths = offsets + img->ysize * img->channels * 4;
for (c = 0; c < img->channels; ++c) {
for (y = img->ysize - 1; y >= 0; --y) {
i_gsamp(img, 0, width, y, linebuf, &c, 1);
in_left = width;
outp = comp_buf;
inp = linebuf;
while (in_left) {
unsigned char *run_start = inp;
/* first try for an RLE run */
int run_length = 1;
while (in_left - run_length >= 2 && inp[0] == inp[1] && run_length < 127) {
++run_length;
++inp;
}
if (in_left - run_length == 1 && inp[0] == inp[1] && run_length < 127) {
++run_length;
++inp;
}
if (run_length > 2) {
*outp++ = run_length;
*outp++ = inp[0];
inp++;
in_left -= run_length;
}
else {
inp = run_start;
/* scan for a literal run */
run_length = 1;
run_start = inp;
while (in_left - run_length > 1 && (inp[0] != inp[1] || inp[1] != inp[2]) && run_length < 127) {
++run_length;
++inp;
}
++inp;
/* fill out the run if 2 or less samples left and there's space */
if (in_left - run_length <= 2
&& in_left <= 127) {
run_length = in_left;
}
in_left -= run_length;
*outp++ = run_length | 0x80;
while (run_length--) {
*outp++ = *run_start++;
}
}
}
*outp++ = 0;
comp_size = outp - comp_buf;
store_32(offsets + offset_pos, current_offset);
store_32(lengths + offset_pos, comp_size);
offset_pos += 4;
current_offset += comp_size;
if (i_io_write(ig, comp_buf, comp_size) != comp_size) {
i_push_error(errno, "SGI image: error writing RLE data");
goto Error;
}
}
}
/* seek back to store the offsets and lengths */
if (i_io_seek(ig, 512, SEEK_SET) != 512) {
i_push_error(errno, "SGI image: cannot seek to RLE table");
goto Error;
}
if (i_io_write(ig, offsets, offsets_size) != offsets_size) {
i_push_error(errno, "SGI image: cannot write final RLE table");
goto Error;
}
myfree(offsets);
myfree(comp_buf);
myfree(linebuf);
if (i_io_close(ig))
return 0;
return 1;
Error:
myfree(offsets);
myfree(comp_buf);
myfree(linebuf);
return 0;
}
static int
write_sgi_16_verb(i_img *img, io_glue *ig) {
i_fsample_t *linebuf;
unsigned char *encbuf;
unsigned char *outp;
i_img_dim width = img->xsize;
int c;
i_img_dim x;
i_img_dim y;
linebuf = mymalloc(width * sizeof(i_fsample_t)); /* checked 31Jul07 TonyC */
encbuf = mymalloc(width * 2); /* checked 31Jul07 TonyC */
for (c = 0; c < img->channels; ++c) {
for (y = img->ysize - 1; y >= 0; --y) {
i_gsampf(img, 0, width, y, linebuf, &c, 1);
for (x = 0, outp = encbuf; x < width; ++x, outp+=2) {
unsigned short samp16 = SampleFTo16(linebuf[x]);
store_16(outp, samp16);
}
if (i_io_write(ig, encbuf, width * 2) != width * 2) {
i_push_error(errno, "SGI image: error writing image data");
myfree(linebuf);
myfree(encbuf);
return 0;
}
}
}
myfree(linebuf);
myfree(encbuf);
if (i_io_close(ig))
return 0;
return 1;
}
static int
write_sgi_16_rle(i_img *img, io_glue *ig) {
i_fsample_t *sampbuf;
unsigned short *linebuf;
unsigned char *comp_buf;
i_img_dim width = img->xsize;
int c;
i_img_dim y;
unsigned char *offsets;
unsigned char *lengths;
int offset_pos = 0;
size_t offsets_size = (size_t)4 * img->ysize * img->channels * 2;
unsigned long start_offset = 512 + offsets_size;
unsigned long current_offset = start_offset;
int in_left;
unsigned char *outp;
unsigned short *inp;
size_t comp_size;
i_img_dim x;
if (offsets_size / 4 / 2 / img->channels != img->ysize) {
i_push_error(0, "SGI image: integer overflow calculating allocation size");
return 0;
}
sampbuf = mymalloc(width * sizeof(i_fsample_t)); /* checked 31Jul07 TonyC */
linebuf = mymalloc(width * sizeof(unsigned short)); /* checked 31Jul07 TonyC */
comp_buf = mymalloc((width + 1) * 2 * 2); /* checked 31Jul07 TonyC */
offsets = mymalloc(offsets_size);
memset(offsets, 0, offsets_size);
if (i_io_write(ig, offsets, offsets_size) != offsets_size) {
i_push_error(errno, "SGI image: error writing offsets/lengths");
goto Error;
}
lengths = offsets + img->ysize * img->channels * 4;
for (c = 0; c < img->channels; ++c) {
for (y = img->ysize - 1; y >= 0; --y) {
i_gsampf(img, 0, width, y, sampbuf, &c, 1);
for (x = 0; x < width; ++x)
linebuf[x] = (unsigned short)(SampleFTo16(sampbuf[x]));
in_left = width;
outp = comp_buf;
inp = linebuf;
while (in_left) {
unsigned short *run_start = inp;
/* first try for an RLE run */
int run_length = 1;
while (in_left - run_length >= 2 && inp[0] == inp[1] && run_length < 127) {
++run_length;
++inp;
}
if (in_left - run_length == 1 && inp[0] == inp[1] && run_length < 127) {
++run_length;
++inp;
}
if (run_length > 2) {
store_16(outp, run_length);
store_16(outp+2, inp[0]);
outp += 4;
inp++;
in_left -= run_length;
}
else {
inp = run_start;
/* scan for a literal run */
run_length = 1;
run_start = inp;
while (in_left - run_length > 1 && (inp[0] != inp[1] || inp[1] != inp[2]) && run_length < 127) {
++run_length;
++inp;
}
++inp;
/* fill out the run if 2 or less samples left and there's space */
if (in_left - run_length <= 2
&& in_left <= 127) {
run_length = in_left;
}
in_left -= run_length;
store_16(outp, run_length | 0x80);
outp += 2;
while (run_length--) {
store_16(outp, *run_start++);
outp += 2;
}
}
}
store_16(outp, 0);
outp += 2;
comp_size = outp - comp_buf;
store_32(offsets + offset_pos, current_offset);
store_32(lengths + offset_pos, comp_size);
offset_pos += 4;
current_offset += comp_size;
if (i_io_write(ig, comp_buf, comp_size) != comp_size) {
i_push_error(errno, "SGI image: error writing RLE data");
goto Error;
}
}
}
/* seek back to store the offsets and lengths */
if (i_io_seek(ig, 512, SEEK_SET) != 512) {
i_push_error(errno, "SGI image: cannot seek to RLE table");
goto Error;
}
if (i_io_write(ig, offsets, offsets_size) != offsets_size) {
i_push_error(errno, "SGI image: cannot write final RLE table");
goto Error;
}
myfree(offsets);
myfree(comp_buf);
myfree(linebuf);
myfree(sampbuf);
if (i_io_close(ig))
return 0;
return 1;
Error:
myfree(offsets);
myfree(comp_buf);
myfree(linebuf);
myfree(sampbuf);
return 0;
}
|