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
|
/* Copyright (C) 2000-2011 by George Williams */
/*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "gimage.h"
typedef struct _SunRaster {
long MagicNumber; /* Magic (identification) number */
long Width; /* Width of image in pixels */
long Height; /* Height of image in pixels */
long Depth; /* Number of bits per pixel */
long Length; /* Size of image data in bytes */
long Type; /* Type of raster file */
long ColorMapType; /* Type of color map */
long ColorMapLength; /* Size of the color map in bytes */
} SUNRASTER;
#define SUN_RAS_MAGIC 0x59a66a95
#define LITTLE_ENDIAN_MAGIC 0x956aa659 /* if we read this value, must byte swap */
enum types { TypeOld, TypeStandard, TypeByteEncoded, TypeRGB, TypeTIFF, TypeIFF };
enum cluts { ClutNone, ClutRGB, ClutRaw };
static long getlong(FILE *fp) {
int ch1, ch2, ch3, ch4;
ch1 = fgetc(fp); ch2 = fgetc(fp); ch3=fgetc(fp); ch4=fgetc(fp);
return( (ch1<<24) | (ch2<<16) | (ch3<<8) | ch4 );
}
static void getrasheader(SUNRASTER *head, FILE *fp) {
head->MagicNumber = getlong(fp);
head->Width = getlong(fp);
head->Height = getlong(fp);
head->Depth = getlong(fp);
head->Length = getlong(fp);
head->Type = getlong(fp);
head->ColorMapType = getlong(fp);
head->ColorMapLength = getlong(fp);
}
static GImage *ReadRasBitmap(GImage *ret,int width, int height, FILE *fp ) {
struct _GImage *base = ret->u.image;
int i,j,len;
unsigned char *pt, *buf;
len = ((width+15)/16)*2;
buf = galloc(len);
for ( i=0; i<height; ++i ) {
if ( fread(buf,len,1,fp)==EOF ) {
GImageDestroy(ret);
return( NULL);
}
pt = (unsigned char *) (base->data + i*base->bytes_per_line);
for ( j=0 ; j<width; ++j )
if ( buf[j>>3]&(1<<(j&7)) )
*pt++ = 1;
else
*pt++ = 0;
}
gfree(buf);
return ret;
}
static GImage *ReadRas8Bit(GImage *ret,int width, int height, FILE *fp ) {
struct _GImage *base = ret->u.image;
int i;
for ( i=0; i<height; ++i ) {
if ( fread((base->data + i*base->bytes_per_line),width,1,fp)==EOF ) {
GImageDestroy(ret);
return( NULL);
}
if ( width&1 ) /* pad out to 16 bits */
fgetc(fp);
}
return ret;
}
static GImage *ReadRas24Bit(GImage *ret,int width, int height, FILE *fp ) {
struct _GImage *base = ret->u.image;
int ch1,ch2,ch3=0;
int i;
long *ipt,*end;
for ( i=0; i<height; ++i ) {
for ( ipt = (long *) (base->data + i*base->bytes_per_line), end = ipt+width; ipt<end; ) {
ch1 = fgetc(fp); ch2 = fgetc(fp); ch3 = fgetc(fp);
*ipt++ = COLOR_CREATE(ch3,ch2,ch1);
}
if ( width&1 ) /* pad out to 16 bits */
fgetc(fp);
}
if ( ch3==EOF ) {
GImageDestroy(ret);
ret = NULL;
}
return ret;
}
static GImage *ReadRas32Bit(GImage *ret,int width, int height, FILE *fp ) {
struct _GImage *base = ret->u.image;
int ch1,ch2,ch3=0;
int i;
long *ipt, *end;
for ( i=0; i<height; ++i )
for ( ipt = (long *) (base->data + i*base->bytes_per_line), end = ipt+width; ipt<end; ) {
fgetc(fp); /* pad byte */
ch1 = fgetc(fp); ch2 = fgetc(fp); ch3 = fgetc(fp);
*ipt++ = COLOR_CREATE(ch3,ch2,ch1);
}
if ( ch3==EOF ) {
GImageDestroy(ret);
ret = NULL;
}
return ret;
}
static GImage *ReadRas24RBit(GImage *ret,int width, int height, FILE *fp ) {
struct _GImage *base = ret->u.image;
int ch1,ch2,ch3=0;
int i;
long *ipt,*end;
for ( i=0; i<height; ++i ) {
for ( ipt = (long *) (base->data + i*base->bytes_per_line), end = ipt+width; ipt<end; ) {
ch1 = fgetc(fp); ch2 = fgetc(fp); ch3 = fgetc(fp);
*ipt++ = COLOR_CREATE(ch1,ch2,ch3);
}
if ( width&1 ) /* pad out to 16 bits */
fgetc(fp);
}
if ( ch3==EOF ) {
GImageDestroy(ret);
ret = NULL;
}
return ret;
}
static GImage *ReadRas32RBit(GImage *ret,int width, int height, FILE *fp ) {
struct _GImage *base = ret->u.image;
int ch1,ch2,ch3=0;
int i;
long *ipt, *end;
for ( i=0; i<height; ++i )
for ( ipt = (long *) (base->data + i*base->bytes_per_line), end = ipt+width; ipt<end; ) {
fgetc(fp); /* pad byte */
ch1 = fgetc(fp); ch2 = fgetc(fp); ch3 = fgetc(fp);
*ipt++ = COLOR_CREATE(ch1,ch2,ch3);
}
if ( ch3==EOF ) {
GImageDestroy(ret);
ret = NULL;
}
return ret;
}
static GImage *ReadRle8Bit(GImage *ret,int width, int height, FILE *fp ) {
struct _GImage *base = ret->u.image;
int i, tot, lineend, modwid;
int cnt=0,val=0,ch;
unsigned char *pt=NULL;
if ((modwid = ((width+1)&~1))==0 )
modwid = 2;;
tot = modwid*height; lineend = 0;
for ( i=0; i<tot; ++i ) {
if ( i==lineend ) {
pt = (unsigned char *) (base->data + (lineend/modwid)*base->bytes_per_line);
lineend += modwid;
}
if ( cnt==0 ) {
ch = fgetc(fp);
if ( ch==0x80 ) {
cnt = fgetc(fp);
if ( cnt!=0 ) { /* if ==0 then ch is 0x80 and correct */
ch = val = fgetc(fp);
--cnt;
}
}
} else {
ch = val;
--cnt;
}
if ( width&1 && i==lineend-1 )
/* Skip the pad byte */;
else
*pt++ = ch;
}
return ret;
}
GImage *GImageReadRas(char *filename) {
FILE *fp = fopen(filename,"rb");
struct _SunRaster header;
int i;
GImage *ret;
struct _GImage *base;
if ( fp==NULL )
return( NULL );
getrasheader(&header,fp);
if ( header.MagicNumber!=SUN_RAS_MAGIC ||
header.Type<0 || header.Type>TypeRGB ||
(header.ColorMapType!=ClutNone &&header.ColorMapType!=ClutRGB) ||
(header.Depth!=1 && header.Depth!=8 && header.Depth!=24 &&
header.Depth!=32) ||
(header.Depth>=24 && header.ColorMapType!=ClutNone) ||
header.ColorMapLength>3*256 ) {
fclose(fp);
return( NULL );
}
ret = GImageCreate(header.Depth==24?it_true:it_index,header.Width, header.Height);
base = ret->u.image;
if ( header.ColorMapLength!=0 && base->clut!=NULL ) {
char clutb[3*256]; int n;
fread(clutb,header.ColorMapLength,1,fp);
n = header.ColorMapLength/3;
base->clut->clut_len = n;
for ( i=0; i<n; ++i )
base->clut->clut[i] = COLOR_CREATE(clutb[i],clutb[i+n],clutb[i+2*n]);
}
if ( header.Type==TypeOld || header.Type==TypeStandard ) { /* Synonymous */
if ( header.Depth==1 )
ret = ReadRasBitmap(ret,header.Width,header.Height,fp);
else if ( header.Depth==8 )
ret = ReadRas8Bit(ret,header.Width,header.Height,fp);
else if ( header.Depth==24 )
ret = ReadRas24Bit(ret,header.Width,header.Height,fp);
else
ret = ReadRas32Bit(ret,header.Width,header.Height,fp);
} else if ( header.Type==TypeRGB ) {
/* I think this type is the same as standard except rgb not bgr */
if ( header.Depth==1 )
ret = ReadRasBitmap(ret,header.Width,header.Height,fp);
else if ( header.Depth==8 )
ret = ReadRas8Bit(ret,header.Width,header.Height,fp);
else if ( header.Depth==24 )
ret = ReadRas24RBit(ret,header.Width,header.Height,fp);
else
ret = ReadRas32RBit(ret,header.Width,header.Height,fp);
} else if ( header.Type==TypeRGB ) {
/* Don't bother with most of the rle formats */
if ( header.Depth==8 )
ret = ReadRle8Bit(ret,header.Width,header.Height,fp);
else {
GImageDestroy(ret);
ret = NULL;
}
}
fclose(fp);
return( ret );
}
|