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
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF. The full HDF copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF/releases/. *
* If you do not have access to either file, you may request a copy from *
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/****************************************************************************\
** Title: GIFREAD.C **
** Purpose: Read the information from a GIF file. **
** Version: 1.0 **
** Date: March 1992 **
** Author: James D. Murray, Anaheim, CA USA **
** C Compilers: Borland C++ v2.0, Microsoft C v6.00a **
** **
** This module contains six functions which read various data structures **
** stored in GIF 87a and 89a-format files. **
** **
** This module contains the following functions: **
** **
** ReadGifHeader - Read a GIF image file Header **
** ReadGifImageDesc - Read a GIF Local Image Descriptor **
** ReadGifGraphicControl - Read a GIF Graphic Control Extension block **
** ReadGifPlainText - Read a GIF Plain Text Extension block **
** ReadGifApplication - Read a GIF Application Extension block **
** ReadGifComment - Read a GIF Comment Extension block **
** ReadDataSubBlocks - Read one or more GIF data sub-blocks **
** **
** Copyright (C) 1991,92 by Graphics Software Labs. All rights reserved. **
\****************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "gif.h"
/* External global variables */
/* WORD (*GetWord)(FILE *);
** DWORD (*GetDword)(FILE *);
*/
int EndianOrder;
WORD
GetWord(BYTE *MemGif)
{
WORD w;
if (EndianOrder == 1) { /* LittleEndian */
w = (WORD)(*MemGif++ & 0xFF);
w |= (WORD)((*MemGif++ & 0xFF) << 0x08);
}
else {
w = (WORD)(*MemGif++ & 0xFF);
w = ((WORD)(*MemGif++ & 0xFF)) | (w << 0x08);
}
return w;
}
BYTE
GetByte(BYTE *MemGif)
{
return *MemGif;
}
/*
** Read a GIF image BYTE Header.
**
** This function reads the Header, Logical Screen Descriptor, and
** Global Color Table (if any) from a GIF image file. The information
** is stored in a GIFHEAD structure.
**
** Returns: -1 if a FILE stream error occurred during the read,
** otherwise 0 if no error occurred.
** GifHead - Pointer to GIF header structure
** MemGif2 - GIF image file input FILE stream
*/
int
ReadGifHeader(GIFHEAD *GifHead, /* Pointer to GIF header structure */
BYTE **MemGif2) /* GIF image file input FILE stream */
{
WORD i; /* Loop counter */
WORD tableSize; /* Number of entries in the Global Color Table */
GifHead->TableSize = 0;
for (i = 0; i < 6; i++) {
GifHead->HeaderDump[i] = *(*MemGif2)++;
}
if (strncmp((char *)GifHead->HeaderDump, "GIF", 3)) {
printf("The file does not appear to be a valid GIF file.\n");
exit(-1);
}
for (i = 0; i < 7; i++) {
GifHead->LSDDump[i] = *(*MemGif2)++;
}
GifHead->PackedField = GifHead->LSDDump[4];
/* Check if a Global Color Table is present */
if (GifHead->PackedField & 0x80) {
/* Read number of color table entries */
tableSize = (WORD)(1L << ((GifHead->PackedField & 0x07) + 1));
GifHead->TableSize = tableSize;
/* Read the Global Color Table */
/*
** There are some changes made here apart from just
** reading in the global color table as would
** seem intuitively obvious.
** The colors are stored in the bottom part of the
** palette as opposed to the top
*/
for (i = 0; i < tableSize; i++) {
GifHead->HDFPalette[i][0] = *(*MemGif2)++;
GifHead->HDFPalette[i][1] = *(*MemGif2)++;
GifHead->HDFPalette[i][2] = *(*MemGif2)++;
}
}
/* Check for a FILE stream error */
/*
if (ferror(FpGif))
return(-1);
*/
return (0); /* No FILE stream error occurred */
}
/*
** Read a GIF Local Image Descriptor.
**
** This function reads the Local Image Descriptor, and Local Color
** Table (if any) from a GIF image file. The information is stored
** in a GIFIMAGEDESC structure.
**
** Note that the ImageSeparator field value in the GIFIMAGEDESC
** structure is assigned by the function calling ReadGifImageDesc().
**
** Returns: -1 if a FILE stream error occurred during the read,
** otherwise 0 if no error occurred.
** GifImageDesc - Pointer to GIF image descriptor structure
** MemGif2 - GIF image file input FILE stream
*/
int
ReadGifImageDesc(GIFIMAGEDESC *GifImageDesc, BYTE **MemGif2)
{
WORD i; /* Loop counter */
WORD tableSize; /* Number of entries in the Local Color Table */
BYTE *TempPtr;
int ch, ch1;
GifImageDesc->TableSize = 0;
for (i = 0; i < 9; i++) {
GifImageDesc->GIDDump[i] = *(*MemGif2)++;
}
/*
** Get the relevant fields. I need ImageWidth and Height actively hence I have
** taken information from those fields. I intend to keep the GifImageDesc data
** structure as it is so that anyone needing the rest of the fields can do so
** quickly.
*/
if (EndianOrder == 1) /* LittleEndian */
{
GifImageDesc->ImageWidth = (WORD)(GifImageDesc->GIDDump[4] & 0xFF);
GifImageDesc->ImageWidth |= (WORD)((GifImageDesc->GIDDump[5] & 0xFF) << 0x08);
GifImageDesc->ImageHeight = (WORD)(GifImageDesc->GIDDump[6] & 0xFF);
GifImageDesc->ImageHeight |= (WORD)((GifImageDesc->GIDDump[7] & 0xFF) << 0x08);
}
else {
GifImageDesc->ImageWidth = (WORD)(GifImageDesc->GIDDump[4] & 0xFF);
GifImageDesc->ImageWidth =
((WORD)(GifImageDesc->GIDDump[5] & 0xFF)) | (GifImageDesc->ImageWidth << 0x08);
GifImageDesc->ImageHeight = (WORD)(GifImageDesc->GIDDump[6] & 0xFF);
GifImageDesc->ImageHeight =
((WORD)(GifImageDesc->GIDDump[7] & 0xFF)) | (GifImageDesc->ImageWidth << 0x08);
}
GifImageDesc->PackedField = GifImageDesc->GIDDump[8];
/* Check if a Local Color Table is present */
if (GifImageDesc->PackedField & 0x80) {
/* Read number of color table entries */
tableSize = (WORD)(1L << ((GifImageDesc->PackedField & 0x07) + 1));
GifImageDesc->TableSize = tableSize;
/* Read the Local Color Table */
for (i = 0; i < tableSize; i++) {
GifImageDesc->HDFPalette[i][0] = *(*MemGif2)++;
GifImageDesc->HDFPalette[i][1] = *(*MemGif2)++;
GifImageDesc->HDFPalette[i][2] = *(*MemGif2)++;
}
}
/*
** Get LZW minimum Code Size
*/
GifImageDesc->CodeSize = (WORD) * (*MemGif2)++;
/*GifImageDesc->GIFImage = ReadDataSubBlocks(FpGif);*/
if (!(GifImageDesc->GIFImage =
(BYTE *)malloc((GifImageDesc->ImageWidth) * (GifImageDesc->ImageHeight)))) {
printf("Out of memory");
exit(-1);
}
TempPtr = GifImageDesc->GIFImage;
do {
ch = ch1 = (int)*(*MemGif2)++;
while (ch--)
*TempPtr++ = *(*MemGif2)++;
} while (ch1);
return (0); /* No FILE stream error occurred */
}
/*
** Read a GIF Graphic Control Extension block.
**
** Note that the Introducer and Label field values in the GIFGRAPHICCONTROL
** structure are assigned by the function calling ReadGifGraphicControl().
**
** Returns: -1 if a FILE stream error occurred during the read,
** otherwise 0 if no error occurred.
** GifGraphicControl - Pointer to GC Extension structure
** MemGif2 - GIF image file input FILE stream
*/
int
ReadGifGraphicControl(GIFGRAPHICCONTROL *GifGraphicControl, BYTE **MemGif2)
{
int i;
for (i = 0; i < 5; i++) {
GifGraphicControl->GCEDump[i] = *(*MemGif2)++;
}
return (0); /* No FILE stream error occurred */
}
/*
** Read a GIF Plain Text Extension block.
**
** Note that the Introducer and Label field values in the GIFLPLAINTEXT
** structure are assigned by the function calling ReadGifPlainText().
**
** Returns: -1 if a FILE stream error occurred during the read,
** otherwise 0 if no error occurred.
** GifPlainText - Pointer to Plain Text Extension structure
** MemGif2 - GIF image file input FILE stream
*/
int
ReadGifPlainText(GIFPLAINTEXT *GifPlainText, BYTE **MemGif2)
{
int i;
for (i = 0; i < 13; i++) {
GifPlainText->PTEDump[i] = *(*MemGif2)++;
}
/* Read in the Plain Text data sub-blocks */
if (!(GifPlainText->PlainTextData = ReadDataSubBlocks(MemGif2, &(GifPlainText->DataSize))))
return (1);
/*
GifPlainText->Terminator = 0;
*/
/* Check for a FILE stream error */
/*
if (ferror(FpGif))
return(-1);
*/
return (0); /* No FILE stream error occurred */
}
/*
** Read a GIF Application Extension block.
**
** Note that the Introducer and Label field values in the GIFAPPLICATION
** structure are assigned by the function calling ReadGifApplication().
**
** Returns: -1 if a FILE stream error occurred during the read,
** otherwise 0 if no error occurred.
** GifApplication - Pointer to Application Extension structure
** MemGif2 - GIF image file input FILE stream
*/
int
ReadGifApplication(GIFAPPLICATION *GifApplication, BYTE **MemGif2)
{
int i;
for (i = 0; i < 12; i++) {
GifApplication->AEDump[i] = *(*MemGif2)++;
}
/* Read in the Plain Text data sub-blocks */
if (!(GifApplication->ApplicationData = ReadDataSubBlocks(MemGif2, &(GifApplication->DataSize))))
return (1);
/*
GifApplication->Terminator = 0;
*/
/* Check for a FILE stream error */
/*
if (ferror(FpGif))
return(-1);
*/
return (0); /* No FILE stream error occurred */
}
/*
** Read a GIF Comment Extension block.
**
** Note that the Introducer and Label field values in the GIFCOMMENT
** structure are assigned by the function calling ReadGifComment().
**
** Returns: -1 if a FILE stream error occurred during the read,
** otherwise 0 if no error occurred.
** GifComment - Pointer to GIF Comment Extension structure
** MemGif2 - GIF image file input FILE stream
*/
int
ReadGifComment(GIFCOMMENT *GifComment, BYTE **MemGif2)
{
/* Read in the Plain Text data sub-blocks */
if (!(GifComment->CommentData = ReadDataSubBlocks(MemGif2, &(GifComment->DataSize))))
return (1);
GifComment->Terminator = 0;
return (0); /* No FILE stream error occurred */
}
/*
** Read one or more GIF data sub-blocks and write the information
** to a buffer.
**
** A GIF "sub-block" is a single count byte followed by 1 to 255
** additional data bytes.
**
** Returns: A NULL pointer if a memory allocation error occurred,
** otherwise a valid pointer if no error occurred.
** MemGif2 - GIF image file input FILE stream
*/
BYTE *
ReadDataSubBlocks(BYTE **MemGif2, WORD *DSize)
{
BYTE *ptr1; /* Pointer used to "walk the heap" */
BYTE *ptr2; /* Pointer used to mark the top of the heap */
BYTE dataSize; /* Size of the current data sub-block being read */
WORD bufSize; /* Total size of the Plain Text data buffer */
int tempcount = 0;
bufSize = 0; /* The output buffer is empty */
dataSize = *(*MemGif2)++; /* Get the size of the first sub-block */
/* Allocate initial data buffer */
if (!(ptr1 = ptr2 = (BYTE *)malloc(dataSize + 1))) {
printf("Out of memory. Allocation of memory for data sub-blocks for\neither Comment, Plain Text or "
"Application Extensions failed");
return ((BYTE *)NULL);
}
for (;;) {
tempcount++;
bufSize += (dataSize); /* Running total of the buffer size */
*DSize = bufSize;
#ifdef NO
*ptr1++ = dataSize; /* Write the data count */
#endif
while (dataSize--) /* Read/write the Plain Text data */
*ptr1++ = *(*MemGif2)++;
/* Check if there is another data sub-block */
if ((dataSize = *(*MemGif2)++) == 0)
break; /* Block Terminator encountered */
/* Increase the buffer size to accommodate the next sub-block */
if (!(ptr1 = ptr2 = (BYTE *)realloc(ptr2, bufSize + dataSize + 1)))
return ((BYTE *)NULL);
ptr1 += bufSize; /* Move pointer to the end of the data */
}
#ifdef NO
*ptr1++ = (BYTE)NULL; /* Add NULL to simulate Terminator value */
#endif
*ptr1++ = '\0';
return (ptr2); /* Return a pointer to the sub-block data */
}
|