]> git.saurik.com Git - wxWidgets.git/blame - src/png/libpng-1.2.34.txt
No real changes, just use KF_EXTENDED instead of hard-coded bit mask.
[wxWidgets.git] / src / png / libpng-1.2.34.txt
CommitLineData
970f6abe
VZ
1libpng.txt - A description on how to use and modify libpng
2
3 libpng version 1.2.34 - December 18, 2008
4 Updated and distributed by Glenn Randers-Pehrson
5 <glennrp at users.sourceforge.net>
6 Copyright (c) 1998-2008 Glenn Randers-Pehrson
7 For conditions of distribution and use, see copyright
8 notice in png.h.
9
10 Based on:
11
12 libpng versions 0.97, January 1998, through 1.2.34 - December 18, 2008
13 Updated and distributed by Glenn Randers-Pehrson
14 Copyright (c) 1998-2008 Glenn Randers-Pehrson
15
16 libpng 1.0 beta 6 version 0.96 May 28, 1997
17 Updated and distributed by Andreas Dilger
18 Copyright (c) 1996, 1997 Andreas Dilger
19
20 libpng 1.0 beta 2 - version 0.88 January 26, 1996
21 For conditions of distribution and use, see copyright
22 notice in png.h. Copyright (c) 1995, 1996 Guy Eric
23 Schalnat, Group 42, Inc.
24
25 Updated/rewritten per request in the libpng FAQ
26 Copyright (c) 1995, 1996 Frank J. T. Wojcik
27 December 18, 1995 & January 20, 1996
28
29I. Introduction
30
31This file describes how to use and modify the PNG reference library
32(known as libpng) for your own use. There are five sections to this
33file: introduction, structures, reading, writing, and modification and
34configuration notes for various special platforms. In addition to this
35file, example.c is a good starting point for using the library, as
36it is heavily commented and should include everything most people
37will need. We assume that libpng is already installed; see the
38INSTALL file for instructions on how to install libpng.
39
40For examples of libpng usage, see the files "example.c", "pngtest.c",
41and the files in the "contrib" directory, all of which are included in the
42libpng distribution.
43
44Libpng was written as a companion to the PNG specification, as a way
45of reducing the amount of time and effort it takes to support the PNG
46file format in application programs.
47
48The PNG specification (second edition), November 2003, is available as
49a W3C Recommendation and as an ISO Standard (ISO/IEC 15948:2003 (E)) at
50<http://www.w3.org/TR/2003/REC-PNG-20031110/
51The W3C and ISO documents have identical technical content.
52
53The PNG-1.2 specification is available at
54<http://www.libpng.org/pub/png/documents/>. It is technically equivalent
55to the PNG specification (second edition) but has some additional material.
56
57The PNG-1.0 specification is available
58as RFC 2083 <http://www.libpng.org/pub/png/documents/> and as a
59W3C Recommendation <http://www.w3.org/TR/REC.png.html>.
60
61Some additional chunks are described in the special-purpose public chunks
62documents at <http://www.libpng.org/pub/png/documents/>.
63
64Other information
65about PNG, and the latest version of libpng, can be found at the PNG home
66page, <http://www.libpng.org/pub/png/>.
67
68Most users will not have to modify the library significantly; advanced
69users may want to modify it more. All attempts were made to make it as
70complete as possible, while keeping the code easy to understand.
71Currently, this library only supports C. Support for other languages
72is being considered.
73
74Libpng has been designed to handle multiple sessions at one time,
75to be easily modifiable, to be portable to the vast majority of
76machines (ANSI, K&R, 16-, 32-, and 64-bit) available, and to be easy
77to use. The ultimate goal of libpng is to promote the acceptance of
78the PNG file format in whatever way possible. While there is still
79work to be done (see the TODO file), libpng should cover the
80majority of the needs of its users.
81
82Libpng uses zlib for its compression and decompression of PNG files.
83Further information about zlib, and the latest version of zlib, can
84be found at the zlib home page, <http://www.info-zip.org/pub/infozip/zlib/>.
85The zlib compression utility is a general purpose utility that is
86useful for more than PNG files, and can be used without libpng.
87See the documentation delivered with zlib for more details.
88You can usually find the source files for the zlib utility wherever you
89find the libpng source files.
90
91Libpng is thread safe, provided the threads are using different
92instances of the structures. Each thread should have its own
93png_struct and png_info instances, and thus its own image.
94Libpng does not protect itself against two threads using the
95same instance of a structure.
96
97II. Structures
98
99There are two main structures that are important to libpng, png_struct
100and png_info. The first, png_struct, is an internal structure that
101will not, for the most part, be used by a user except as the first
102variable passed to every libpng function call.
103
104The png_info structure is designed to provide information about the
105PNG file. At one time, the fields of png_info were intended to be
106directly accessible to the user. However, this tended to cause problems
107with applications using dynamically loaded libraries, and as a result
108a set of interface functions for png_info (the png_get_*() and png_set_*()
109functions) was developed. The fields of png_info are still available for
110older applications, but it is suggested that applications use the new
111interfaces if at all possible.
112
113Applications that do make direct access to the members of png_struct (except
114for png_ptr->jmpbuf) must be recompiled whenever the library is updated,
115and applications that make direct access to the members of png_info must
116be recompiled if they were compiled or loaded with libpng version 1.0.6,
117in which the members were in a different order. In version 1.0.7, the
118members of the png_info structure reverted to the old order, as they were
119in versions 0.97c through 1.0.5. Starting with version 2.0.0, both
120structures are going to be hidden, and the contents of the structures will
121only be accessible through the png_get/png_set functions.
122
123The png.h header file is an invaluable reference for programming with libpng.
124And while I'm on the topic, make sure you include the libpng header file:
125
126#include <png.h>
127
128III. Reading
129
130We'll now walk you through the possible functions to call when reading
131in a PNG file sequentially, briefly explaining the syntax and purpose
132of each one. See example.c and png.h for more detail. While
133progressive reading is covered in the next section, you will still
134need some of the functions discussed in this section to read a PNG
135file.
136
137Setup
138
139You will want to do the I/O initialization(*) before you get into libpng,
140so if it doesn't work, you don't have much to undo. Of course, you
141will also want to insure that you are, in fact, dealing with a PNG
142file. Libpng provides a simple check to see if a file is a PNG file.
143To use it, pass in the first 1 to 8 bytes of the file to the function
144png_sig_cmp(), and it will return 0 if the bytes match the corresponding
145bytes of the PNG signature, or nonzero otherwise. Of course, the more bytes
146you pass in, the greater the accuracy of the prediction.
147
148If you are intending to keep the file pointer open for use in libpng,
149you must ensure you don't read more than 8 bytes from the beginning
150of the file, and you also have to make a call to png_set_sig_bytes_read()
151with the number of bytes you read from the beginning. Libpng will
152then only check the bytes (if any) that your program didn't read.
153
154(*): If you are not using the standard I/O functions, you will need
155to replace them with custom functions. See the discussion under
156Customizing libpng.
157
158
159 FILE *fp = fopen(file_name, "rb");
160 if (!fp)
161 {
162 return (ERROR);
163 }
164 fread(header, 1, number, fp);
165 is_png = !png_sig_cmp(header, 0, number);
166 if (!is_png)
167 {
168 return (NOT_PNG);
169 }
170
171
172Next, png_struct and png_info need to be allocated and initialized. In
173order to ensure that the size of these structures is correct even with a
174dynamically linked libpng, there are functions to initialize and
175allocate the structures. We also pass the library version, optional
176pointers to error handling functions, and a pointer to a data struct for
177use by the error functions, if necessary (the pointer and functions can
178be NULL if the default error handlers are to be used). See the section
179on Changes to Libpng below regarding the old initialization functions.
180The structure allocation functions quietly return NULL if they fail to
181create the structure, so your application should check for that.
182
183 png_structp png_ptr = png_create_read_struct
184 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
185 user_error_fn, user_warning_fn);
186 if (!png_ptr)
187 return (ERROR);
188
189 png_infop info_ptr = png_create_info_struct(png_ptr);
190 if (!info_ptr)
191 {
192 png_destroy_read_struct(&png_ptr,
193 (png_infopp)NULL, (png_infopp)NULL);
194 return (ERROR);
195 }
196
197 png_infop end_info = png_create_info_struct(png_ptr);
198 if (!end_info)
199 {
200 png_destroy_read_struct(&png_ptr, &info_ptr,
201 (png_infopp)NULL);
202 return (ERROR);
203 }
204
205If you want to use your own memory allocation routines,
206define PNG_USER_MEM_SUPPORTED and use
207png_create_read_struct_2() instead of png_create_read_struct():
208
209 png_structp png_ptr = png_create_read_struct_2
210 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
211 user_error_fn, user_warning_fn, (png_voidp)
212 user_mem_ptr, user_malloc_fn, user_free_fn);
213
214The error handling routines passed to png_create_read_struct()
215and the memory alloc/free routines passed to png_create_struct_2()
216are only necessary if you are not using the libpng supplied error
217handling and memory alloc/free functions.
218
219When libpng encounters an error, it expects to longjmp back
220to your routine. Therefore, you will need to call setjmp and pass
221your png_jmpbuf(png_ptr). If you read the file from different
222routines, you will need to update the jmpbuf field every time you enter
223a new routine that will call a png_*() function.
224
225See your documentation of setjmp/longjmp for your compiler for more
226information on setjmp/longjmp. See the discussion on libpng error
227handling in the Customizing Libpng section below for more information
228on the libpng error handling. If an error occurs, and libpng longjmp's
229back to your setjmp, you will want to call png_destroy_read_struct() to
230free any memory.
231
232 if (setjmp(png_jmpbuf(png_ptr)))
233 {
234 png_destroy_read_struct(&png_ptr, &info_ptr,
235 &end_info);
236 fclose(fp);
237 return (ERROR);
238 }
239
240If you would rather avoid the complexity of setjmp/longjmp issues,
241you can compile libpng with PNG_SETJMP_NOT_SUPPORTED, in which case
242errors will result in a call to PNG_ABORT() which defaults to abort().
243
244Now you need to set up the input code. The default for libpng is to
245use the C function fread(). If you use this, you will need to pass a
246valid FILE * in the function png_init_io(). Be sure that the file is
247opened in binary mode. If you wish to handle reading data in another
248way, you need not call the png_init_io() function, but you must then
249implement the libpng I/O methods discussed in the Customizing Libpng
250section below.
251
252 png_init_io(png_ptr, fp);
253
254If you had previously opened the file and read any of the signature from
255the beginning in order to see if this was a PNG file, you need to let
256libpng know that there are some bytes missing from the start of the file.
257
258 png_set_sig_bytes(png_ptr, number);
259
260Setting up callback code
261
262You can set up a callback function to handle any unknown chunks in the
263input stream. You must supply the function
264
265 read_chunk_callback(png_ptr ptr,
266 png_unknown_chunkp chunk);
267 {
268 /* The unknown chunk structure contains your
269 chunk data, along with similar data for any other
270 unknown chunks: */
271
272 png_byte name[5];
273 png_byte *data;
274 png_size_t size;
275
276 /* Note that libpng has already taken care of
277 the CRC handling */
278
279 /* put your code here. Search for your chunk in the
280 unknown chunk structure, process it, and return one
281 of the following: */
282
283 return (-n); /* chunk had an error */
284 return (0); /* did not recognize */
285 return (n); /* success */
286 }
287
288(You can give your function another name that you like instead of
289"read_chunk_callback")
290
291To inform libpng about your function, use
292
293 png_set_read_user_chunk_fn(png_ptr, user_chunk_ptr,
294 read_chunk_callback);
295
296This names not only the callback function, but also a user pointer that
297you can retrieve with
298
299 png_get_user_chunk_ptr(png_ptr);
300
301If you call the png_set_read_user_chunk_fn() function, then all unknown
302chunks will be saved when read, in case your callback function will need
303one or more of them. This behavior can be changed with the
304png_set_keep_unknown_chunks() function, described below.
305
306At this point, you can set up a callback function that will be
307called after each row has been read, which you can use to control
308a progress meter or the like. It's demonstrated in pngtest.c.
309You must supply a function
310
311 void read_row_callback(png_ptr ptr, png_uint_32 row,
312 int pass);
313 {
314 /* put your code here */
315 }
316
317(You can give it another name that you like instead of "read_row_callback")
318
319To inform libpng about your function, use
320
321 png_set_read_status_fn(png_ptr, read_row_callback);
322
323Width and height limits
324
325The PNG specification allows the width and height of an image to be as
326large as 2^31-1 (0x7fffffff), or about 2.147 billion rows and columns.
327Since very few applications really need to process such large images,
328we have imposed an arbitrary 1-million limit on rows and columns.
329Larger images will be rejected immediately with a png_error() call. If
330you wish to override this limit, you can use
331
332 png_set_user_limits(png_ptr, width_max, height_max);
333
334to set your own limits, or use width_max = height_max = 0x7fffffffL
335to allow all valid dimensions (libpng may reject some very large images
336anyway because of potential buffer overflow conditions).
337
338You should put this statement after you create the PNG structure and
339before calling png_read_info(), png_read_png(), or png_process_data().
340If you need to retrieve the limits that are being applied, use
341
342 width_max = png_get_user_width_max(png_ptr);
343 height_max = png_get_user_height_max(png_ptr);
344
345Unknown-chunk handling
346
347Now you get to set the way the library processes unknown chunks in the
348input PNG stream. Both known and unknown chunks will be read. Normal
349behavior is that known chunks will be parsed into information in
350various info_ptr members while unknown chunks will be discarded. This
351behavior can be wasteful if your application will never use some known
352chunk types. To change this, you can call:
353
354 png_set_keep_unknown_chunks(png_ptr, keep,
355 chunk_list, num_chunks);
356 keep - 0: default unknown chunk handling
357 1: ignore; do not keep
358 2: keep only if safe-to-copy
359 3: keep even if unsafe-to-copy
360 You can use these definitions:
361 PNG_HANDLE_CHUNK_AS_DEFAULT 0
362 PNG_HANDLE_CHUNK_NEVER 1
363 PNG_HANDLE_CHUNK_IF_SAFE 2
364 PNG_HANDLE_CHUNK_ALWAYS 3
365 chunk_list - list of chunks affected (a byte string,
366 five bytes per chunk, NULL or '\0' if
367 num_chunks is 0)
368 num_chunks - number of chunks affected; if 0, all
369 unknown chunks are affected. If nonzero,
370 only the chunks in the list are affected
371
372Unknown chunks declared in this way will be saved as raw data onto a
373list of png_unknown_chunk structures. If a chunk that is normally
374known to libpng is named in the list, it will be handled as unknown,
375according to the "keep" directive. If a chunk is named in successive
376instances of png_set_keep_unknown_chunks(), the final instance will
377take precedence. The IHDR and IEND chunks should not be named in
378chunk_list; if they are, libpng will process them normally anyway.
379
380Here is an example of the usage of png_set_keep_unknown_chunks(),
381where the private "vpAg" chunk will later be processed by a user chunk
382callback function:
383
384 png_byte vpAg[5]={118, 112, 65, 103, (png_byte) '\0'};
385
386 #if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
387 png_byte unused_chunks[]=
388 {
389 104, 73, 83, 84, (png_byte) '\0', /* hIST */
390 105, 84, 88, 116, (png_byte) '\0', /* iTXt */
391 112, 67, 65, 76, (png_byte) '\0', /* pCAL */
392 115, 67, 65, 76, (png_byte) '\0', /* sCAL */
393 115, 80, 76, 84, (png_byte) '\0', /* sPLT */
394 116, 73, 77, 69, (png_byte) '\0', /* tIME */
395 };
396 #endif
397
398 ...
399
400 #if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
401 /* ignore all unknown chunks: */
402 png_set_keep_unknown_chunks(read_ptr, 1, NULL, 0);
403 /* except for vpAg: */
404 png_set_keep_unknown_chunks(read_ptr, 2, vpAg, 1);
405 /* also ignore unused known chunks: */
406 png_set_keep_unknown_chunks(read_ptr, 1, unused_chunks,
407 (int)sizeof(unused_chunks)/5);
408 #endif
409
410
411The high-level read interface
412
413At this point there are two ways to proceed; through the high-level
414read interface, or through a sequence of low-level read operations.
415You can use the high-level interface if (a) you are willing to read
416the entire image into memory, and (b) the input transformations
417you want to do are limited to the following set:
418
419 PNG_TRANSFORM_IDENTITY No transformation
420 PNG_TRANSFORM_STRIP_16 Strip 16-bit samples to
421 8 bits
422 PNG_TRANSFORM_STRIP_ALPHA Discard the alpha channel
423 PNG_TRANSFORM_PACKING Expand 1, 2 and 4-bit
424 samples to bytes
425 PNG_TRANSFORM_PACKSWAP Change order of packed
426 pixels to LSB first
427 PNG_TRANSFORM_EXPAND Perform set_expand()
428 PNG_TRANSFORM_INVERT_MONO Invert monochrome images
429 PNG_TRANSFORM_SHIFT Normalize pixels to the
430 sBIT depth
431 PNG_TRANSFORM_BGR Flip RGB to BGR, RGBA
432 to BGRA
433 PNG_TRANSFORM_SWAP_ALPHA Flip RGBA to ARGB or GA
434 to AG
435 PNG_TRANSFORM_INVERT_ALPHA Change alpha from opacity
436 to transparency
437 PNG_TRANSFORM_SWAP_ENDIAN Byte-swap 16-bit samples
438
439(This excludes setting a background color, doing gamma transformation,
440dithering, and setting filler.) If this is the case, simply do this:
441
442 png_read_png(png_ptr, info_ptr, png_transforms, NULL)
443
444where png_transforms is an integer containing the bitwise OR of
445some set of transformation flags. This call is equivalent to png_read_info(),
446followed the set of transformations indicated by the transform mask,
447then png_read_image(), and finally png_read_end().
448
449(The final parameter of this call is not yet used. Someday it might point
450to transformation parameters required by some future input transform.)
451
452You must use png_transforms and not call any png_set_transform() functions
453when you use png_read_png().
454
455After you have called png_read_png(), you can retrieve the image data
456with
457
458 row_pointers = png_get_rows(png_ptr, info_ptr);
459
460where row_pointers is an array of pointers to the pixel data for each row:
461
462 png_bytep row_pointers[height];
463
464If you know your image size and pixel size ahead of time, you can allocate
465row_pointers prior to calling png_read_png() with
466
467 if (height > PNG_UINT_32_MAX/png_sizeof(png_byte))
468 png_error (png_ptr,
469 "Image is too tall to process in memory");
470 if (width > PNG_UINT_32_MAX/pixel_size)
471 png_error (png_ptr,
472 "Image is too wide to process in memory");
473 row_pointers = png_malloc(png_ptr,
474 height*png_sizeof(png_bytep));
475 for (int i=0; i<height, i++)
476 row_pointers[i]=png_malloc(png_ptr,
477 width*pixel_size);
478 png_set_rows(png_ptr, info_ptr, &row_pointers);
479
480Alternatively you could allocate your image in one big block and define
481row_pointers[i] to point into the proper places in your block.
482
483If you use png_set_rows(), the application is responsible for freeing
484row_pointers (and row_pointers[i], if they were separately allocated).
485
486If you don't allocate row_pointers ahead of time, png_read_png() will
487do it, and it'll be free'ed when you call png_destroy_*().
488
489The low-level read interface
490
491If you are going the low-level route, you are now ready to read all
492the file information up to the actual image data. You do this with a
493call to png_read_info().
494
495 png_read_info(png_ptr, info_ptr);
496
497This will process all chunks up to but not including the image data.
498
499Querying the info structure
500
501Functions are used to get the information from the info_ptr once it
502has been read. Note that these fields may not be completely filled
503in until png_read_end() has read the chunk data following the image.
504
505 png_get_IHDR(png_ptr, info_ptr, &width, &height,
506 &bit_depth, &color_type, &interlace_type,
507 &compression_type, &filter_method);
508
509 width - holds the width of the image
510 in pixels (up to 2^31).
511 height - holds the height of the image
512 in pixels (up to 2^31).
513 bit_depth - holds the bit depth of one of the
514 image channels. (valid values are
515 1, 2, 4, 8, 16 and depend also on
516 the color_type. See also
517 significant bits (sBIT) below).
518 color_type - describes which color/alpha channels
519 are present.
520 PNG_COLOR_TYPE_GRAY
521 (bit depths 1, 2, 4, 8, 16)
522 PNG_COLOR_TYPE_GRAY_ALPHA
523 (bit depths 8, 16)
524 PNG_COLOR_TYPE_PALETTE
525 (bit depths 1, 2, 4, 8)
526 PNG_COLOR_TYPE_RGB
527 (bit_depths 8, 16)
528 PNG_COLOR_TYPE_RGB_ALPHA
529 (bit_depths 8, 16)
530
531 PNG_COLOR_MASK_PALETTE
532 PNG_COLOR_MASK_COLOR
533 PNG_COLOR_MASK_ALPHA
534
535 filter_method - (must be PNG_FILTER_TYPE_BASE
536 for PNG 1.0, and can also be
537 PNG_INTRAPIXEL_DIFFERENCING if
538 the PNG datastream is embedded in
539 a MNG-1.0 datastream)
540 compression_type - (must be PNG_COMPRESSION_TYPE_BASE
541 for PNG 1.0)
542 interlace_type - (PNG_INTERLACE_NONE or
543 PNG_INTERLACE_ADAM7)
544 Any or all of interlace_type, compression_type, of
545 filter_method can be NULL if you are
546 not interested in their values.
547
548 channels = png_get_channels(png_ptr, info_ptr);
549 channels - number of channels of info for the
550 color type (valid values are 1 (GRAY,
551 PALETTE), 2 (GRAY_ALPHA), 3 (RGB),
552 4 (RGB_ALPHA or RGB + filler byte))
553 rowbytes = png_get_rowbytes(png_ptr, info_ptr);
554 rowbytes - number of bytes needed to hold a row
555
556 signature = png_get_signature(png_ptr, info_ptr);
557 signature - holds the signature read from the
558 file (if any). The data is kept in
559 the same offset it would be if the
560 whole signature were read (i.e. if an
561 application had already read in 4
562 bytes of signature before starting
563 libpng, the remaining 4 bytes would
564 be in signature[4] through signature[7]
565 (see png_set_sig_bytes())).
566
567
568 width = png_get_image_width(png_ptr,
569 info_ptr);
570 height = png_get_image_height(png_ptr,
571 info_ptr);
572 bit_depth = png_get_bit_depth(png_ptr,
573 info_ptr);
574 color_type = png_get_color_type(png_ptr,
575 info_ptr);
576 filter_method = png_get_filter_type(png_ptr,
577 info_ptr);
578 compression_type = png_get_compression_type(png_ptr,
579 info_ptr);
580 interlace_type = png_get_interlace_type(png_ptr,
581 info_ptr);
582
583
584These are also important, but their validity depends on whether the chunk
585has been read. The png_get_valid(png_ptr, info_ptr, PNG_INFO_<chunk>) and
586png_get_<chunk>(png_ptr, info_ptr, ...) functions return non-zero if the
587data has been read, or zero if it is missing. The parameters to the
588png_get_<chunk> are set directly if they are simple data types, or a pointer
589into the info_ptr is returned for any complex types.
590
591 png_get_PLTE(png_ptr, info_ptr, &palette,
592 &num_palette);
593 palette - the palette for the file
594 (array of png_color)
595 num_palette - number of entries in the palette
596
597 png_get_gAMA(png_ptr, info_ptr, &gamma);
598 gamma - the gamma the file is written
599 at (PNG_INFO_gAMA)
600
601 png_get_sRGB(png_ptr, info_ptr, &srgb_intent);
602 srgb_intent - the rendering intent (PNG_INFO_sRGB)
603 The presence of the sRGB chunk
604 means that the pixel data is in the
605 sRGB color space. This chunk also
606 implies specific values of gAMA and
607 cHRM.
608
609 png_get_iCCP(png_ptr, info_ptr, &name,
610 &compression_type, &profile, &proflen);
611 name - The profile name.
612 compression - The compression type; always
613 PNG_COMPRESSION_TYPE_BASE for PNG 1.0.
614 You may give NULL to this argument to
615 ignore it.
616 profile - International Color Consortium color
617 profile data. May contain NULs.
618 proflen - length of profile data in bytes.
619
620 png_get_sBIT(png_ptr, info_ptr, &sig_bit);
621 sig_bit - the number of significant bits for
622 (PNG_INFO_sBIT) each of the gray,
623 red, green, and blue channels,
624 whichever are appropriate for the
625 given color type (png_color_16)
626
627 png_get_tRNS(png_ptr, info_ptr, &trans, &num_trans,
628 &trans_values);
629 trans - array of transparent entries for
630 palette (PNG_INFO_tRNS)
631 trans_values - graylevel or color sample values of
632 the single transparent color for
633 non-paletted images (PNG_INFO_tRNS)
634 num_trans - number of transparent entries
635 (PNG_INFO_tRNS)
636
637 png_get_hIST(png_ptr, info_ptr, &hist);
638 (PNG_INFO_hIST)
639 hist - histogram of palette (array of
640 png_uint_16)
641
642 png_get_tIME(png_ptr, info_ptr, &mod_time);
643 mod_time - time image was last modified
644 (PNG_VALID_tIME)
645
646 png_get_bKGD(png_ptr, info_ptr, &background);
647 background - background color (PNG_VALID_bKGD)
648 valid 16-bit red, green and blue
649 values, regardless of color_type
650
651 num_comments = png_get_text(png_ptr, info_ptr,
652 &text_ptr, &num_text);
653 num_comments - number of comments
654 text_ptr - array of png_text holding image
655 comments
656 text_ptr[i].compression - type of compression used
657 on "text" PNG_TEXT_COMPRESSION_NONE
658 PNG_TEXT_COMPRESSION_zTXt
659 PNG_ITXT_COMPRESSION_NONE
660 PNG_ITXT_COMPRESSION_zTXt
661 text_ptr[i].key - keyword for comment. Must contain
662 1-79 characters.
663 text_ptr[i].text - text comments for current
664 keyword. Can be empty.
665 text_ptr[i].text_length - length of text string,
666 after decompression, 0 for iTXt
667 text_ptr[i].itxt_length - length of itxt string,
668 after decompression, 0 for tEXt/zTXt
669 text_ptr[i].lang - language of comment (empty
670 string for unknown).
671 text_ptr[i].lang_key - keyword in UTF-8
672 (empty string for unknown).
673 num_text - number of comments (same as
674 num_comments; you can put NULL here
675 to avoid the duplication)
676 Note while png_set_text() will accept text, language,
677 and translated keywords that can be NULL pointers, the
678 structure returned by png_get_text will always contain
679 regular zero-terminated C strings. They might be
680 empty strings but they will never be NULL pointers.
681
682 num_spalettes = png_get_sPLT(png_ptr, info_ptr,
683 &palette_ptr);
684 palette_ptr - array of palette structures holding
685 contents of one or more sPLT chunks
686 read.
687 num_spalettes - number of sPLT chunks read.
688
689 png_get_oFFs(png_ptr, info_ptr, &offset_x, &offset_y,
690 &unit_type);
691 offset_x - positive offset from the left edge
692 of the screen
693 offset_y - positive offset from the top edge
694 of the screen
695 unit_type - PNG_OFFSET_PIXEL, PNG_OFFSET_MICROMETER
696
697 png_get_pHYs(png_ptr, info_ptr, &res_x, &res_y,
698 &unit_type);
699 res_x - pixels/unit physical resolution in
700 x direction
701 res_y - pixels/unit physical resolution in
702 x direction
703 unit_type - PNG_RESOLUTION_UNKNOWN,
704 PNG_RESOLUTION_METER
705
706 png_get_sCAL(png_ptr, info_ptr, &unit, &width,
707 &height)
708 unit - physical scale units (an integer)
709 width - width of a pixel in physical scale units
710 height - height of a pixel in physical scale units
711 (width and height are doubles)
712
713 png_get_sCAL_s(png_ptr, info_ptr, &unit, &width,
714 &height)
715 unit - physical scale units (an integer)
716 width - width of a pixel in physical scale units
717 height - height of a pixel in physical scale units
718 (width and height are strings like "2.54")
719
720 num_unknown_chunks = png_get_unknown_chunks(png_ptr,
721 info_ptr, &unknowns)
722 unknowns - array of png_unknown_chunk
723 structures holding unknown chunks
724 unknowns[i].name - name of unknown chunk
725 unknowns[i].data - data of unknown chunk
726 unknowns[i].size - size of unknown chunk's data
727 unknowns[i].location - position of chunk in file
728
729 The value of "i" corresponds to the order in which the
730 chunks were read from the PNG file or inserted with the
731 png_set_unknown_chunks() function.
732
733The data from the pHYs chunk can be retrieved in several convenient
734forms:
735
736 res_x = png_get_x_pixels_per_meter(png_ptr,
737 info_ptr)
738 res_y = png_get_y_pixels_per_meter(png_ptr,
739 info_ptr)
740 res_x_and_y = png_get_pixels_per_meter(png_ptr,
741 info_ptr)
742 res_x = png_get_x_pixels_per_inch(png_ptr,
743 info_ptr)
744 res_y = png_get_y_pixels_per_inch(png_ptr,
745 info_ptr)
746 res_x_and_y = png_get_pixels_per_inch(png_ptr,
747 info_ptr)
748 aspect_ratio = png_get_pixel_aspect_ratio(png_ptr,
749 info_ptr)
750
751 (Each of these returns 0 [signifying "unknown"] if
752 the data is not present or if res_x is 0;
753 res_x_and_y is 0 if res_x != res_y)
754
755The data from the oFFs chunk can be retrieved in several convenient
756forms:
757
758 x_offset = png_get_x_offset_microns(png_ptr, info_ptr);
759 y_offset = png_get_y_offset_microns(png_ptr, info_ptr);
760 x_offset = png_get_x_offset_inches(png_ptr, info_ptr);
761 y_offset = png_get_y_offset_inches(png_ptr, info_ptr);
762
763 (Each of these returns 0 [signifying "unknown" if both
764 x and y are 0] if the data is not present or if the
765 chunk is present but the unit is the pixel)
766
767For more information, see the png_info definition in png.h and the
768PNG specification for chunk contents. Be careful with trusting
769rowbytes, as some of the transformations could increase the space
770needed to hold a row (expand, filler, gray_to_rgb, etc.).
771See png_read_update_info(), below.
772
773A quick word about text_ptr and num_text. PNG stores comments in
774keyword/text pairs, one pair per chunk, with no limit on the number
775of text chunks, and a 2^31 byte limit on their size. While there are
776suggested keywords, there is no requirement to restrict the use to these
777strings. It is strongly suggested that keywords and text be sensible
778to humans (that's the point), so don't use abbreviations. Non-printing
779symbols are not allowed. See the PNG specification for more details.
780There is also no requirement to have text after the keyword.
781
782Keywords should be limited to 79 Latin-1 characters without leading or
783trailing spaces, but non-consecutive spaces are allowed within the
784keyword. It is possible to have the same keyword any number of times.
785The text_ptr is an array of png_text structures, each holding a
786pointer to a language string, a pointer to a keyword and a pointer to
787a text string. The text string, language code, and translated
788keyword may be empty or NULL pointers. The keyword/text
789pairs are put into the array in the order that they are received.
790However, some or all of the text chunks may be after the image, so, to
791make sure you have read all the text chunks, don't mess with these
792until after you read the stuff after the image. This will be
793mentioned again below in the discussion that goes with png_read_end().
794
795Input transformations
796
797After you've read the header information, you can set up the library
798to handle any special transformations of the image data. The various
799ways to transform the data will be described in the order that they
800should occur. This is important, as some of these change the color
801type and/or bit depth of the data, and some others only work on
802certain color types and bit depths. Even though each transformation
803checks to see if it has data that it can do something with, you should
804make sure to only enable a transformation if it will be valid for the
805data. For example, don't swap red and blue on grayscale data.
806
807The colors used for the background and transparency values should be
808supplied in the same format/depth as the current image data. They
809are stored in the same format/depth as the image data in a bKGD or tRNS
810chunk, so this is what libpng expects for this data. The colors are
811transformed to keep in sync with the image data when an application
812calls the png_read_update_info() routine (see below).
813
814Data will be decoded into the supplied row buffers packed into bytes
815unless the library has been told to transform it into another format.
816For example, 4 bit/pixel paletted or grayscale data will be returned
8172 pixels/byte with the leftmost pixel in the high-order bits of the
818byte, unless png_set_packing() is called. 8-bit RGB data will be stored
819in RGB RGB RGB format unless png_set_filler() or png_set_add_alpha()
820is called to insert filler bytes, either before or after each RGB triplet.
82116-bit RGB data will be returned RRGGBB RRGGBB, with the most significant
822byte of the color value first, unless png_set_strip_16() is called to
823transform it to regular RGB RGB triplets, or png_set_filler() or
824png_set_add alpha() is called to insert filler bytes, either before or
825after each RRGGBB triplet. Similarly, 8-bit or 16-bit grayscale data can
826be modified with
827png_set_filler(), png_set_add_alpha(), or png_set_strip_16().
828
829The following code transforms grayscale images of less than 8 to 8 bits,
830changes paletted images to RGB, and adds a full alpha channel if there is
831transparency information in a tRNS chunk. This is most useful on
832grayscale images with bit depths of 2 or 4 or if there is a multiple-image
833viewing application that wishes to treat all images in the same way.
834
835 if (color_type == PNG_COLOR_TYPE_PALETTE)
836 png_set_palette_to_rgb(png_ptr);
837
838 if (color_type == PNG_COLOR_TYPE_GRAY &&
839 bit_depth < 8) png_set_expand_gray_1_2_4_to_8(png_ptr);
840
841 if (png_get_valid(png_ptr, info_ptr,
842 PNG_INFO_tRNS)) png_set_tRNS_to_alpha(png_ptr);
843
844These three functions are actually aliases for png_set_expand(), added
845in libpng version 1.0.4, with the function names expanded to improve code
846readability. In some future version they may actually do different
847things.
848
849As of libpng version 1.2.9, png_set_expand_gray_1_2_4_to_8() was
850added. It expands the sample depth without changing tRNS to alpha.
851At the same time, png_set_gray_1_2_4_to_8() was deprecated, and it
852will be removed from a future version.
853
854
855PNG can have files with 16 bits per channel. If you only can handle
8568 bits per channel, this will strip the pixels down to 8 bit.
857
858 if (bit_depth == 16)
859 png_set_strip_16(png_ptr);
860
861If, for some reason, you don't need the alpha channel on an image,
862and you want to remove it rather than combining it with the background
863(but the image author certainly had in mind that you *would* combine
864it with the background, so that's what you should probably do):
865
866 if (color_type & PNG_COLOR_MASK_ALPHA)
867 png_set_strip_alpha(png_ptr);
868
869In PNG files, the alpha channel in an image
870is the level of opacity. If you need the alpha channel in an image to
871be the level of transparency instead of opacity, you can invert the
872alpha channel (or the tRNS chunk data) after it's read, so that 0 is
873fully opaque and 255 (in 8-bit or paletted images) or 65535 (in 16-bit
874images) is fully transparent, with
875
876 png_set_invert_alpha(png_ptr);
877
878PNG files pack pixels of bit depths 1, 2, and 4 into bytes as small as
879they can, resulting in, for example, 8 pixels per byte for 1 bit
880files. This code expands to 1 pixel per byte without changing the
881values of the pixels:
882
883 if (bit_depth < 8)
884 png_set_packing(png_ptr);
885
886PNG files have possible bit depths of 1, 2, 4, 8, and 16. All pixels
887stored in a PNG image have been "scaled" or "shifted" up to the next
888higher possible bit depth (e.g. from 5 bits/sample in the range [0,31] to
8898 bits/sample in the range [0, 255]). However, it is also possible to
890convert the PNG pixel data back to the original bit depth of the image.
891This call reduces the pixels back down to the original bit depth:
892
893 png_color_8p sig_bit;
894
895 if (png_get_sBIT(png_ptr, info_ptr, &sig_bit))
896 png_set_shift(png_ptr, sig_bit);
897
898PNG files store 3-color pixels in red, green, blue order. This code
899changes the storage of the pixels to blue, green, red:
900
901 if (color_type == PNG_COLOR_TYPE_RGB ||
902 color_type == PNG_COLOR_TYPE_RGB_ALPHA)
903 png_set_bgr(png_ptr);
904
905PNG files store RGB pixels packed into 3 or 6 bytes. This code expands them
906into 4 or 8 bytes for windowing systems that need them in this format:
907
908 if (color_type == PNG_COLOR_TYPE_RGB)
909 png_set_filler(png_ptr, filler, PNG_FILLER_BEFORE);
910
911where "filler" is the 8 or 16-bit number to fill with, and the location is
912either PNG_FILLER_BEFORE or PNG_FILLER_AFTER, depending upon whether
913you want the filler before the RGB or after. This transformation
914does not affect images that already have full alpha channels. To add an
915opaque alpha channel, use filler=0xff or 0xffff and PNG_FILLER_AFTER which
916will generate RGBA pixels.
917
918Note that png_set_filler() does not change the color type. If you want
919to do that, you can add a true alpha channel with
920
921 if (color_type == PNG_COLOR_TYPE_RGB ||
922 color_type == PNG_COLOR_TYPE_GRAY)
923 png_set_add_alpha(png_ptr, filler, PNG_FILLER_AFTER);
924
925where "filler" contains the alpha value to assign to each pixel.
926This function was added in libpng-1.2.7.
927
928If you are reading an image with an alpha channel, and you need the
929data as ARGB instead of the normal PNG format RGBA:
930
931 if (color_type == PNG_COLOR_TYPE_RGB_ALPHA)
932 png_set_swap_alpha(png_ptr);
933
934For some uses, you may want a grayscale image to be represented as
935RGB. This code will do that conversion:
936
937 if (color_type == PNG_COLOR_TYPE_GRAY ||
938 color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
939 png_set_gray_to_rgb(png_ptr);
940
941Conversely, you can convert an RGB or RGBA image to grayscale or grayscale
942with alpha.
943
944 if (color_type == PNG_COLOR_TYPE_RGB ||
945 color_type == PNG_COLOR_TYPE_RGB_ALPHA)
946 png_set_rgb_to_gray_fixed(png_ptr, error_action,
947 int red_weight, int green_weight);
948
949 error_action = 1: silently do the conversion
950 error_action = 2: issue a warning if the original
951 image has any pixel where
952 red != green or red != blue
953 error_action = 3: issue an error and abort the
954 conversion if the original
955 image has any pixel where
956 red != green or red != blue
957
958 red_weight: weight of red component times 100000
959 green_weight: weight of green component times 100000
960 If either weight is negative, default
961 weights (21268, 71514) are used.
962
963If you have set error_action = 1 or 2, you can
964later check whether the image really was gray, after processing
965the image rows, with the png_get_rgb_to_gray_status(png_ptr) function.
966It will return a png_byte that is zero if the image was gray or
9671 if there were any non-gray pixels. bKGD and sBIT data
968will be silently converted to grayscale, using the green channel
969data, regardless of the error_action setting.
970
971With red_weight+green_weight<=100000,
972the normalized graylevel is computed:
973
974 int rw = red_weight * 65536;
975 int gw = green_weight * 65536;
976 int bw = 65536 - (rw + gw);
977 gray = (rw*red + gw*green + bw*blue)/65536;
978
979The default values approximate those recommended in the Charles
980Poynton's Color FAQ, <http://www.inforamp.net/~poynton/>
981Copyright (c) 1998-01-04 Charles Poynton <poynton at inforamp.net>
982
983 Y = 0.212671 * R + 0.715160 * G + 0.072169 * B
984
985Libpng approximates this with
986
987 Y = 0.21268 * R + 0.7151 * G + 0.07217 * B
988
989which can be expressed with integers as
990
991 Y = (6969 * R + 23434 * G + 2365 * B)/32768
992
993The calculation is done in a linear colorspace, if the image gamma
994is known.
995
996If you have a grayscale and you are using png_set_expand_depth(),
997png_set_expand(), or png_set_gray_to_rgb to change to truecolor or to
998a higher bit-depth, you must either supply the background color as a gray
999value at the original file bit-depth (need_expand = 1) or else supply the
1000background color as an RGB triplet at the final, expanded bit depth
1001(need_expand = 0). Similarly, if you are reading a paletted image, you
1002must either supply the background color as a palette index (need_expand = 1)
1003or as an RGB triplet that may or may not be in the palette (need_expand = 0).
1004
1005 png_color_16 my_background;
1006 png_color_16p image_background;
1007
1008 if (png_get_bKGD(png_ptr, info_ptr, &image_background))
1009 png_set_background(png_ptr, image_background,
1010 PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
1011 else
1012 png_set_background(png_ptr, &my_background,
1013 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
1014
1015The png_set_background() function tells libpng to composite images
1016with alpha or simple transparency against the supplied background
1017color. If the PNG file contains a bKGD chunk (PNG_INFO_bKGD valid),
1018you may use this color, or supply another color more suitable for
1019the current display (e.g., the background color from a web page). You
1020need to tell libpng whether the color is in the gamma space of the
1021display (PNG_BACKGROUND_GAMMA_SCREEN for colors you supply), the file
1022(PNG_BACKGROUND_GAMMA_FILE for colors from the bKGD chunk), or one
1023that is neither of these gammas (PNG_BACKGROUND_GAMMA_UNIQUE - I don't
1024know why anyone would use this, but it's here).
1025
1026To properly display PNG images on any kind of system, the application needs
1027to know what the display gamma is. Ideally, the user will know this, and
1028the application will allow them to set it. One method of allowing the user
1029to set the display gamma separately for each system is to check for a
1030SCREEN_GAMMA or DISPLAY_GAMMA environment variable, which will hopefully be
1031correctly set.
1032
1033Note that display_gamma is the overall gamma correction required to produce
1034pleasing results, which depends on the lighting conditions in the surrounding
1035environment. In a dim or brightly lit room, no compensation other than
1036the physical gamma exponent of the monitor is needed, while in a dark room
1037a slightly smaller exponent is better.
1038
1039 double gamma, screen_gamma;
1040
1041 if (/* We have a user-defined screen
1042 gamma value */)
1043 {
1044 screen_gamma = user_defined_screen_gamma;
1045 }
1046 /* One way that applications can share the same
1047 screen gamma value */
1048 else if ((gamma_str = getenv("SCREEN_GAMMA"))
1049 != NULL)
1050 {
1051 screen_gamma = (double)atof(gamma_str);
1052 }
1053 /* If we don't have another value */
1054 else
1055 {
1056 screen_gamma = 2.2; /* A good guess for a
1057 PC monitor in a bright office or a dim room */
1058 screen_gamma = 2.0; /* A good guess for a
1059 PC monitor in a dark room */
1060 screen_gamma = 1.7 or 1.0; /* A good
1061 guess for Mac systems */
1062 }
1063
1064The png_set_gamma() function handles gamma transformations of the data.
1065Pass both the file gamma and the current screen_gamma. If the file does
1066not have a gamma value, you can pass one anyway if you have an idea what
1067it is (usually 0.45455 is a good guess for GIF images on PCs). Note
1068that file gammas are inverted from screen gammas. See the discussions
1069on gamma in the PNG specification for an excellent description of what
1070gamma is, and why all applications should support it. It is strongly
1071recommended that PNG viewers support gamma correction.
1072
1073 if (png_get_gAMA(png_ptr, info_ptr, &gamma))
1074 png_set_gamma(png_ptr, screen_gamma, gamma);
1075 else
1076 png_set_gamma(png_ptr, screen_gamma, 0.45455);
1077
1078If you need to reduce an RGB file to a paletted file, or if a paletted
1079file has more entries then will fit on your screen, png_set_dither()
1080will do that. Note that this is a simple match dither that merely
1081finds the closest color available. This should work fairly well with
1082optimized palettes, and fairly badly with linear color cubes. If you
1083pass a palette that is larger then maximum_colors, the file will
1084reduce the number of colors in the palette so it will fit into
1085maximum_colors. If there is a histogram, it will use it to make
1086more intelligent choices when reducing the palette. If there is no
1087histogram, it may not do as good a job.
1088
1089 if (color_type & PNG_COLOR_MASK_COLOR)
1090 {
1091 if (png_get_valid(png_ptr, info_ptr,
1092 PNG_INFO_PLTE))
1093 {
1094 png_uint_16p histogram = NULL;
1095
1096 png_get_hIST(png_ptr, info_ptr,
1097 &histogram);
1098 png_set_dither(png_ptr, palette, num_palette,
1099 max_screen_colors, histogram, 1);
1100 }
1101 else
1102 {
1103 png_color std_color_cube[MAX_SCREEN_COLORS] =
1104 { ... colors ... };
1105
1106 png_set_dither(png_ptr, std_color_cube,
1107 MAX_SCREEN_COLORS, MAX_SCREEN_COLORS,
1108 NULL,0);
1109 }
1110 }
1111
1112PNG files describe monochrome as black being zero and white being one.
1113The following code will reverse this (make black be one and white be
1114zero):
1115
1116 if (bit_depth == 1 && color_type == PNG_COLOR_TYPE_GRAY)
1117 png_set_invert_mono(png_ptr);
1118
1119This function can also be used to invert grayscale and gray-alpha images:
1120
1121 if (color_type == PNG_COLOR_TYPE_GRAY ||
1122 color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
1123 png_set_invert_mono(png_ptr);
1124
1125PNG files store 16 bit pixels in network byte order (big-endian,
1126ie. most significant bits first). This code changes the storage to the
1127other way (little-endian, i.e. least significant bits first, the
1128way PCs store them):
1129
1130 if (bit_depth == 16)
1131 png_set_swap(png_ptr);
1132
1133If you are using packed-pixel images (1, 2, or 4 bits/pixel), and you
1134need to change the order the pixels are packed into bytes, you can use:
1135
1136 if (bit_depth < 8)
1137 png_set_packswap(png_ptr);
1138
1139Finally, you can write your own transformation function if none of
1140the existing ones meets your needs. This is done by setting a callback
1141with
1142
1143 png_set_read_user_transform_fn(png_ptr,
1144 read_transform_fn);
1145
1146You must supply the function
1147
1148 void read_transform_fn(png_ptr ptr, row_info_ptr
1149 row_info, png_bytep data)
1150
1151See pngtest.c for a working example. Your function will be called
1152after all of the other transformations have been processed.
1153
1154You can also set up a pointer to a user structure for use by your
1155callback function, and you can inform libpng that your transform
1156function will change the number of channels or bit depth with the
1157function
1158
1159 png_set_user_transform_info(png_ptr, user_ptr,
1160 user_depth, user_channels);
1161
1162The user's application, not libpng, is responsible for allocating and
1163freeing any memory required for the user structure.
1164
1165You can retrieve the pointer via the function
1166png_get_user_transform_ptr(). For example:
1167
1168 voidp read_user_transform_ptr =
1169 png_get_user_transform_ptr(png_ptr);
1170
1171The last thing to handle is interlacing; this is covered in detail below,
1172but you must call the function here if you want libpng to handle expansion
1173of the interlaced image.
1174
1175 number_of_passes = png_set_interlace_handling(png_ptr);
1176
1177After setting the transformations, libpng can update your png_info
1178structure to reflect any transformations you've requested with this
1179call. This is most useful to update the info structure's rowbytes
1180field so you can use it to allocate your image memory. This function
1181will also update your palette with the correct screen_gamma and
1182background if these have been given with the calls above.
1183
1184 png_read_update_info(png_ptr, info_ptr);
1185
1186After you call png_read_update_info(), you can allocate any
1187memory you need to hold the image. The row data is simply
1188raw byte data for all forms of images. As the actual allocation
1189varies among applications, no example will be given. If you
1190are allocating one large chunk, you will need to build an
1191array of pointers to each row, as it will be needed for some
1192of the functions below.
1193
1194Reading image data
1195
1196After you've allocated memory, you can read the image data.
1197The simplest way to do this is in one function call. If you are
1198allocating enough memory to hold the whole image, you can just
1199call png_read_image() and libpng will read in all the image data
1200and put it in the memory area supplied. You will need to pass in
1201an array of pointers to each row.
1202
1203This function automatically handles interlacing, so you don't need
1204to call png_set_interlace_handling() or call this function multiple
1205times, or any of that other stuff necessary with png_read_rows().
1206
1207 png_read_image(png_ptr, row_pointers);
1208
1209where row_pointers is:
1210
1211 png_bytep row_pointers[height];
1212
1213You can point to void or char or whatever you use for pixels.
1214
1215If you don't want to read in the whole image at once, you can
1216use png_read_rows() instead. If there is no interlacing (check
1217interlace_type == PNG_INTERLACE_NONE), this is simple:
1218
1219 png_read_rows(png_ptr, row_pointers, NULL,
1220 number_of_rows);
1221
1222where row_pointers is the same as in the png_read_image() call.
1223
1224If you are doing this just one row at a time, you can do this with
1225a single row_pointer instead of an array of row_pointers:
1226
1227 png_bytep row_pointer = row;
1228 png_read_row(png_ptr, row_pointer, NULL);
1229
1230If the file is interlaced (interlace_type != 0 in the IHDR chunk), things
1231get somewhat harder. The only current (PNG Specification version 1.2)
1232interlacing type for PNG is (interlace_type == PNG_INTERLACE_ADAM7)
1233is a somewhat complicated 2D interlace scheme, known as Adam7, that
1234breaks down an image into seven smaller images of varying size, based
1235on an 8x8 grid.
1236
1237libpng can fill out those images or it can give them to you "as is".
1238If you want them filled out, there are two ways to do that. The one
1239mentioned in the PNG specification is to expand each pixel to cover
1240those pixels that have not been read yet (the "rectangle" method).
1241This results in a blocky image for the first pass, which gradually
1242smooths out as more pixels are read. The other method is the "sparkle"
1243method, where pixels are drawn only in their final locations, with the
1244rest of the image remaining whatever colors they were initialized to
1245before the start of the read. The first method usually looks better,
1246but tends to be slower, as there are more pixels to put in the rows.
1247
1248If you don't want libpng to handle the interlacing details, just call
1249png_read_rows() seven times to read in all seven images. Each of the
1250images is a valid image by itself, or they can all be combined on an
12518x8 grid to form a single image (although if you intend to combine them
1252you would be far better off using the libpng interlace handling).
1253
1254The first pass will return an image 1/8 as wide as the entire image
1255(every 8th column starting in column 0) and 1/8 as high as the original
1256(every 8th row starting in row 0), the second will be 1/8 as wide
1257(starting in column 4) and 1/8 as high (also starting in row 0). The
1258third pass will be 1/4 as wide (every 4th pixel starting in column 0) and
12591/8 as high (every 8th row starting in row 4), and the fourth pass will
1260be 1/4 as wide and 1/4 as high (every 4th column starting in column 2,
1261and every 4th row starting in row 0). The fifth pass will return an
1262image 1/2 as wide, and 1/4 as high (starting at column 0 and row 2),
1263while the sixth pass will be 1/2 as wide and 1/2 as high as the original
1264(starting in column 1 and row 0). The seventh and final pass will be as
1265wide as the original, and 1/2 as high, containing all of the odd
1266numbered scanlines. Phew!
1267
1268If you want libpng to expand the images, call this before calling
1269png_start_read_image() or png_read_update_info():
1270
1271 if (interlace_type == PNG_INTERLACE_ADAM7)
1272 number_of_passes
1273 = png_set_interlace_handling(png_ptr);
1274
1275This will return the number of passes needed. Currently, this
1276is seven, but may change if another interlace type is added.
1277This function can be called even if the file is not interlaced,
1278where it will return one pass.
1279
1280If you are not going to display the image after each pass, but are
1281going to wait until the entire image is read in, use the sparkle
1282effect. This effect is faster and the end result of either method
1283is exactly the same. If you are planning on displaying the image
1284after each pass, the "rectangle" effect is generally considered the
1285better looking one.
1286
1287If you only want the "sparkle" effect, just call png_read_rows() as
1288normal, with the third parameter NULL. Make sure you make pass over
1289the image number_of_passes times, and you don't change the data in the
1290rows between calls. You can change the locations of the data, just
1291not the data. Each pass only writes the pixels appropriate for that
1292pass, and assumes the data from previous passes is still valid.
1293
1294 png_read_rows(png_ptr, row_pointers, NULL,
1295 number_of_rows);
1296
1297If you only want the first effect (the rectangles), do the same as
1298before except pass the row buffer in the third parameter, and leave
1299the second parameter NULL.
1300
1301 png_read_rows(png_ptr, NULL, row_pointers,
1302 number_of_rows);
1303
1304Finishing a sequential read
1305
1306After you are finished reading the image through the
1307low-level interface, you can finish reading the file. If you are
1308interested in comments or time, which may be stored either before or
1309after the image data, you should pass the separate png_info struct if
1310you want to keep the comments from before and after the image
1311separate. If you are not interested, you can pass NULL.
1312
1313 png_read_end(png_ptr, end_info);
1314
1315When you are done, you can free all memory allocated by libpng like this:
1316
1317 png_destroy_read_struct(&png_ptr, &info_ptr,
1318 &end_info);
1319
1320It is also possible to individually free the info_ptr members that
1321point to libpng-allocated storage with the following function:
1322
1323 png_free_data(png_ptr, info_ptr, mask, seq)
1324 mask - identifies data to be freed, a mask
1325 containing the bitwise OR of one or
1326 more of
1327 PNG_FREE_PLTE, PNG_FREE_TRNS,
1328 PNG_FREE_HIST, PNG_FREE_ICCP,
1329 PNG_FREE_PCAL, PNG_FREE_ROWS,
1330 PNG_FREE_SCAL, PNG_FREE_SPLT,
1331 PNG_FREE_TEXT, PNG_FREE_UNKN,
1332 or simply PNG_FREE_ALL
1333 seq - sequence number of item to be freed
1334 (-1 for all items)
1335
1336This function may be safely called when the relevant storage has
1337already been freed, or has not yet been allocated, or was allocated
1338by the user and not by libpng, and will in those
1339cases do nothing. The "seq" parameter is ignored if only one item
1340of the selected data type, such as PLTE, is allowed. If "seq" is not
1341-1, and multiple items are allowed for the data type identified in
1342the mask, such as text or sPLT, only the n'th item in the structure
1343is freed, where n is "seq".
1344
1345The default behavior is only to free data that was allocated internally
1346by libpng. This can be changed, so that libpng will not free the data,
1347or so that it will free data that was allocated by the user with png_malloc()
1348or png_zalloc() and passed in via a png_set_*() function, with
1349
1350 png_data_freer(png_ptr, info_ptr, freer, mask)
1351 mask - which data elements are affected
1352 same choices as in png_free_data()
1353 freer - one of
1354 PNG_DESTROY_WILL_FREE_DATA
1355 PNG_SET_WILL_FREE_DATA
1356 PNG_USER_WILL_FREE_DATA
1357
1358This function only affects data that has already been allocated.
1359You can call this function after reading the PNG data but before calling
1360any png_set_*() functions, to control whether the user or the png_set_*()
1361function is responsible for freeing any existing data that might be present,
1362and again after the png_set_*() functions to control whether the user
1363or png_destroy_*() is supposed to free the data. When the user assumes
1364responsibility for libpng-allocated data, the application must use
1365png_free() to free it, and when the user transfers responsibility to libpng
1366for data that the user has allocated, the user must have used png_malloc()
1367or png_zalloc() to allocate it.
1368
1369If you allocated your row_pointers in a single block, as suggested above in
1370the description of the high level read interface, you must not transfer
1371responsibility for freeing it to the png_set_rows or png_read_destroy function,
1372because they would also try to free the individual row_pointers[i].
1373
1374If you allocated text_ptr.text, text_ptr.lang, and text_ptr.translated_keyword
1375separately, do not transfer responsibility for freeing text_ptr to libpng,
1376because when libpng fills a png_text structure it combines these members with
1377the key member, and png_free_data() will free only text_ptr.key. Similarly,
1378if you transfer responsibility for free'ing text_ptr from libpng to your
1379application, your application must not separately free those members.
1380
1381The png_free_data() function will turn off the "valid" flag for anything
1382it frees. If you need to turn the flag off for a chunk that was freed by your
1383application instead of by libpng, you can use
1384
1385 png_set_invalid(png_ptr, info_ptr, mask);
1386 mask - identifies the chunks to be made invalid,
1387 containing the bitwise OR of one or
1388 more of
1389 PNG_INFO_gAMA, PNG_INFO_sBIT,
1390 PNG_INFO_cHRM, PNG_INFO_PLTE,
1391 PNG_INFO_tRNS, PNG_INFO_bKGD,
1392 PNG_INFO_hIST, PNG_INFO_pHYs,
1393 PNG_INFO_oFFs, PNG_INFO_tIME,
1394 PNG_INFO_pCAL, PNG_INFO_sRGB,
1395 PNG_INFO_iCCP, PNG_INFO_sPLT,
1396 PNG_INFO_sCAL, PNG_INFO_IDAT
1397
1398For a more compact example of reading a PNG image, see the file example.c.
1399
1400Reading PNG files progressively
1401
1402The progressive reader is slightly different then the non-progressive
1403reader. Instead of calling png_read_info(), png_read_rows(), and
1404png_read_end(), you make one call to png_process_data(), which calls
1405callbacks when it has the info, a row, or the end of the image. You
1406set up these callbacks with png_set_progressive_read_fn(). You don't
1407have to worry about the input/output functions of libpng, as you are
1408giving the library the data directly in png_process_data(). I will
1409assume that you have read the section on reading PNG files above,
1410so I will only highlight the differences (although I will show
1411all of the code).
1412
1413png_structp png_ptr;
1414png_infop info_ptr;
1415
1416 /* An example code fragment of how you would
1417 initialize the progressive reader in your
1418 application. */
1419 int
1420 initialize_png_reader()
1421 {
1422 png_ptr = png_create_read_struct
1423 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
1424 user_error_fn, user_warning_fn);
1425 if (!png_ptr)
1426 return (ERROR);
1427 info_ptr = png_create_info_struct(png_ptr);
1428 if (!info_ptr)
1429 {
1430 png_destroy_read_struct(&png_ptr, (png_infopp)NULL,
1431 (png_infopp)NULL);
1432 return (ERROR);
1433 }
1434
1435 if (setjmp(png_jmpbuf(png_ptr)))
1436 {
1437 png_destroy_read_struct(&png_ptr, &info_ptr,
1438 (png_infopp)NULL);
1439 return (ERROR);
1440 }
1441
1442 /* This one's new. You can provide functions
1443 to be called when the header info is valid,
1444 when each row is completed, and when the image
1445 is finished. If you aren't using all functions,
1446 you can specify NULL parameters. Even when all
1447 three functions are NULL, you need to call
1448 png_set_progressive_read_fn(). You can use
1449 any struct as the user_ptr (cast to a void pointer
1450 for the function call), and retrieve the pointer
1451 from inside the callbacks using the function
1452
1453 png_get_progressive_ptr(png_ptr);
1454
1455 which will return a void pointer, which you have
1456 to cast appropriately.
1457 */
1458 png_set_progressive_read_fn(png_ptr, (void *)user_ptr,
1459 info_callback, row_callback, end_callback);
1460
1461 return 0;
1462 }
1463
1464 /* A code fragment that you call as you receive blocks
1465 of data */
1466 int
1467 process_data(png_bytep buffer, png_uint_32 length)
1468 {
1469 if (setjmp(png_jmpbuf(png_ptr)))
1470 {
1471 png_destroy_read_struct(&png_ptr, &info_ptr,
1472 (png_infopp)NULL);
1473 return (ERROR);
1474 }
1475
1476 /* This one's new also. Simply give it a chunk
1477 of data from the file stream (in order, of
1478 course). On machines with segmented memory
1479 models machines, don't give it any more than
1480 64K. The library seems to run fine with sizes
1481 of 4K. Although you can give it much less if
1482 necessary (I assume you can give it chunks of
1483 1 byte, I haven't tried less then 256 bytes
1484 yet). When this function returns, you may
1485 want to display any rows that were generated
1486 in the row callback if you don't already do
1487 so there.
1488 */
1489 png_process_data(png_ptr, info_ptr, buffer, length);
1490 return 0;
1491 }
1492
1493 /* This function is called (as set by
1494 png_set_progressive_read_fn() above) when enough data
1495 has been supplied so all of the header has been
1496 read.
1497 */
1498 void
1499 info_callback(png_structp png_ptr, png_infop info)
1500 {
1501 /* Do any setup here, including setting any of
1502 the transformations mentioned in the Reading
1503 PNG files section. For now, you _must_ call
1504 either png_start_read_image() or
1505 png_read_update_info() after all the
1506 transformations are set (even if you don't set
1507 any). You may start getting rows before
1508 png_process_data() returns, so this is your
1509 last chance to prepare for that.
1510 */
1511 }
1512
1513 /* This function is called when each row of image
1514 data is complete */
1515 void
1516 row_callback(png_structp png_ptr, png_bytep new_row,
1517 png_uint_32 row_num, int pass)
1518 {
1519 /* If the image is interlaced, and you turned
1520 on the interlace handler, this function will
1521 be called for every row in every pass. Some
1522 of these rows will not be changed from the
1523 previous pass. When the row is not changed,
1524 the new_row variable will be NULL. The rows
1525 and passes are called in order, so you don't
1526 really need the row_num and pass, but I'm
1527 supplying them because it may make your life
1528 easier.
1529
1530 For the non-NULL rows of interlaced images,
1531 you must call png_progressive_combine_row()
1532 passing in the row and the old row. You can
1533 call this function for NULL rows (it will just
1534 return) and for non-interlaced images (it just
1535 does the memcpy for you) if it will make the
1536 code easier. Thus, you can just do this for
1537 all cases:
1538 */
1539
1540 png_progressive_combine_row(png_ptr, old_row,
1541 new_row);
1542
1543 /* where old_row is what was displayed for
1544 previously for the row. Note that the first
1545 pass (pass == 0, really) will completely cover
1546 the old row, so the rows do not have to be
1547 initialized. After the first pass (and only
1548 for interlaced images), you will have to pass
1549 the current row, and the function will combine
1550 the old row and the new row.
1551 */
1552 }
1553
1554 void
1555 end_callback(png_structp png_ptr, png_infop info)
1556 {
1557 /* This function is called after the whole image
1558 has been read, including any chunks after the
1559 image (up to and including the IEND). You
1560 will usually have the same info chunk as you
1561 had in the header, although some data may have
1562 been added to the comments and time fields.
1563
1564 Most people won't do much here, perhaps setting
1565 a flag that marks the image as finished.
1566 */
1567 }
1568
1569
1570
1571IV. Writing
1572
1573Much of this is very similar to reading. However, everything of
1574importance is repeated here, so you won't have to constantly look
1575back up in the reading section to understand writing.
1576
1577Setup
1578
1579You will want to do the I/O initialization before you get into libpng,
1580so if it doesn't work, you don't have anything to undo. If you are not
1581using the standard I/O functions, you will need to replace them with
1582custom writing functions. See the discussion under Customizing libpng.
1583
1584 FILE *fp = fopen(file_name, "wb");
1585 if (!fp)
1586 {
1587 return (ERROR);
1588 }
1589
1590Next, png_struct and png_info need to be allocated and initialized.
1591As these can be both relatively large, you may not want to store these
1592on the stack, unless you have stack space to spare. Of course, you
1593will want to check if they return NULL. If you are also reading,
1594you won't want to name your read structure and your write structure
1595both "png_ptr"; you can call them anything you like, such as
1596"read_ptr" and "write_ptr". Look at pngtest.c, for example.
1597
1598 png_structp png_ptr = png_create_write_struct
1599 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
1600 user_error_fn, user_warning_fn);
1601 if (!png_ptr)
1602 return (ERROR);
1603
1604 png_infop info_ptr = png_create_info_struct(png_ptr);
1605 if (!info_ptr)
1606 {
1607 png_destroy_write_struct(&png_ptr,
1608 (png_infopp)NULL);
1609 return (ERROR);
1610 }
1611
1612If you want to use your own memory allocation routines,
1613define PNG_USER_MEM_SUPPORTED and use
1614png_create_write_struct_2() instead of png_create_write_struct():
1615
1616 png_structp png_ptr = png_create_write_struct_2
1617 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
1618 user_error_fn, user_warning_fn, (png_voidp)
1619 user_mem_ptr, user_malloc_fn, user_free_fn);
1620
1621After you have these structures, you will need to set up the
1622error handling. When libpng encounters an error, it expects to
1623longjmp() back to your routine. Therefore, you will need to call
1624setjmp() and pass the png_jmpbuf(png_ptr). If you
1625write the file from different routines, you will need to update
1626the png_jmpbuf(png_ptr) every time you enter a new routine that will
1627call a png_*() function. See your documentation of setjmp/longjmp
1628for your compiler for more information on setjmp/longjmp. See
1629the discussion on libpng error handling in the Customizing Libpng
1630section below for more information on the libpng error handling.
1631
1632 if (setjmp(png_jmpbuf(png_ptr)))
1633 {
1634 png_destroy_write_struct(&png_ptr, &info_ptr);
1635 fclose(fp);
1636 return (ERROR);
1637 }
1638 ...
1639 return;
1640
1641If you would rather avoid the complexity of setjmp/longjmp issues,
1642you can compile libpng with PNG_SETJMP_NOT_SUPPORTED, in which case
1643errors will result in a call to PNG_ABORT() which defaults to abort().
1644
1645Now you need to set up the output code. The default for libpng is to
1646use the C function fwrite(). If you use this, you will need to pass a
1647valid FILE * in the function png_init_io(). Be sure that the file is
1648opened in binary mode. Again, if you wish to handle writing data in
1649another way, see the discussion on libpng I/O handling in the Customizing
1650Libpng section below.
1651
1652 png_init_io(png_ptr, fp);
1653
1654If you are embedding your PNG into a datastream such as MNG, and don't
1655want libpng to write the 8-byte signature, or if you have already
1656written the signature in your application, use
1657
1658 png_set_sig_bytes(png_ptr, 8);
1659
1660to inform libpng that it should not write a signature.
1661
1662Write callbacks
1663
1664At this point, you can set up a callback function that will be
1665called after each row has been written, which you can use to control
1666a progress meter or the like. It's demonstrated in pngtest.c.
1667You must supply a function
1668
1669 void write_row_callback(png_ptr, png_uint_32 row,
1670 int pass);
1671 {
1672 /* put your code here */
1673 }
1674
1675(You can give it another name that you like instead of "write_row_callback")
1676
1677To inform libpng about your function, use
1678
1679 png_set_write_status_fn(png_ptr, write_row_callback);
1680
1681You now have the option of modifying how the compression library will
1682run. The following functions are mainly for testing, but may be useful
1683in some cases, like if you need to write PNG files extremely fast and
1684are willing to give up some compression, or if you want to get the
1685maximum possible compression at the expense of slower writing. If you
1686have no special needs in this area, let the library do what it wants by
1687not calling this function at all, as it has been tuned to deliver a good
1688speed/compression ratio. The second parameter to png_set_filter() is
1689the filter method, for which the only valid values are 0 (as of the
1690July 1999 PNG specification, version 1.2) or 64 (if you are writing
1691a PNG datastream that is to be embedded in a MNG datastream). The third
1692parameter is a flag that indicates which filter type(s) are to be tested
1693for each scanline. See the PNG specification for details on the specific filter
1694types.
1695
1696
1697 /* turn on or off filtering, and/or choose
1698 specific filters. You can use either a single
1699 PNG_FILTER_VALUE_NAME or the bitwise OR of one
1700 or more PNG_FILTER_NAME masks. */
1701 png_set_filter(png_ptr, 0,
1702 PNG_FILTER_NONE | PNG_FILTER_VALUE_NONE |
1703 PNG_FILTER_SUB | PNG_FILTER_VALUE_SUB |
1704 PNG_FILTER_UP | PNG_FILTER_VALUE_UP |
1705 PNG_FILTER_AVE | PNG_FILTER_VALUE_AVE |
1706 PNG_FILTER_PAETH | PNG_FILTER_VALUE_PAETH|
1707 PNG_ALL_FILTERS);
1708
1709If an application
1710wants to start and stop using particular filters during compression,
1711it should start out with all of the filters (to ensure that the previous
1712row of pixels will be stored in case it's needed later), and then add
1713and remove them after the start of compression.
1714
1715If you are writing a PNG datastream that is to be embedded in a MNG
1716datastream, the second parameter can be either 0 or 64.
1717
1718The png_set_compression_*() functions interface to the zlib compression
1719library, and should mostly be ignored unless you really know what you are
1720doing. The only generally useful call is png_set_compression_level()
1721which changes how much time zlib spends on trying to compress the image
1722data. See the Compression Library (zlib.h and algorithm.txt, distributed
1723with zlib) for details on the compression levels.
1724
1725 /* set the zlib compression level */
1726 png_set_compression_level(png_ptr,
1727 Z_BEST_COMPRESSION);
1728
1729 /* set other zlib parameters */
1730 png_set_compression_mem_level(png_ptr, 8);
1731 png_set_compression_strategy(png_ptr,
1732 Z_DEFAULT_STRATEGY);
1733 png_set_compression_window_bits(png_ptr, 15);
1734 png_set_compression_method(png_ptr, 8);
1735 png_set_compression_buffer_size(png_ptr, 8192)
1736
1737extern PNG_EXPORT(void,png_set_zbuf_size)
1738
1739Setting the contents of info for output
1740
1741You now need to fill in the png_info structure with all the data you
1742wish to write before the actual image. Note that the only thing you
1743are allowed to write after the image is the text chunks and the time
1744chunk (as of PNG Specification 1.2, anyway). See png_write_end() and
1745the latest PNG specification for more information on that. If you
1746wish to write them before the image, fill them in now, and flag that
1747data as being valid. If you want to wait until after the data, don't
1748fill them until png_write_end(). For all the fields in png_info and
1749their data types, see png.h. For explanations of what the fields
1750contain, see the PNG specification.
1751
1752Some of the more important parts of the png_info are:
1753
1754 png_set_IHDR(png_ptr, info_ptr, width, height,
1755 bit_depth, color_type, interlace_type,
1756 compression_type, filter_method)
1757 width - holds the width of the image
1758 in pixels (up to 2^31).
1759 height - holds the height of the image
1760 in pixels (up to 2^31).
1761 bit_depth - holds the bit depth of one of the
1762 image channels.
1763 (valid values are 1, 2, 4, 8, 16
1764 and depend also on the
1765 color_type. See also significant
1766 bits (sBIT) below).
1767 color_type - describes which color/alpha
1768 channels are present.
1769 PNG_COLOR_TYPE_GRAY
1770 (bit depths 1, 2, 4, 8, 16)
1771 PNG_COLOR_TYPE_GRAY_ALPHA
1772 (bit depths 8, 16)
1773 PNG_COLOR_TYPE_PALETTE
1774 (bit depths 1, 2, 4, 8)
1775 PNG_COLOR_TYPE_RGB
1776 (bit_depths 8, 16)
1777 PNG_COLOR_TYPE_RGB_ALPHA
1778 (bit_depths 8, 16)
1779
1780 PNG_COLOR_MASK_PALETTE
1781 PNG_COLOR_MASK_COLOR
1782 PNG_COLOR_MASK_ALPHA
1783
1784 interlace_type - PNG_INTERLACE_NONE or
1785 PNG_INTERLACE_ADAM7
1786 compression_type - (must be
1787 PNG_COMPRESSION_TYPE_DEFAULT)
1788 filter_method - (must be PNG_FILTER_TYPE_DEFAULT
1789 or, if you are writing a PNG to
1790 be embedded in a MNG datastream,
1791 can also be
1792 PNG_INTRAPIXEL_DIFFERENCING)
1793
1794If you call png_set_IHDR(), the call must appear before any of the
1795other png_set_*() functions, which might require access to some of
1796the IHDR settings. The remaining png_set_*() functions can be called
1797in any order.
1798
1799 png_set_PLTE(png_ptr, info_ptr, palette,
1800 num_palette);
1801 palette - the palette for the file
1802 (array of png_color)
1803 num_palette - number of entries in the palette
1804
1805 png_set_gAMA(png_ptr, info_ptr, gamma);
1806 gamma - the gamma the image was created
1807 at (PNG_INFO_gAMA)
1808
1809 png_set_sRGB(png_ptr, info_ptr, srgb_intent);
1810 srgb_intent - the rendering intent
1811 (PNG_INFO_sRGB) The presence of
1812 the sRGB chunk means that the pixel
1813 data is in the sRGB color space.
1814 This chunk also implies specific
1815 values of gAMA and cHRM. Rendering
1816 intent is the CSS-1 property that
1817 has been defined by the International
1818 Color Consortium
1819 (http://www.color.org).
1820 It can be one of
1821 PNG_sRGB_INTENT_SATURATION,
1822 PNG_sRGB_INTENT_PERCEPTUAL,
1823 PNG_sRGB_INTENT_ABSOLUTE, or
1824 PNG_sRGB_INTENT_RELATIVE.
1825
1826
1827 png_set_sRGB_gAMA_and_cHRM(png_ptr, info_ptr,
1828 srgb_intent);
1829 srgb_intent - the rendering intent
1830 (PNG_INFO_sRGB) The presence of the
1831 sRGB chunk means that the pixel
1832 data is in the sRGB color space.
1833 This function also causes gAMA and
1834 cHRM chunks with the specific values
1835 that are consistent with sRGB to be
1836 written.
1837
1838 png_set_iCCP(png_ptr, info_ptr, name, compression_type,
1839 profile, proflen);
1840 name - The profile name.
1841 compression - The compression type; always
1842 PNG_COMPRESSION_TYPE_BASE for PNG 1.0.
1843 You may give NULL to this argument to
1844 ignore it.
1845 profile - International Color Consortium color
1846 profile data. May contain NULs.
1847 proflen - length of profile data in bytes.
1848
1849 png_set_sBIT(png_ptr, info_ptr, sig_bit);
1850 sig_bit - the number of significant bits for
1851 (PNG_INFO_sBIT) each of the gray, red,
1852 green, and blue channels, whichever are
1853 appropriate for the given color type
1854 (png_color_16)
1855
1856 png_set_tRNS(png_ptr, info_ptr, trans, num_trans,
1857 trans_values);
1858 trans - array of transparent entries for
1859 palette (PNG_INFO_tRNS)
1860 trans_values - graylevel or color sample values of
1861 the single transparent color for
1862 non-paletted images (PNG_INFO_tRNS)
1863 num_trans - number of transparent entries
1864 (PNG_INFO_tRNS)
1865
1866 png_set_hIST(png_ptr, info_ptr, hist);
1867 (PNG_INFO_hIST)
1868 hist - histogram of palette (array of
1869 png_uint_16)
1870
1871 png_set_tIME(png_ptr, info_ptr, mod_time);
1872 mod_time - time image was last modified
1873 (PNG_VALID_tIME)
1874
1875 png_set_bKGD(png_ptr, info_ptr, background);
1876 background - background color (PNG_VALID_bKGD)
1877
1878 png_set_text(png_ptr, info_ptr, text_ptr, num_text);
1879 text_ptr - array of png_text holding image
1880 comments
1881 text_ptr[i].compression - type of compression used
1882 on "text" PNG_TEXT_COMPRESSION_NONE
1883 PNG_TEXT_COMPRESSION_zTXt
1884 PNG_ITXT_COMPRESSION_NONE
1885 PNG_ITXT_COMPRESSION_zTXt
1886 text_ptr[i].key - keyword for comment. Must contain
1887 1-79 characters.
1888 text_ptr[i].text - text comments for current
1889 keyword. Can be NULL or empty.
1890 text_ptr[i].text_length - length of text string,
1891 after decompression, 0 for iTXt
1892 text_ptr[i].itxt_length - length of itxt string,
1893 after decompression, 0 for tEXt/zTXt
1894 text_ptr[i].lang - language of comment (NULL or
1895 empty for unknown).
1896 text_ptr[i].translated_keyword - keyword in UTF-8 (NULL
1897 or empty for unknown).
1898 num_text - number of comments
1899
1900 png_set_sPLT(png_ptr, info_ptr, &palette_ptr,
1901 num_spalettes);
1902 palette_ptr - array of png_sPLT_struct structures
1903 to be added to the list of palettes
1904 in the info structure.
1905 num_spalettes - number of palette structures to be
1906 added.
1907
1908 png_set_oFFs(png_ptr, info_ptr, offset_x, offset_y,
1909 unit_type);
1910 offset_x - positive offset from the left
1911 edge of the screen
1912 offset_y - positive offset from the top
1913 edge of the screen
1914 unit_type - PNG_OFFSET_PIXEL, PNG_OFFSET_MICROMETER
1915
1916 png_set_pHYs(png_ptr, info_ptr, res_x, res_y,
1917 unit_type);
1918 res_x - pixels/unit physical resolution
1919 in x direction
1920 res_y - pixels/unit physical resolution
1921 in y direction
1922 unit_type - PNG_RESOLUTION_UNKNOWN,
1923 PNG_RESOLUTION_METER
1924
1925 png_set_sCAL(png_ptr, info_ptr, unit, width, height)
1926 unit - physical scale units (an integer)
1927 width - width of a pixel in physical scale units
1928 height - height of a pixel in physical scale units
1929 (width and height are doubles)
1930
1931 png_set_sCAL_s(png_ptr, info_ptr, unit, width, height)
1932 unit - physical scale units (an integer)
1933 width - width of a pixel in physical scale units
1934 height - height of a pixel in physical scale units
1935 (width and height are strings like "2.54")
1936
1937 png_set_unknown_chunks(png_ptr, info_ptr, &unknowns,
1938 num_unknowns)
1939 unknowns - array of png_unknown_chunk
1940 structures holding unknown chunks
1941 unknowns[i].name - name of unknown chunk
1942 unknowns[i].data - data of unknown chunk
1943 unknowns[i].size - size of unknown chunk's data
1944 unknowns[i].location - position to write chunk in file
1945 0: do not write chunk
1946 PNG_HAVE_IHDR: before PLTE
1947 PNG_HAVE_PLTE: before IDAT
1948 PNG_AFTER_IDAT: after IDAT
1949
1950The "location" member is set automatically according to
1951what part of the output file has already been written.
1952You can change its value after calling png_set_unknown_chunks()
1953as demonstrated in pngtest.c. Within each of the "locations",
1954the chunks are sequenced according to their position in the
1955structure (that is, the value of "i", which is the order in which
1956the chunk was either read from the input file or defined with
1957png_set_unknown_chunks).
1958
1959A quick word about text and num_text. text is an array of png_text
1960structures. num_text is the number of valid structures in the array.
1961Each png_text structure holds a language code, a keyword, a text value,
1962and a compression type.
1963
1964The compression types have the same valid numbers as the compression
1965types of the image data. Currently, the only valid number is zero.
1966However, you can store text either compressed or uncompressed, unlike
1967images, which always have to be compressed. So if you don't want the
1968text compressed, set the compression type to PNG_TEXT_COMPRESSION_NONE.
1969Because tEXt and zTXt chunks don't have a language field, if you
1970specify PNG_TEXT_COMPRESSION_NONE or PNG_TEXT_COMPRESSION_zTXt
1971any language code or translated keyword will not be written out.
1972
1973Until text gets around 1000 bytes, it is not worth compressing it.
1974After the text has been written out to the file, the compression type
1975is set to PNG_TEXT_COMPRESSION_NONE_WR or PNG_TEXT_COMPRESSION_zTXt_WR,
1976so that it isn't written out again at the end (in case you are calling
1977png_write_end() with the same struct.
1978
1979The keywords that are given in the PNG Specification are:
1980
1981 Title Short (one line) title or
1982 caption for image
1983 Author Name of image's creator
1984 Description Description of image (possibly long)
1985 Copyright Copyright notice
1986 Creation Time Time of original image creation
1987 (usually RFC 1123 format, see below)
1988 Software Software used to create the image
1989 Disclaimer Legal disclaimer
1990 Warning Warning of nature of content
1991 Source Device used to create the image
1992 Comment Miscellaneous comment; conversion
1993 from other image format
1994
1995The keyword-text pairs work like this. Keywords should be short
1996simple descriptions of what the comment is about. Some typical
1997keywords are found in the PNG specification, as is some recommendations
1998on keywords. You can repeat keywords in a file. You can even write
1999some text before the image and some after. For example, you may want
2000to put a description of the image before the image, but leave the
2001disclaimer until after, so viewers working over modem connections
2002don't have to wait for the disclaimer to go over the modem before
2003they start seeing the image. Finally, keywords should be full
2004words, not abbreviations. Keywords and text are in the ISO 8859-1
2005(Latin-1) character set (a superset of regular ASCII) and can not
2006contain NUL characters, and should not contain control or other
2007unprintable characters. To make the comments widely readable, stick
2008with basic ASCII, and avoid machine specific character set extensions
2009like the IBM-PC character set. The keyword must be present, but
2010you can leave off the text string on non-compressed pairs.
2011Compressed pairs must have a text string, as only the text string
2012is compressed anyway, so the compression would be meaningless.
2013
2014PNG supports modification time via the png_time structure. Two
2015conversion routines are provided, png_convert_from_time_t() for
2016time_t and png_convert_from_struct_tm() for struct tm. The
2017time_t routine uses gmtime(). You don't have to use either of
2018these, but if you wish to fill in the png_time structure directly,
2019you should provide the time in universal time (GMT) if possible
2020instead of your local time. Note that the year number is the full
2021year (e.g. 1998, rather than 98 - PNG is year 2000 compliant!), and
2022that months start with 1.
2023
2024If you want to store the time of the original image creation, you should
2025use a plain tEXt chunk with the "Creation Time" keyword. This is
2026necessary because the "creation time" of a PNG image is somewhat vague,
2027depending on whether you mean the PNG file, the time the image was
2028created in a non-PNG format, a still photo from which the image was
2029scanned, or possibly the subject matter itself. In order to facilitate
2030machine-readable dates, it is recommended that the "Creation Time"
2031tEXt chunk use RFC 1123 format dates (e.g. "22 May 1997 18:07:10 GMT"),
2032although this isn't a requirement. Unlike the tIME chunk, the
2033"Creation Time" tEXt chunk is not expected to be automatically changed
2034by the software. To facilitate the use of RFC 1123 dates, a function
2035png_convert_to_rfc1123(png_timep) is provided to convert from PNG
2036time to an RFC 1123 format string.
2037
2038Writing unknown chunks
2039
2040You can use the png_set_unknown_chunks function to queue up chunks
2041for writing. You give it a chunk name, raw data, and a size; that's
2042all there is to it. The chunks will be written by the next following
2043png_write_info_before_PLTE, png_write_info, or png_write_end function.
2044Any chunks previously read into the info structure's unknown-chunk
2045list will also be written out in a sequence that satisfies the PNG
2046specification's ordering rules.
2047
2048The high-level write interface
2049
2050At this point there are two ways to proceed; through the high-level
2051write interface, or through a sequence of low-level write operations.
2052You can use the high-level interface if your image data is present
2053in the info structure. All defined output
2054transformations are permitted, enabled by the following masks.
2055
2056 PNG_TRANSFORM_IDENTITY No transformation
2057 PNG_TRANSFORM_PACKING Pack 1, 2 and 4-bit samples
2058 PNG_TRANSFORM_PACKSWAP Change order of packed
2059 pixels to LSB first
2060 PNG_TRANSFORM_INVERT_MONO Invert monochrome images
2061 PNG_TRANSFORM_SHIFT Normalize pixels to the
2062 sBIT depth
2063 PNG_TRANSFORM_BGR Flip RGB to BGR, RGBA
2064 to BGRA
2065 PNG_TRANSFORM_SWAP_ALPHA Flip RGBA to ARGB or GA
2066 to AG
2067 PNG_TRANSFORM_INVERT_ALPHA Change alpha from opacity
2068 to transparency
2069 PNG_TRANSFORM_SWAP_ENDIAN Byte-swap 16-bit samples
2070 PNG_TRANSFORM_STRIP_FILLER Strip out filler bytes.
2071
2072If you have valid image data in the info structure (you can use
2073png_set_rows() to put image data in the info structure), simply do this:
2074
2075 png_write_png(png_ptr, info_ptr, png_transforms, NULL)
2076
2077where png_transforms is an integer containing the bitwise OR of some set of
2078transformation flags. This call is equivalent to png_write_info(),
2079followed the set of transformations indicated by the transform mask,
2080then png_write_image(), and finally png_write_end().
2081
2082(The final parameter of this call is not yet used. Someday it might point
2083to transformation parameters required by some future output transform.)
2084
2085You must use png_transforms and not call any png_set_transform() functions
2086when you use png_write_png().
2087
2088The low-level write interface
2089
2090If you are going the low-level route instead, you are now ready to
2091write all the file information up to the actual image data. You do
2092this with a call to png_write_info().
2093
2094 png_write_info(png_ptr, info_ptr);
2095
2096Note that there is one transformation you may need to do before
2097png_write_info(). In PNG files, the alpha channel in an image is the
2098level of opacity. If your data is supplied as a level of
2099transparency, you can invert the alpha channel before you write it, so
2100that 0 is fully transparent and 255 (in 8-bit or paletted images) or
210165535 (in 16-bit images) is fully opaque, with
2102
2103 png_set_invert_alpha(png_ptr);
2104
2105This must appear before png_write_info() instead of later with the
2106other transformations because in the case of paletted images the tRNS
2107chunk data has to be inverted before the tRNS chunk is written. If
2108your image is not a paletted image, the tRNS data (which in such cases
2109represents a single color to be rendered as transparent) won't need to
2110be changed, and you can safely do this transformation after your
2111png_write_info() call.
2112
2113If you need to write a private chunk that you want to appear before
2114the PLTE chunk when PLTE is present, you can write the PNG info in
2115two steps, and insert code to write your own chunk between them:
2116
2117 png_write_info_before_PLTE(png_ptr, info_ptr);
2118 png_set_unknown_chunks(png_ptr, info_ptr, ...);
2119 png_write_info(png_ptr, info_ptr);
2120
2121After you've written the file information, you can set up the library
2122to handle any special transformations of the image data. The various
2123ways to transform the data will be described in the order that they
2124should occur. This is important, as some of these change the color
2125type and/or bit depth of the data, and some others only work on
2126certain color types and bit depths. Even though each transformation
2127checks to see if it has data that it can do something with, you should
2128make sure to only enable a transformation if it will be valid for the
2129data. For example, don't swap red and blue on grayscale data.
2130
2131PNG files store RGB pixels packed into 3 or 6 bytes. This code tells
2132the library to strip input data that has 4 or 8 bytes per pixel down
2133to 3 or 6 bytes (or strip 2 or 4-byte grayscale+filler data to 1 or 2
2134bytes per pixel).
2135
2136 png_set_filler(png_ptr, 0, PNG_FILLER_BEFORE);
2137
2138where the 0 is unused, and the location is either PNG_FILLER_BEFORE or
2139PNG_FILLER_AFTER, depending upon whether the filler byte in the pixel
2140is stored XRGB or RGBX.
2141
2142PNG files pack pixels of bit depths 1, 2, and 4 into bytes as small as
2143they can, resulting in, for example, 8 pixels per byte for 1 bit files.
2144If the data is supplied at 1 pixel per byte, use this code, which will
2145correctly pack the pixels into a single byte:
2146
2147 png_set_packing(png_ptr);
2148
2149PNG files reduce possible bit depths to 1, 2, 4, 8, and 16. If your
2150data is of another bit depth, you can write an sBIT chunk into the
2151file so that decoders can recover the original data if desired.
2152
2153 /* Set the true bit depth of the image data */
2154 if (color_type & PNG_COLOR_MASK_COLOR)
2155 {
2156 sig_bit.red = true_bit_depth;
2157 sig_bit.green = true_bit_depth;
2158 sig_bit.blue = true_bit_depth;
2159 }
2160 else
2161 {
2162 sig_bit.gray = true_bit_depth;
2163 }
2164 if (color_type & PNG_COLOR_MASK_ALPHA)
2165 {
2166 sig_bit.alpha = true_bit_depth;
2167 }
2168
2169 png_set_sBIT(png_ptr, info_ptr, &sig_bit);
2170
2171If the data is stored in the row buffer in a bit depth other than
2172one supported by PNG (e.g. 3 bit data in the range 0-7 for a 4-bit PNG),
2173this will scale the values to appear to be the correct bit depth as
2174is required by PNG.
2175
2176 png_set_shift(png_ptr, &sig_bit);
2177
2178PNG files store 16 bit pixels in network byte order (big-endian,
2179ie. most significant bits first). This code would be used if they are
2180supplied the other way (little-endian, i.e. least significant bits
2181first, the way PCs store them):
2182
2183 if (bit_depth > 8)
2184 png_set_swap(png_ptr);
2185
2186If you are using packed-pixel images (1, 2, or 4 bits/pixel), and you
2187need to change the order the pixels are packed into bytes, you can use:
2188
2189 if (bit_depth < 8)
2190 png_set_packswap(png_ptr);
2191
2192PNG files store 3 color pixels in red, green, blue order. This code
2193would be used if they are supplied as blue, green, red:
2194
2195 png_set_bgr(png_ptr);
2196
2197PNG files describe monochrome as black being zero and white being
2198one. This code would be used if the pixels are supplied with this reversed
2199(black being one and white being zero):
2200
2201 png_set_invert_mono(png_ptr);
2202
2203Finally, you can write your own transformation function if none of
2204the existing ones meets your needs. This is done by setting a callback
2205with
2206
2207 png_set_write_user_transform_fn(png_ptr,
2208 write_transform_fn);
2209
2210You must supply the function
2211
2212 void write_transform_fn(png_ptr ptr, row_info_ptr
2213 row_info, png_bytep data)
2214
2215See pngtest.c for a working example. Your function will be called
2216before any of the other transformations are processed.
2217
2218You can also set up a pointer to a user structure for use by your
2219callback function.
2220
2221 png_set_user_transform_info(png_ptr, user_ptr, 0, 0);
2222
2223The user_channels and user_depth parameters of this function are ignored
2224when writing; you can set them to zero as shown.
2225
2226You can retrieve the pointer via the function png_get_user_transform_ptr().
2227For example:
2228
2229 voidp write_user_transform_ptr =
2230 png_get_user_transform_ptr(png_ptr);
2231
2232It is possible to have libpng flush any pending output, either manually,
2233or automatically after a certain number of lines have been written. To
2234flush the output stream a single time call:
2235
2236 png_write_flush(png_ptr);
2237
2238and to have libpng flush the output stream periodically after a certain
2239number of scanlines have been written, call:
2240
2241 png_set_flush(png_ptr, nrows);
2242
2243Note that the distance between rows is from the last time png_write_flush()
2244was called, or the first row of the image if it has never been called.
2245So if you write 50 lines, and then png_set_flush 25, it will flush the
2246output on the next scanline, and every 25 lines thereafter, unless
2247png_write_flush() is called before 25 more lines have been written.
2248If nrows is too small (less than about 10 lines for a 640 pixel wide
2249RGB image) the image compression may decrease noticeably (although this
2250may be acceptable for real-time applications). Infrequent flushing will
2251only degrade the compression performance by a few percent over images
2252that do not use flushing.
2253
2254Writing the image data
2255
2256That's it for the transformations. Now you can write the image data.
2257The simplest way to do this is in one function call. If you have the
2258whole image in memory, you can just call png_write_image() and libpng
2259will write the image. You will need to pass in an array of pointers to
2260each row. This function automatically handles interlacing, so you don't
2261need to call png_set_interlace_handling() or call this function multiple
2262times, or any of that other stuff necessary with png_write_rows().
2263
2264 png_write_image(png_ptr, row_pointers);
2265
2266where row_pointers is:
2267
2268 png_byte *row_pointers[height];
2269
2270You can point to void or char or whatever you use for pixels.
2271
2272If you don't want to write the whole image at once, you can
2273use png_write_rows() instead. If the file is not interlaced,
2274this is simple:
2275
2276 png_write_rows(png_ptr, row_pointers,
2277 number_of_rows);
2278
2279row_pointers is the same as in the png_write_image() call.
2280
2281If you are just writing one row at a time, you can do this with
2282a single row_pointer instead of an array of row_pointers:
2283
2284 png_bytep row_pointer = row;
2285
2286 png_write_row(png_ptr, row_pointer);
2287
2288When the file is interlaced, things can get a good deal more
2289complicated. The only currently (as of the PNG Specification
2290version 1.2, dated July 1999) defined interlacing scheme for PNG files
2291is the "Adam7" interlace scheme, that breaks down an
2292image into seven smaller images of varying size. libpng will build
2293these images for you, or you can do them yourself. If you want to
2294build them yourself, see the PNG specification for details of which
2295pixels to write when.
2296
2297If you don't want libpng to handle the interlacing details, just
2298use png_set_interlace_handling() and call png_write_rows() the
2299correct number of times to write all seven sub-images.
2300
2301If you want libpng to build the sub-images, call this before you start
2302writing any rows:
2303
2304 number_of_passes =
2305 png_set_interlace_handling(png_ptr);
2306
2307This will return the number of passes needed. Currently, this
2308is seven, but may change if another interlace type is added.
2309
2310Then write the complete image number_of_passes times.
2311
2312 png_write_rows(png_ptr, row_pointers,
2313 number_of_rows);
2314
2315As some of these rows are not used, and thus return immediately,
2316you may want to read about interlacing in the PNG specification,
2317and only update the rows that are actually used.
2318
2319Finishing a sequential write
2320
2321After you are finished writing the image, you should finish writing
2322the file. If you are interested in writing comments or time, you should
2323pass an appropriately filled png_info pointer. If you are not interested,
2324you can pass NULL.
2325
2326 png_write_end(png_ptr, info_ptr);
2327
2328When you are done, you can free all memory used by libpng like this:
2329
2330 png_destroy_write_struct(&png_ptr, &info_ptr);
2331
2332It is also possible to individually free the info_ptr members that
2333point to libpng-allocated storage with the following function:
2334
2335 png_free_data(png_ptr, info_ptr, mask, seq)
2336 mask - identifies data to be freed, a mask
2337 containing the bitwise OR of one or
2338 more of
2339 PNG_FREE_PLTE, PNG_FREE_TRNS,
2340 PNG_FREE_HIST, PNG_FREE_ICCP,
2341 PNG_FREE_PCAL, PNG_FREE_ROWS,
2342 PNG_FREE_SCAL, PNG_FREE_SPLT,
2343 PNG_FREE_TEXT, PNG_FREE_UNKN,
2344 or simply PNG_FREE_ALL
2345 seq - sequence number of item to be freed
2346 (-1 for all items)
2347
2348This function may be safely called when the relevant storage has
2349already been freed, or has not yet been allocated, or was allocated
2350by the user and not by libpng, and will in those
2351cases do nothing. The "seq" parameter is ignored if only one item
2352of the selected data type, such as PLTE, is allowed. If "seq" is not
2353-1, and multiple items are allowed for the data type identified in
2354the mask, such as text or sPLT, only the n'th item in the structure
2355is freed, where n is "seq".
2356
2357If you allocated data such as a palette that you passed
2358in to libpng with png_set_*, you must not free it until just before the call to
2359png_destroy_write_struct().
2360
2361The default behavior is only to free data that was allocated internally
2362by libpng. This can be changed, so that libpng will not free the data,
2363or so that it will free data that was allocated by the user with png_malloc()
2364or png_zalloc() and passed in via a png_set_*() function, with
2365
2366 png_data_freer(png_ptr, info_ptr, freer, mask)
2367 mask - which data elements are affected
2368 same choices as in png_free_data()
2369 freer - one of
2370 PNG_DESTROY_WILL_FREE_DATA
2371 PNG_SET_WILL_FREE_DATA
2372 PNG_USER_WILL_FREE_DATA
2373
2374For example, to transfer responsibility for some data from a read structure
2375to a write structure, you could use
2376
2377 png_data_freer(read_ptr, read_info_ptr,
2378 PNG_USER_WILL_FREE_DATA,
2379 PNG_FREE_PLTE|PNG_FREE_tRNS|PNG_FREE_hIST)
2380 png_data_freer(write_ptr, write_info_ptr,
2381 PNG_DESTROY_WILL_FREE_DATA,
2382 PNG_FREE_PLTE|PNG_FREE_tRNS|PNG_FREE_hIST)
2383
2384thereby briefly reassigning responsibility for freeing to the user but
2385immediately afterwards reassigning it once more to the write_destroy
2386function. Having done this, it would then be safe to destroy the read
2387structure and continue to use the PLTE, tRNS, and hIST data in the write
2388structure.
2389
2390This function only affects data that has already been allocated.
2391You can call this function before calling after the png_set_*() functions
2392to control whether the user or png_destroy_*() is supposed to free the data.
2393When the user assumes responsibility for libpng-allocated data, the
2394application must use
2395png_free() to free it, and when the user transfers responsibility to libpng
2396for data that the user has allocated, the user must have used png_malloc()
2397or png_zalloc() to allocate it.
2398
2399If you allocated text_ptr.text, text_ptr.lang, and text_ptr.translated_keyword
2400separately, do not transfer responsibility for freeing text_ptr to libpng,
2401because when libpng fills a png_text structure it combines these members with
2402the key member, and png_free_data() will free only text_ptr.key. Similarly,
2403if you transfer responsibility for free'ing text_ptr from libpng to your
2404application, your application must not separately free those members.
2405For a more compact example of writing a PNG image, see the file example.c.
2406
2407V. Modifying/Customizing libpng:
2408
2409There are two issues here. The first is changing how libpng does
2410standard things like memory allocation, input/output, and error handling.
2411The second deals with more complicated things like adding new chunks,
2412adding new transformations, and generally changing how libpng works.
2413Both of those are compile-time issues; that is, they are generally
2414determined at the time the code is written, and there is rarely a need
2415to provide the user with a means of changing them.
2416
2417Memory allocation, input/output, and error handling
2418
2419All of the memory allocation, input/output, and error handling in libpng
2420goes through callbacks that are user-settable. The default routines are
2421in pngmem.c, pngrio.c, pngwio.c, and pngerror.c, respectively. To change
2422these functions, call the appropriate png_set_*_fn() function.
2423
2424Memory allocation is done through the functions png_malloc()
2425and png_free(). These currently just call the standard C functions. If
2426your pointers can't access more then 64K at a time, you will want to set
2427MAXSEG_64K in zlib.h. Since it is unlikely that the method of handling
2428memory allocation on a platform will change between applications, these
2429functions must be modified in the library at compile time. If you prefer
2430to use a different method of allocating and freeing data, you can use
2431png_create_read_struct_2() or png_create_write_struct_2() to register
2432your own functions as described above.
2433These functions also provide a void pointer that can be retrieved via
2434
2435 mem_ptr=png_get_mem_ptr(png_ptr);
2436
2437Your replacement memory functions must have prototypes as follows:
2438
2439 png_voidp malloc_fn(png_structp png_ptr,
2440 png_size_t size);
2441 void free_fn(png_structp png_ptr, png_voidp ptr);
2442
2443Your malloc_fn() must return NULL in case of failure. The png_malloc()
2444function will normally call png_error() if it receives a NULL from the
2445system memory allocator or from your replacement malloc_fn().
2446
2447Your free_fn() will never be called with a NULL ptr, since libpng's
2448png_free() checks for NULL before calling free_fn().
2449
2450Input/Output in libpng is done through png_read() and png_write(),
2451which currently just call fread() and fwrite(). The FILE * is stored in
2452png_struct and is initialized via png_init_io(). If you wish to change
2453the method of I/O, the library supplies callbacks that you can set
2454through the function png_set_read_fn() and png_set_write_fn() at run
2455time, instead of calling the png_init_io() function. These functions
2456also provide a void pointer that can be retrieved via the function
2457png_get_io_ptr(). For example:
2458
2459 png_set_read_fn(png_structp read_ptr,
2460 voidp read_io_ptr, png_rw_ptr read_data_fn)
2461
2462 png_set_write_fn(png_structp write_ptr,
2463 voidp write_io_ptr, png_rw_ptr write_data_fn,
2464 png_flush_ptr output_flush_fn);
2465
2466 voidp read_io_ptr = png_get_io_ptr(read_ptr);
2467 voidp write_io_ptr = png_get_io_ptr(write_ptr);
2468
2469The replacement I/O functions must have prototypes as follows:
2470
2471 void user_read_data(png_structp png_ptr,
2472 png_bytep data, png_size_t length);
2473 void user_write_data(png_structp png_ptr,
2474 png_bytep data, png_size_t length);
2475 void user_flush_data(png_structp png_ptr);
2476
2477Supplying NULL for the read, write, or flush functions sets them back
2478to using the default C stream functions. It is an error to read from
2479a write stream, and vice versa.
2480
2481Error handling in libpng is done through png_error() and png_warning().
2482Errors handled through png_error() are fatal, meaning that png_error()
2483should never return to its caller. Currently, this is handled via
2484setjmp() and longjmp() (unless you have compiled libpng with
2485PNG_SETJMP_NOT_SUPPORTED, in which case it is handled via PNG_ABORT()),
2486but you could change this to do things like exit() if you should wish.
2487
2488On non-fatal errors, png_warning() is called
2489to print a warning message, and then control returns to the calling code.
2490By default png_error() and png_warning() print a message on stderr via
2491fprintf() unless the library is compiled with PNG_NO_CONSOLE_IO defined
2492(because you don't want the messages) or PNG_NO_STDIO defined (because
2493fprintf() isn't available). If you wish to change the behavior of the error
2494functions, you will need to set up your own message callbacks. These
2495functions are normally supplied at the time that the png_struct is created.
2496It is also possible to redirect errors and warnings to your own replacement
2497functions after png_create_*_struct() has been called by calling:
2498
2499 png_set_error_fn(png_structp png_ptr,
2500 png_voidp error_ptr, png_error_ptr error_fn,
2501 png_error_ptr warning_fn);
2502
2503 png_voidp error_ptr = png_get_error_ptr(png_ptr);
2504
2505If NULL is supplied for either error_fn or warning_fn, then the libpng
2506default function will be used, calling fprintf() and/or longjmp() if a
2507problem is encountered. The replacement error functions should have
2508parameters as follows:
2509
2510 void user_error_fn(png_structp png_ptr,
2511 png_const_charp error_msg);
2512 void user_warning_fn(png_structp png_ptr,
2513 png_const_charp warning_msg);
2514
2515The motivation behind using setjmp() and longjmp() is the C++ throw and
2516catch exception handling methods. This makes the code much easier to write,
2517as there is no need to check every return code of every function call.
2518However, there are some uncertainties about the status of local variables
2519after a longjmp, so the user may want to be careful about doing anything after
2520setjmp returns non-zero besides returning itself. Consult your compiler
2521documentation for more details. For an alternative approach, you may wish
2522to use the "cexcept" facility (see http://cexcept.sourceforge.net).
2523
2524Custom chunks
2525
2526If you need to read or write custom chunks, you may need to get deeper
2527into the libpng code. The library now has mechanisms for storing
2528and writing chunks of unknown type; you can even declare callbacks
2529for custom chunks. However, this may not be good enough if the
2530library code itself needs to know about interactions between your
2531chunk and existing `intrinsic' chunks.
2532
2533If you need to write a new intrinsic chunk, first read the PNG
2534specification. Acquire a first level of
2535understanding of how it works. Pay particular attention to the
2536sections that describe chunk names, and look at how other chunks were
2537designed, so you can do things similarly. Second, check out the
2538sections of libpng that read and write chunks. Try to find a chunk
2539that is similar to yours and use it as a template. More details can
2540be found in the comments inside the code. It is best to handle unknown
2541chunks in a generic method, via callback functions, instead of by
2542modifying libpng functions.
2543
2544If you wish to write your own transformation for the data, look through
2545the part of the code that does the transformations, and check out some of
2546the simpler ones to get an idea of how they work. Try to find a similar
2547transformation to the one you want to add and copy off of it. More details
2548can be found in the comments inside the code itself.
2549
2550Configuring for 16 bit platforms
2551
2552You will want to look into zconf.h to tell zlib (and thus libpng) that
2553it cannot allocate more then 64K at a time. Even if you can, the memory
2554won't be accessible. So limit zlib and libpng to 64K by defining MAXSEG_64K.
2555
2556Configuring for DOS
2557
2558For DOS users who only have access to the lower 640K, you will
2559have to limit zlib's memory usage via a png_set_compression_mem_level()
2560call. See zlib.h or zconf.h in the zlib library for more information.
2561
2562Configuring for Medium Model
2563
2564Libpng's support for medium model has been tested on most of the popular
2565compilers. Make sure MAXSEG_64K gets defined, USE_FAR_KEYWORD gets
2566defined, and FAR gets defined to far in pngconf.h, and you should be
2567all set. Everything in the library (except for zlib's structure) is
2568expecting far data. You must use the typedefs with the p or pp on
2569the end for pointers (or at least look at them and be careful). Make
2570note that the rows of data are defined as png_bytepp, which is an
2571unsigned char far * far *.
2572
2573Configuring for gui/windowing platforms:
2574
2575You will need to write new error and warning functions that use the GUI
2576interface, as described previously, and set them to be the error and
2577warning functions at the time that png_create_*_struct() is called,
2578in order to have them available during the structure initialization.
2579They can be changed later via png_set_error_fn(). On some compilers,
2580you may also have to change the memory allocators (png_malloc, etc.).
2581
2582Configuring for compiler xxx:
2583
2584All includes for libpng are in pngconf.h. If you need to add/change/delete
2585an include, this is the place to do it. The includes that are not
2586needed outside libpng are protected by the PNG_INTERNAL definition,
2587which is only defined for those routines inside libpng itself. The
2588files in libpng proper only include png.h, which includes pngconf.h.
2589
2590Configuring zlib:
2591
2592There are special functions to configure the compression. Perhaps the
2593most useful one changes the compression level, which currently uses
2594input compression values in the range 0 - 9. The library normally
2595uses the default compression level (Z_DEFAULT_COMPRESSION = 6). Tests
2596have shown that for a large majority of images, compression values in
2597the range 3-6 compress nearly as well as higher levels, and do so much
2598faster. For online applications it may be desirable to have maximum speed
2599(Z_BEST_SPEED = 1). With versions of zlib after v0.99, you can also
2600specify no compression (Z_NO_COMPRESSION = 0), but this would create
2601files larger than just storing the raw bitmap. You can specify the
2602compression level by calling:
2603
2604 png_set_compression_level(png_ptr, level);
2605
2606Another useful one is to reduce the memory level used by the library.
2607The memory level defaults to 8, but it can be lowered if you are
2608short on memory (running DOS, for example, where you only have 640K).
2609Note that the memory level does have an effect on compression; among
2610other things, lower levels will result in sections of incompressible
2611data being emitted in smaller stored blocks, with a correspondingly
2612larger relative overhead of up to 15% in the worst case.
2613
2614 png_set_compression_mem_level(png_ptr, level);
2615
2616The other functions are for configuring zlib. They are not recommended
2617for normal use and may result in writing an invalid PNG file. See
2618zlib.h for more information on what these mean.
2619
2620 png_set_compression_strategy(png_ptr,
2621 strategy);
2622 png_set_compression_window_bits(png_ptr,
2623 window_bits);
2624 png_set_compression_method(png_ptr, method);
2625 png_set_compression_buffer_size(png_ptr, size);
2626
2627Controlling row filtering
2628
2629If you want to control whether libpng uses filtering or not, which
2630filters are used, and how it goes about picking row filters, you
2631can call one of these functions. The selection and configuration
2632of row filters can have a significant impact on the size and
2633encoding speed and a somewhat lesser impact on the decoding speed
2634of an image. Filtering is enabled by default for RGB and grayscale
2635images (with and without alpha), but not for paletted images nor
2636for any images with bit depths less than 8 bits/pixel.
2637
2638The 'method' parameter sets the main filtering method, which is
2639currently only '0' in the PNG 1.2 specification. The 'filters'
2640parameter sets which filter(s), if any, should be used for each
2641scanline. Possible values are PNG_ALL_FILTERS and PNG_NO_FILTERS
2642to turn filtering on and off, respectively.
2643
2644Individual filter types are PNG_FILTER_NONE, PNG_FILTER_SUB,
2645PNG_FILTER_UP, PNG_FILTER_AVG, PNG_FILTER_PAETH, which can be bitwise
2646ORed together with '|' to specify one or more filters to use.
2647These filters are described in more detail in the PNG specification.
2648If you intend to change the filter type during the course of writing
2649the image, you should start with flags set for all of the filters
2650you intend to use so that libpng can initialize its internal
2651structures appropriately for all of the filter types. (Note that this
2652means the first row must always be adaptively filtered, because libpng
2653currently does not allocate the filter buffers until png_write_row()
2654is called for the first time.)
2655
2656 filters = PNG_FILTER_NONE | PNG_FILTER_SUB
2657 PNG_FILTER_UP | PNG_FILTER_AVE |
2658 PNG_FILTER_PAETH | PNG_ALL_FILTERS;
2659
2660 png_set_filter(png_ptr, PNG_FILTER_TYPE_BASE,
2661 filters);
2662 The second parameter can also be
2663 PNG_INTRAPIXEL_DIFFERENCING if you are
2664 writing a PNG to be embedded in a MNG
2665 datastream. This parameter must be the
2666 same as the value of filter_method used
2667 in png_set_IHDR().
2668
2669It is also possible to influence how libpng chooses from among the
2670available filters. This is done in one or both of two ways - by
2671telling it how important it is to keep the same filter for successive
2672rows, and by telling it the relative computational costs of the filters.
2673
2674 double weights[3] = {1.5, 1.3, 1.1},
2675 costs[PNG_FILTER_VALUE_LAST] =
2676 {1.0, 1.3, 1.3, 1.5, 1.7};
2677
2678 png_set_filter_heuristics(png_ptr,
2679 PNG_FILTER_HEURISTIC_WEIGHTED, 3,
2680 weights, costs);
2681
2682The weights are multiplying factors that indicate to libpng that the
2683row filter should be the same for successive rows unless another row filter
2684is that many times better than the previous filter. In the above example,
2685if the previous 3 filters were SUB, SUB, NONE, the SUB filter could have a
2686"sum of absolute differences" 1.5 x 1.3 times higher than other filters
2687and still be chosen, while the NONE filter could have a sum 1.1 times
2688higher than other filters and still be chosen. Unspecified weights are
2689taken to be 1.0, and the specified weights should probably be declining
2690like those above in order to emphasize recent filters over older filters.
2691
2692The filter costs specify for each filter type a relative decoding cost
2693to be considered when selecting row filters. This means that filters
2694with higher costs are less likely to be chosen over filters with lower
2695costs, unless their "sum of absolute differences" is that much smaller.
2696The costs do not necessarily reflect the exact computational speeds of
2697the various filters, since this would unduly influence the final image
2698size.
2699
2700Note that the numbers above were invented purely for this example and
2701are given only to help explain the function usage. Little testing has
2702been done to find optimum values for either the costs or the weights.
2703
2704Removing unwanted object code
2705
2706There are a bunch of #define's in pngconf.h that control what parts of
2707libpng are compiled. All the defines end in _SUPPORTED. If you are
2708never going to use a capability, you can change the #define to #undef
2709before recompiling libpng and save yourself code and data space, or
2710you can turn off individual capabilities with defines that begin with
2711PNG_NO_.
2712
2713You can also turn all of the transforms and ancillary chunk capabilities
2714off en masse with compiler directives that define
2715PNG_NO_READ[or WRITE]_TRANSFORMS, or PNG_NO_READ[or WRITE]_ANCILLARY_CHUNKS,
2716or all four,
2717along with directives to turn on any of the capabilities that you do
2718want. The PNG_NO_READ[or WRITE]_TRANSFORMS directives disable
2719the extra transformations but still leave the library fully capable of reading
2720and writing PNG files with all known public chunks
2721Use of the PNG_NO_READ[or WRITE]_ANCILLARY_CHUNKS directive
2722produces a library that is incapable of reading or writing ancillary chunks.
2723If you are not using the progressive reading capability, you can
2724turn that off with PNG_NO_PROGRESSIVE_READ (don't confuse
2725this with the INTERLACING capability, which you'll still have).
2726
2727All the reading and writing specific code are in separate files, so the
2728linker should only grab the files it needs. However, if you want to
2729make sure, or if you are building a stand alone library, all the
2730reading files start with pngr and all the writing files start with
2731pngw. The files that don't match either (like png.c, pngtrans.c, etc.)
2732are used for both reading and writing, and always need to be included.
2733The progressive reader is in pngpread.c
2734
2735If you are creating or distributing a dynamically linked library (a .so
2736or DLL file), you should not remove or disable any parts of the library,
2737as this will cause applications linked with different versions of the
2738library to fail if they call functions not available in your library.
2739The size of the library itself should not be an issue, because only
2740those sections that are actually used will be loaded into memory.
2741
2742Requesting debug printout
2743
2744The macro definition PNG_DEBUG can be used to request debugging
2745printout. Set it to an integer value in the range 0 to 3. Higher
2746numbers result in increasing amounts of debugging information. The
2747information is printed to the "stderr" file, unless another file
2748name is specified in the PNG_DEBUG_FILE macro definition.
2749
2750When PNG_DEBUG > 0, the following functions (macros) become available:
2751
2752 png_debug(level, message)
2753 png_debug1(level, message, p1)
2754 png_debug2(level, message, p1, p2)
2755
2756in which "level" is compared to PNG_DEBUG to decide whether to print
2757the message, "message" is the formatted string to be printed,
2758and p1 and p2 are parameters that are to be embedded in the string
2759according to printf-style formatting directives. For example,
2760
2761 png_debug1(2, "foo=%d\n", foo);
2762
2763is expanded to
2764
2765 if(PNG_DEBUG > 2)
2766 fprintf(PNG_DEBUG_FILE, "foo=%d\n", foo);
2767
2768When PNG_DEBUG is defined but is zero, the macros aren't defined, but you
2769can still use PNG_DEBUG to control your own debugging:
2770
2771 #ifdef PNG_DEBUG
2772 fprintf(stderr, ...
2773 #endif
2774
2775When PNG_DEBUG = 1, the macros are defined, but only png_debug statements
2776having level = 0 will be printed. There aren't any such statements in
2777this version of libpng, but if you insert some they will be printed.
2778
2779VII. MNG support
2780
2781The MNG specification (available at http://www.libpng.org/pub/mng) allows
2782certain extensions to PNG for PNG images that are embedded in MNG datastreams.
2783Libpng can support some of these extensions. To enable them, use the
2784png_permit_mng_features() function:
2785
2786 feature_set = png_permit_mng_features(png_ptr, mask)
2787 mask is a png_uint_32 containing the bitwise OR of the
2788 features you want to enable. These include
2789 PNG_FLAG_MNG_EMPTY_PLTE
2790 PNG_FLAG_MNG_FILTER_64
2791 PNG_ALL_MNG_FEATURES
2792 feature_set is a png_uint_32 that is the bitwise AND of
2793 your mask with the set of MNG features that is
2794 supported by the version of libpng that you are using.
2795
2796It is an error to use this function when reading or writing a standalone
2797PNG file with the PNG 8-byte signature. The PNG datastream must be wrapped
2798in a MNG datastream. As a minimum, it must have the MNG 8-byte signature
2799and the MHDR and MEND chunks. Libpng does not provide support for these
2800or any other MNG chunks; your application must provide its own support for
2801them. You may wish to consider using libmng (available at
2802http://www.libmng.com) instead.
2803
2804VIII. Changes to Libpng from version 0.88
2805
2806It should be noted that versions of libpng later than 0.96 are not
2807distributed by the original libpng author, Guy Schalnat, nor by
2808Andreas Dilger, who had taken over from Guy during 1996 and 1997, and
2809distributed versions 0.89 through 0.96, but rather by another member
2810of the original PNG Group, Glenn Randers-Pehrson. Guy and Andreas are
2811still alive and well, but they have moved on to other things.
2812
2813The old libpng functions png_read_init(), png_write_init(),
2814png_info_init(), png_read_destroy(), and png_write_destroy() have been
2815moved to PNG_INTERNAL in version 0.95 to discourage their use. These
2816functions will be removed from libpng version 2.0.0.
2817
2818The preferred method of creating and initializing the libpng structures is
2819via the png_create_read_struct(), png_create_write_struct(), and
2820png_create_info_struct() because they isolate the size of the structures
2821from the application, allow version error checking, and also allow the
2822use of custom error handling routines during the initialization, which
2823the old functions do not. The functions png_read_destroy() and
2824png_write_destroy() do not actually free the memory that libpng
2825allocated for these structs, but just reset the data structures, so they
2826can be used instead of png_destroy_read_struct() and
2827png_destroy_write_struct() if you feel there is too much system overhead
2828allocating and freeing the png_struct for each image read.
2829
2830Setting the error callbacks via png_set_message_fn() before
2831png_read_init() as was suggested in libpng-0.88 is no longer supported
2832because this caused applications that do not use custom error functions
2833to fail if the png_ptr was not initialized to zero. It is still possible
2834to set the error callbacks AFTER png_read_init(), or to change them with
2835png_set_error_fn(), which is essentially the same function, but with a new
2836name to force compilation errors with applications that try to use the old
2837method.
2838
2839Starting with version 1.0.7, you can find out which version of the library
2840you are using at run-time:
2841
2842 png_uint_32 libpng_vn = png_access_version_number();
2843
2844The number libpng_vn is constructed from the major version, minor
2845version with leading zero, and release number with leading zero,
2846(e.g., libpng_vn for version 1.0.7 is 10007).
2847
2848You can also check which version of png.h you used when compiling your
2849application:
2850
2851 png_uint_32 application_vn = PNG_LIBPNG_VER;
2852
2853IX. Y2K Compliance in libpng
2854
2855December 18, 2008
2856
2857Since the PNG Development group is an ad-hoc body, we can't make
2858an official declaration.
2859
2860This is your unofficial assurance that libpng from version 0.71 and
2861upward through 1.2.34 are Y2K compliant. It is my belief that earlier
2862versions were also Y2K compliant.
2863
2864Libpng only has three year fields. One is a 2-byte unsigned integer that
2865will hold years up to 65535. The other two hold the date in text
2866format, and will hold years up to 9999.
2867
2868The integer is
2869 "png_uint_16 year" in png_time_struct.
2870
2871The strings are
2872 "png_charp time_buffer" in png_struct and
2873 "near_time_buffer", which is a local character string in png.c.
2874
2875There are seven time-related functions:
2876
2877 png_convert_to_rfc_1123() in png.c
2878 (formerly png_convert_to_rfc_1152() in error)
2879 png_convert_from_struct_tm() in pngwrite.c, called
2880 in pngwrite.c
2881 png_convert_from_time_t() in pngwrite.c
2882 png_get_tIME() in pngget.c
2883 png_handle_tIME() in pngrutil.c, called in pngread.c
2884 png_set_tIME() in pngset.c
2885 png_write_tIME() in pngwutil.c, called in pngwrite.c
2886
2887All appear to handle dates properly in a Y2K environment. The
2888png_convert_from_time_t() function calls gmtime() to convert from system
2889clock time, which returns (year - 1900), which we properly convert to
2890the full 4-digit year. There is a possibility that applications using
2891libpng are not passing 4-digit years into the png_convert_to_rfc_1123()
2892function, or that they are incorrectly passing only a 2-digit year
2893instead of "year - 1900" into the png_convert_from_struct_tm() function,
2894but this is not under our control. The libpng documentation has always
2895stated that it works with 4-digit years, and the APIs have been
2896documented as such.
2897
2898The tIME chunk itself is also Y2K compliant. It uses a 2-byte unsigned
2899integer to hold the year, and can hold years as large as 65535.
2900
2901zlib, upon which libpng depends, is also Y2K compliant. It contains
2902no date-related code.
2903
2904
2905 Glenn Randers-Pehrson
2906 libpng maintainer
2907 PNG Development Group