2 /* png.c - location for general purpose libpng functions
5 * For conditions of distribution and use, see copyright notice in png.h
6 * Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
7 * Copyright (c) 1996, 1997 Andreas Dilger
8 * Copyright (c) 1998, Glenn Randers-Pehrson
14 #include "../png/png.h"
16 /* Version information for C files. This had better match the version
17 * string defined in png.h.
19 char png_libpng_ver
[12] = "1.0.1";
21 /* Place to hold the signature string for a PNG file. */
22 png_byte FARDATA png_sig
[8] = {137, 80, 78, 71, 13, 10, 26, 10};
24 /* Constant strings for known chunk types. If you need to add a chunk,
25 * add a string holding the name here. If you want to make the code
26 * portable to EBCDIC machines, use ASCII numbers, not characters.
28 png_byte FARDATA png_IHDR
[5] = { 73, 72, 68, 82, '\0'};
29 png_byte FARDATA png_IDAT
[5] = { 73, 68, 65, 84, '\0'};
30 png_byte FARDATA png_IEND
[5] = { 73, 69, 78, 68, '\0'};
31 png_byte FARDATA png_PLTE
[5] = { 80, 76, 84, 69, '\0'};
32 png_byte FARDATA png_bKGD
[5] = { 98, 75, 71, 68, '\0'};
33 png_byte FARDATA png_cHRM
[5] = { 99, 72, 82, 77, '\0'};
34 png_byte FARDATA png_gAMA
[5] = {103, 65, 77, 65, '\0'};
35 png_byte FARDATA png_hIST
[5] = {104, 73, 83, 84, '\0'};
36 png_byte FARDATA png_oFFs
[5] = {111, 70, 70, 115, '\0'};
37 png_byte FARDATA png_pCAL
[5] = {112, 67, 65, 76, '\0'};
38 png_byte FARDATA png_pHYs
[5] = {112, 72, 89, 115, '\0'};
39 png_byte FARDATA png_sBIT
[5] = {115, 66, 73, 84, '\0'};
40 png_byte FARDATA png_sRGB
[5] = {115, 82, 71, 66, '\0'};
41 png_byte FARDATA png_tEXt
[5] = {116, 69, 88, 116, '\0'};
42 png_byte FARDATA png_tIME
[5] = {116, 73, 77, 69, '\0'};
43 png_byte FARDATA png_tRNS
[5] = {116, 82, 78, 83, '\0'};
44 png_byte FARDATA png_zTXt
[5] = {122, 84, 88, 116, '\0'};
46 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
48 /* start of interlace block */
49 int FARDATA png_pass_start
[] = {0, 4, 0, 2, 0, 1, 0};
51 /* offset to next interlace block */
52 int FARDATA png_pass_inc
[] = {8, 8, 4, 4, 2, 2, 1};
54 /* start of interlace block in the y direction */
55 int FARDATA png_pass_ystart
[] = {0, 0, 4, 0, 2, 0, 1};
57 /* offset to next interlace block in the y direction */
58 int FARDATA png_pass_yinc
[] = {8, 8, 8, 4, 4, 2, 2};
60 /* Width of interlace block. This is not currently used - if you need
61 * it, uncomment it here and in png.h
62 int FARDATA png_pass_width[] = {8, 4, 4, 2, 2, 1, 1};
65 /* Height of interlace block. This is not currently used - if you need
66 * it, uncomment it here and in png.h
67 int FARDATA png_pass_height[] = {8, 8, 4, 4, 2, 2, 1};
70 /* Mask to determine which pixels are valid in a pass */
71 int FARDATA png_pass_mask
[] = {0x80, 0x08, 0x88, 0x22, 0xaa, 0x55, 0xff};
73 /* Mask to determine which pixels to overwrite while displaying */
74 int FARDATA png_pass_dsp_mask
[] = {0xff, 0x0f, 0xff, 0x33, 0xff, 0x55, 0xff};
77 /* Tells libpng that we have already handled the first "num_bytes" bytes
78 * of the PNG file signature. If the PNG data is embedded into another
79 * stream we can set num_bytes = 8 so that libpng will not attempt to read
80 * or write any of the magic bytes before it starts on the IHDR.
83 png_set_sig_bytes(png_structp png_ptr
, int num_bytes
)
85 png_debug(1, "in png_set_sig_bytes\n");
87 png_error(png_ptr
, "Too many bytes for PNG signature.");
89 png_ptr
->sig_bytes
= num_bytes
< 0 ? 0 : num_bytes
;
92 /* Checks whether the supplied bytes match the PNG signature. We allow
93 * checking less than the full 8-byte signature so that those apps that
94 * already read the first few bytes of a file to determine the file type
95 * can simply check the remaining bytes for extra assurance. Returns
96 * an integer less than, equal to, or greater than zero if sig is found,
97 * respectively, to be less than, to match, or be greater than the correct
98 * PNG signature (this is the same behaviour as strcmp, memcmp, etc).
101 png_sig_cmp(png_bytep sig
, png_size_t start
, png_size_t num_to_check
)
103 if (num_to_check
> 8)
105 else if (num_to_check
< 1)
111 if (start
+ num_to_check
> 8)
112 num_to_check
= 8 - start
;
114 return ((int)(png_memcmp(&sig
[start
], &png_sig
[start
], num_to_check
)));
117 /* (Obsolete) function to check signature bytes. It does not allow one
118 * to check a partial signature. This function will be removed in the
119 * future - use png_sig_cmp().
122 png_check_sig(png_bytep sig
, int num
)
124 return ((int)!png_sig_cmp(sig
, (png_size_t
)0, (png_size_t
)num
));
127 /* Function to allocate memory for zlib. */
129 png_zalloc(voidpf png_ptr
, uInt items
, uInt size
)
132 png_uint_32 num_bytes
;
134 num_bytes
= (png_uint_32
)items
* size
;
135 ptr
= (png_voidp
)png_malloc((png_structp
)png_ptr
, num_bytes
);
136 if (num_bytes
> (png_uint_32
)0x8000)
138 png_memset(ptr
, 0, (png_size_t
)0x8000L
);
139 png_memset((png_bytep
)ptr
+ (png_size_t
)0x8000L
, 0,
140 (png_size_t
)(num_bytes
- (png_uint_32
)0x8000L
));
144 png_memset(ptr
, 0, (png_size_t
)num_bytes
);
146 return ((voidpf
)ptr
);
149 /* function to free memory for zlib */
151 png_zfree(voidpf png_ptr
, voidpf ptr
)
153 png_free((png_structp
)png_ptr
, (png_voidp
)ptr
);
156 /* Reset the CRC variable to 32 bits of 1's. Care must be taken
157 * in case CRC is > 32 bits to leave the top bits 0.
160 png_reset_crc(png_structp png_ptr
)
162 png_ptr
->crc
= crc32(0, Z_NULL
, 0);
165 /* Calculate the CRC over a section of data. We can only pass as
166 * much data to this routine as the largest single buffer size. We
167 * also check that this data will actually be used before going to the
168 * trouble of calculating it.
171 png_calculate_crc(png_structp png_ptr
, png_bytep ptr
, png_size_t length
)
175 if (png_ptr
->chunk_name
[0] & 0x20) /* ancillary */
177 if ((png_ptr
->flags
& PNG_FLAG_CRC_ANCILLARY_MASK
) ==
178 (PNG_FLAG_CRC_ANCILLARY_USE
| PNG_FLAG_CRC_ANCILLARY_NOWARN
))
183 if (png_ptr
->flags
& PNG_FLAG_CRC_CRITICAL_IGNORE
)
188 png_ptr
->crc
= crc32(png_ptr
->crc
, ptr
, (uInt
)length
);
191 /* Allocate the memory for an info_struct for the application. We don't
192 * really need the png_ptr, but it could potentially be useful in the
193 * future. This should be used in favour of malloc(sizeof(png_info))
194 * and png_info_init() so that applications that want to use a shared
195 * libpng don't have to be recompiled if png_info changes size.
198 png_create_info_struct(png_structp png_ptr
)
202 png_debug(1, "in png_create_info_struct\n");
203 if(png_ptr
== NULL
) return (NULL
);
204 if ((info_ptr
= (png_infop
)png_create_struct(PNG_STRUCT_INFO
)) != NULL
)
206 png_info_init(info_ptr
);
212 /* This function frees the memory associated with a single info struct.
213 * Normally, one would use either png_destroy_read_struct() or
214 * png_destroy_write_struct() to free an info struct, but this may be
215 * useful for some applications.
218 png_destroy_info_struct(png_structp png_ptr
, png_infopp info_ptr_ptr
)
220 png_infop info_ptr
= NULL
;
222 png_debug(1, "in png_destroy_info_struct\n");
223 if (info_ptr_ptr
!= NULL
)
224 info_ptr
= *info_ptr_ptr
;
226 if (info_ptr
!= NULL
)
228 png_info_destroy(png_ptr
, info_ptr
);
230 png_destroy_struct((png_voidp
)info_ptr
);
231 *info_ptr_ptr
= (png_infop
)NULL
;
235 /* Initialize the info structure. This is now an internal function (0.89)
236 * and applications using it are urged to use png_create_info_struct()
240 png_info_init(png_infop info_ptr
)
242 png_debug(1, "in png_info_init\n");
243 /* set everything to 0 */
244 png_memset(info_ptr
, 0, sizeof (png_info
));
247 /* This is an internal routine to free any memory that the info struct is
248 * pointing to before re-using it or freeing the struct itself. Recall
249 * that png_free() checks for NULL pointers for us.
252 png_info_destroy(png_structp png_ptr
, png_infop info_ptr
)
254 #if defined(PNG_READ_tEXt_SUPPORTED) || defined(PNG_READ_zTXt_SUPPORTED)
257 png_debug(1, "in png_info_destroy\n");
258 if (info_ptr
->text
!= NULL
)
260 for (i
= 0; i
< info_ptr
->num_text
; i
++)
262 png_free(png_ptr
, info_ptr
->text
[i
].key
);
264 png_free(png_ptr
, info_ptr
->text
);
267 #if defined(PNG_READ_pCAL_SUPPORTED)
268 png_free(png_ptr
, info_ptr
->pcal_purpose
);
269 png_free(png_ptr
, info_ptr
->pcal_units
);
270 if (info_ptr
->pcal_params
!= NULL
)
272 for (i
= 0; i
< (int)info_ptr
->pcal_nparams
; i
++)
274 png_free(png_ptr
, info_ptr
->pcal_params
[i
]);
276 png_free(png_ptr
, info_ptr
->pcal_params
);
280 png_info_init(info_ptr
);
283 /* This function returns a pointer to the io_ptr associated with the user
284 * functions. The application should free any memory associated with this
285 * pointer before png_write_destroy() or png_read_destroy() are called.
288 png_get_io_ptr(png_structp png_ptr
)
290 return (png_ptr
->io_ptr
);
293 #if !defined(PNG_NO_STDIO)
294 /* Initialize the default input/output functions for the PNG file. If you
295 * use your own read or write routines, you can call either png_set_read_fn()
296 * or png_set_write_fn() instead of png_init_io().
299 png_init_io(png_structp png_ptr
, FILE *fp
)
301 png_debug(1, "in png_init_io\n");
302 png_ptr
->io_ptr
= (png_voidp
)fp
;