source: trunk/src/3rdparty/libpng/libpng-1.2.40.txt@ 729

Last change on this file since 729 was 561, checked in by Dmitry A. Kuminov, 16 years ago

trunk: Merged in qt 4.6.1 sources.

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