]> git.saurik.com Git - wxWidgets.git/blame - src/png/libpng-manual.txt
Fix assorted typos in comments and other non-code.
[wxWidgets.git] / src / png / libpng-manual.txt
CommitLineData
9c0d9ce3 1libpng-manual.txt - A description on how to use and modify libpng
970f6abe 2
fff5f7d5 3 libpng version 1.6.2 - April 25, 2013
970f6abe
VZ
4 Updated and distributed by Glenn Randers-Pehrson
5 <glennrp at users.sourceforge.net>
fff5f7d5 6 Copyright (c) 1998-2013 Glenn Randers-Pehrson
b61cc19c
PC
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
970f6abe
VZ
11
12 Based on:
13
fff5f7d5 14 libpng versions 0.97, January 1998, through 1.6.2 - April 25, 2013
970f6abe 15 Updated and distributed by Glenn Randers-Pehrson
fff5f7d5 16 Copyright (c) 1998-2013 Glenn Randers-Pehrson
970f6abe
VZ
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
fff5f7d5
VZ
31 TABLE OF CONTENTS
32
33 I. Introduction
34 II. Structures
35 III. Reading
36 IV. Writing
37 V. Simplified API
38 VI. Modifying/Customizing libpng
39 VII. MNG support
40 VIII. Changes to Libpng from version 0.88
41 IX. Changes to Libpng from version 1.0.x to 1.2.x
42 X. Changes to Libpng from version 1.0.x/1.2.x to 1.4.x
43 XI. Changes to Libpng from version 1.4.x to 1.5.x
44 XII. Changes to Libpng from version 1.5.x to 1.6.x
45 XIII. Detecting libpng
46 XIV. Source code repository
47 XV. Coding style
48 XVI. Y2K Compliance in libpng
49
970f6abe
VZ
50I. Introduction
51
52This file describes how to use and modify the PNG reference library
53(known as libpng) for your own use. There are five sections to this
54file: introduction, structures, reading, writing, and modification and
55configuration notes for various special platforms. In addition to this
56file, example.c is a good starting point for using the library, as
57it is heavily commented and should include everything most people
58will need. We assume that libpng is already installed; see the
59INSTALL file for instructions on how to install libpng.
60
61For examples of libpng usage, see the files "example.c", "pngtest.c",
b61cc19c
PC
62and the files in the "contrib" directory, all of which are included in
63the libpng distribution.
970f6abe
VZ
64
65Libpng was written as a companion to the PNG specification, as a way
66of reducing the amount of time and effort it takes to support the PNG
67file format in application programs.
68
69The PNG specification (second edition), November 2003, is available as
fff5f7d5 70a W3C Recommendation and as an ISO Standard (ISO/IEC 15948:2004 (E)) at
970f6abe
VZ
71<http://www.w3.org/TR/2003/REC-PNG-20031110/
72The W3C and ISO documents have identical technical content.
73
74The PNG-1.2 specification is available at
75<http://www.libpng.org/pub/png/documents/>. It is technically equivalent
76to the PNG specification (second edition) but has some additional material.
77
78The PNG-1.0 specification is available
79as RFC 2083 <http://www.libpng.org/pub/png/documents/> and as a
80W3C Recommendation <http://www.w3.org/TR/REC.png.html>.
81
82Some additional chunks are described in the special-purpose public chunks
83documents at <http://www.libpng.org/pub/png/documents/>.
84
85Other information
86about PNG, and the latest version of libpng, can be found at the PNG home
87page, <http://www.libpng.org/pub/png/>.
88
89Most users will not have to modify the library significantly; advanced
90users may want to modify it more. All attempts were made to make it as
91complete as possible, while keeping the code easy to understand.
92Currently, this library only supports C. Support for other languages
93is being considered.
94
95Libpng has been designed to handle multiple sessions at one time,
96to be easily modifiable, to be portable to the vast majority of
97machines (ANSI, K&R, 16-, 32-, and 64-bit) available, and to be easy
98to use. The ultimate goal of libpng is to promote the acceptance of
99the PNG file format in whatever way possible. While there is still
100work to be done (see the TODO file), libpng should cover the
101majority of the needs of its users.
102
103Libpng uses zlib for its compression and decompression of PNG files.
104Further information about zlib, and the latest version of zlib, can
105be found at the zlib home page, <http://www.info-zip.org/pub/infozip/zlib/>.
106The zlib compression utility is a general purpose utility that is
107useful for more than PNG files, and can be used without libpng.
108See the documentation delivered with zlib for more details.
109You can usually find the source files for the zlib utility wherever you
110find the libpng source files.
111
112Libpng is thread safe, provided the threads are using different
113instances of the structures. Each thread should have its own
114png_struct and png_info instances, and thus its own image.
115Libpng does not protect itself against two threads using the
116same instance of a structure.
117
118II. Structures
119
120There are two main structures that are important to libpng, png_struct
9c0d9ce3
DS
121and png_info. Both are internal structures that are no longer exposed
122in the libpng interface (as of libpng 1.5.0).
970f6abe
VZ
123
124The png_info structure is designed to provide information about the
125PNG file. At one time, the fields of png_info were intended to be
126directly accessible to the user. However, this tended to cause problems
127with applications using dynamically loaded libraries, and as a result
128a set of interface functions for png_info (the png_get_*() and png_set_*()
9c0d9ce3
DS
129functions) was developed, and direct access to the png_info fields was
130deprecated..
131
132The png_struct structure is the object used by the library to decode a
133single image. As of 1.5.0 this structure is also not exposed.
134
135Almost all libpng APIs require a pointer to a png_struct as the first argument.
136Many (in particular the png_set and png_get APIs) also require a pointer
137to png_info as the second argument. Some application visible macros
138defined in png.h designed for basic data access (reading and writing
139integers in the PNG format) don't take a png_info pointer, but it's almost
140always safe to assume that a (png_struct*) has to be passed to call an API
141function.
142
143You can have more than one png_info structure associated with an image,
144as illustrated in pngtest.c, one for information valid prior to the
145IDAT chunks and another (called "end_info" below) for things after them.
970f6abe
VZ
146
147The png.h header file is an invaluable reference for programming with libpng.
148And while I'm on the topic, make sure you include the libpng header file:
149
150#include <png.h>
151
9c0d9ce3
DS
152and also (as of libpng-1.5.0) the zlib header file, if you need it:
153
154#include <zlib.h>
155
156Types
157
158The png.h header file defines a number of integral types used by the
159APIs. Most of these are fairly obvious; for example types corresponding
160to integers of particular sizes and types for passing color values.
161
162One exception is how non-integral numbers are handled. For application
fff5f7d5
VZ
163convenience most APIs that take such numbers have C (double) arguments;
164however, internally PNG, and libpng, use 32 bit signed integers and encode
9c0d9ce3
DS
165the value by multiplying by 100,000. As of libpng 1.5.0 a convenience
166macro PNG_FP_1 is defined in png.h along with a type (png_fixed_point)
167which is simply (png_int_32).
168
169All APIs that take (double) arguments also have a matching API that
170takes the corresponding fixed point integer arguments. The fixed point
171API has the same name as the floating point one with "_fixed" appended.
172The actual range of values permitted in the APIs is frequently less than
173the full range of (png_fixed_point) (-21474 to +21474). When APIs require
174a non-negative argument the type is recorded as png_uint_32 above. Consult
175the header file and the text below for more information.
176
177Special care must be take with sCAL chunk handling because the chunk itself
178uses non-integral values encoded as strings containing decimal floating point
179numbers. See the comments in the header file.
180
181Configuration
182
183The main header file function declarations are frequently protected by C
184preprocessing directives of the form:
185
186 #ifdef PNG_feature_SUPPORTED
187 declare-function
188 #endif
189 ...
190 #ifdef PNG_feature_SUPPORTED
191 use-function
192 #endif
193
194The library can be built without support for these APIs, although a
195standard build will have all implemented APIs. Application programs
196should check the feature macros before using an API for maximum
197portability. From libpng 1.5.0 the feature macros set during the build
198of libpng are recorded in the header file "pnglibconf.h" and this file
199is always included by png.h.
200
201If you don't need to change the library configuration from the default, skip to
202the next section ("Reading").
203
204Notice that some of the makefiles in the 'scripts' directory and (in 1.5.0) all
205of the build project files in the 'projects' directory simply copy
206scripts/pnglibconf.h.prebuilt to pnglibconf.h. This means that these build
207systems do not permit easy auto-configuration of the library - they only
208support the default configuration.
209
210The easiest way to make minor changes to the libpng configuration when
211auto-configuration is supported is to add definitions to the command line
212using (typically) CPPFLAGS. For example:
213
214CPPFLAGS=-DPNG_NO_FLOATING_ARITHMETIC
215
216will change the internal libpng math implementation for gamma correction and
217other arithmetic calculations to fixed point, avoiding the need for fast
218floating point support. The result can be seen in the generated pnglibconf.h -
219make sure it contains the changed feature macro setting.
220
221If you need to make more extensive configuration changes - more than one or two
222feature macro settings - you can either add -DPNG_USER_CONFIG to the build
223command line and put a list of feature macro settings in pngusr.h or you can set
224DFA_XTRA (a makefile variable) to a file containing the same information in the
225form of 'option' settings.
226
227A. Changing pnglibconf.h
228
229A variety of methods exist to build libpng. Not all of these support
230reconfiguration of pnglibconf.h. To reconfigure pnglibconf.h it must either be
231rebuilt from scripts/pnglibconf.dfa using awk or it must be edited by hand.
232
233Hand editing is achieved by copying scripts/pnglibconf.h.prebuilt to
234pnglibconf.h and changing the lines defining the supported features, paying
235very close attention to the 'option' information in scripts/pnglibconf.dfa
236that describes those features and their requirements. This is easy to get
237wrong.
238
239B. Configuration using DFA_XTRA
240
241Rebuilding from pnglibconf.dfa is easy if a functioning 'awk', or a later
242variant such as 'nawk' or 'gawk', is available. The configure build will
243automatically find an appropriate awk and build pnglibconf.h.
244The scripts/pnglibconf.mak file contains a set of make rules for doing the
245same thing if configure is not used, and many of the makefiles in the scripts
246directory use this approach.
247
248When rebuilding simply write a new file containing changed options and set
249DFA_XTRA to the name of this file. This causes the build to append the new file
250to the end of scripts/pnglibconf.dfa. The pngusr.dfa file should contain lines
251of the following forms:
252
253everything = off
254
255This turns all optional features off. Include it at the start of pngusr.dfa to
256make it easier to build a minimal configuration. You will need to turn at least
257some features on afterward to enable either reading or writing code, or both.
258
259option feature on
260option feature off
261
262Enable or disable a single feature. This will automatically enable other
263features required by a feature that is turned on or disable other features that
264require a feature which is turned off. Conflicting settings will cause an error
265message to be emitted by awk.
266
267setting feature default value
268
269Changes the default value of setting 'feature' to 'value'. There are a small
270number of settings listed at the top of pnglibconf.h, they are documented in the
271source code. Most of these values have performance implications for the library
272but most of them have no visible effect on the API. Some can also be overridden
273from the API.
274
275This method of building a customized pnglibconf.h is illustrated in
276contrib/pngminim/*. See the "$(PNGCONF):" target in the makefile and
277pngusr.dfa in these directories.
278
279C. Configuration using PNG_USR_CONFIG
280
281If -DPNG_USR_CONFIG is added to the CFLAGS when pnglibconf.h is built the file
282pngusr.h will automatically be included before the options in
283scripts/pnglibconf.dfa are processed. Your pngusr.h file should contain only
284macro definitions turning features on or off or setting settings.
285
286Apart from the global setting "everything = off" all the options listed above
287can be set using macros in pngusr.h:
288
289#define PNG_feature_SUPPORTED
290
291is equivalent to:
292
293option feature on
294
295#define PNG_NO_feature
296
297is equivalent to:
298
299option feature off
300
301#define PNG_feature value
302
303is equivalent to:
304
305setting feature default value
306
307Notice that in both cases, pngusr.dfa and pngusr.h, the contents of the
308pngusr file you supply override the contents of scripts/pnglibconf.dfa
309
310If confusing or incomprehensible behavior results it is possible to
311examine the intermediate file pnglibconf.dfn to find the full set of
312dependency information for each setting and option. Simply locate the
313feature in the file and read the C comments that precede it.
314
315This method is also illustrated in the contrib/pngminim/* makefiles and
316pngusr.h.
317
970f6abe
VZ
318III. Reading
319
320We'll now walk you through the possible functions to call when reading
321in a PNG file sequentially, briefly explaining the syntax and purpose
322of each one. See example.c and png.h for more detail. While
323progressive reading is covered in the next section, you will still
324need some of the functions discussed in this section to read a PNG
325file.
326
327Setup
328
329You will want to do the I/O initialization(*) before you get into libpng,
330so if it doesn't work, you don't have much to undo. Of course, you
331will also want to insure that you are, in fact, dealing with a PNG
332file. Libpng provides a simple check to see if a file is a PNG file.
333To use it, pass in the first 1 to 8 bytes of the file to the function
b61cc19c
PC
334png_sig_cmp(), and it will return 0 (false) if the bytes match the
335corresponding bytes of the PNG signature, or nonzero (true) otherwise.
336Of course, the more bytes you pass in, the greater the accuracy of the
337prediction.
970f6abe
VZ
338
339If you are intending to keep the file pointer open for use in libpng,
340you must ensure you don't read more than 8 bytes from the beginning
341of the file, and you also have to make a call to png_set_sig_bytes_read()
342with the number of bytes you read from the beginning. Libpng will
343then only check the bytes (if any) that your program didn't read.
344
345(*): If you are not using the standard I/O functions, you will need
346to replace them with custom functions. See the discussion under
347Customizing libpng.
348
349
350 FILE *fp = fopen(file_name, "rb");
351 if (!fp)
352 {
9c0d9ce3 353 return (ERROR);
970f6abe 354 }
9c0d9ce3 355
970f6abe
VZ
356 fread(header, 1, number, fp);
357 is_png = !png_sig_cmp(header, 0, number);
9c0d9ce3 358
970f6abe
VZ
359 if (!is_png)
360 {
9c0d9ce3 361 return (NOT_PNG);
970f6abe
VZ
362 }
363
364
365Next, png_struct and png_info need to be allocated and initialized. In
366order to ensure that the size of these structures is correct even with a
367dynamically linked libpng, there are functions to initialize and
368allocate the structures. We also pass the library version, optional
369pointers to error handling functions, and a pointer to a data struct for
370use by the error functions, if necessary (the pointer and functions can
371be NULL if the default error handlers are to be used). See the section
372on Changes to Libpng below regarding the old initialization functions.
373The structure allocation functions quietly return NULL if they fail to
374create the structure, so your application should check for that.
375
376 png_structp png_ptr = png_create_read_struct
9c0d9ce3 377 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
970f6abe 378 user_error_fn, user_warning_fn);
9c0d9ce3 379
970f6abe 380 if (!png_ptr)
9c0d9ce3 381 return (ERROR);
970f6abe
VZ
382
383 png_infop info_ptr = png_create_info_struct(png_ptr);
9c0d9ce3 384
970f6abe
VZ
385 if (!info_ptr)
386 {
9c0d9ce3 387 png_destroy_read_struct(&png_ptr,
970f6abe 388 (png_infopp)NULL, (png_infopp)NULL);
9c0d9ce3 389 return (ERROR);
970f6abe
VZ
390 }
391
392If you want to use your own memory allocation routines,
9c0d9ce3 393use a libpng that was built with PNG_USER_MEM_SUPPORTED defined, and use
970f6abe
VZ
394png_create_read_struct_2() instead of png_create_read_struct():
395
396 png_structp png_ptr = png_create_read_struct_2
9c0d9ce3 397 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
970f6abe
VZ
398 user_error_fn, user_warning_fn, (png_voidp)
399 user_mem_ptr, user_malloc_fn, user_free_fn);
400
401The error handling routines passed to png_create_read_struct()
402and the memory alloc/free routines passed to png_create_struct_2()
403are only necessary if you are not using the libpng supplied error
404handling and memory alloc/free functions.
405
406When libpng encounters an error, it expects to longjmp back
407to your routine. Therefore, you will need to call setjmp and pass
408your png_jmpbuf(png_ptr). If you read the file from different
9c0d9ce3 409routines, you will need to update the longjmp buffer every time you enter
970f6abe
VZ
410a new routine that will call a png_*() function.
411
412See your documentation of setjmp/longjmp for your compiler for more
413information on setjmp/longjmp. See the discussion on libpng error
414handling in the Customizing Libpng section below for more information
415on the libpng error handling. If an error occurs, and libpng longjmp's
416back to your setjmp, you will want to call png_destroy_read_struct() to
417free any memory.
418
419 if (setjmp(png_jmpbuf(png_ptr)))
420 {
9c0d9ce3 421 png_destroy_read_struct(&png_ptr, &info_ptr,
970f6abe 422 &end_info);
9c0d9ce3
DS
423 fclose(fp);
424 return (ERROR);
970f6abe
VZ
425 }
426
9c0d9ce3
DS
427Pass (png_infopp)NULL instead of &end_info if you didn't create
428an end_info structure.
429
970f6abe 430If you would rather avoid the complexity of setjmp/longjmp issues,
b61cc19c 431you can compile libpng with PNG_NO_SETJMP, in which case
970f6abe
VZ
432errors will result in a call to PNG_ABORT() which defaults to abort().
433
b61cc19c
PC
434You can #define PNG_ABORT() to a function that does something
435more useful than abort(), as long as your function does not
436return.
437
970f6abe
VZ
438Now you need to set up the input code. The default for libpng is to
439use the C function fread(). If you use this, you will need to pass a
440valid FILE * in the function png_init_io(). Be sure that the file is
441opened in binary mode. If you wish to handle reading data in another
442way, you need not call the png_init_io() function, but you must then
443implement the libpng I/O methods discussed in the Customizing Libpng
444section below.
445
446 png_init_io(png_ptr, fp);
447
448If you had previously opened the file and read any of the signature from
449the beginning in order to see if this was a PNG file, you need to let
450libpng know that there are some bytes missing from the start of the file.
451
452 png_set_sig_bytes(png_ptr, number);
453
b61cc19c
PC
454You can change the zlib compression buffer size to be used while
455reading compressed data with
456
457 png_set_compression_buffer_size(png_ptr, buffer_size);
458
459where the default size is 8192 bytes. Note that the buffer size
460is changed immediately and the buffer is reallocated immediately,
461instead of setting a flag to be acted upon later.
462
9c0d9ce3
DS
463If you want CRC errors to be handled in a different manner than
464the default, use
465
466 png_set_crc_action(png_ptr, crit_action, ancil_action);
467
468The values for png_set_crc_action() say how libpng is to handle CRC errors in
469ancillary and critical chunks, and whether to use the data contained
470therein. Note that it is impossible to "discard" data in a critical
471chunk.
472
473Choices for (int) crit_action are
474 PNG_CRC_DEFAULT 0 error/quit
475 PNG_CRC_ERROR_QUIT 1 error/quit
476 PNG_CRC_WARN_USE 3 warn/use data
477 PNG_CRC_QUIET_USE 4 quiet/use data
478 PNG_CRC_NO_CHANGE 5 use the current value
479
480Choices for (int) ancil_action are
481 PNG_CRC_DEFAULT 0 error/quit
482 PNG_CRC_ERROR_QUIT 1 error/quit
483 PNG_CRC_WARN_DISCARD 2 warn/discard data
484 PNG_CRC_WARN_USE 3 warn/use data
485 PNG_CRC_QUIET_USE 4 quiet/use data
486 PNG_CRC_NO_CHANGE 5 use the current value
487
970f6abe
VZ
488Setting up callback code
489
490You can set up a callback function to handle any unknown chunks in the
491input stream. You must supply the function
492
9c0d9ce3 493 read_chunk_callback(png_structp png_ptr,
970f6abe
VZ
494 png_unknown_chunkp chunk);
495 {
496 /* The unknown chunk structure contains your
497 chunk data, along with similar data for any other
498 unknown chunks: */
499
500 png_byte name[5];
501 png_byte *data;
502 png_size_t size;
503
504 /* Note that libpng has already taken care of
505 the CRC handling */
506
507 /* put your code here. Search for your chunk in the
508 unknown chunk structure, process it, and return one
509 of the following: */
510
511 return (-n); /* chunk had an error */
512 return (0); /* did not recognize */
513 return (n); /* success */
514 }
515
516(You can give your function another name that you like instead of
517"read_chunk_callback")
518
519To inform libpng about your function, use
520
521 png_set_read_user_chunk_fn(png_ptr, user_chunk_ptr,
522 read_chunk_callback);
523
524This names not only the callback function, but also a user pointer that
525you can retrieve with
526
527 png_get_user_chunk_ptr(png_ptr);
528
529If you call the png_set_read_user_chunk_fn() function, then all unknown
fff5f7d5
VZ
530chunks which the callback does not handle will be saved when read. You can
531cause them to be discarded by returning '1' ("handled") instead of '0'. This
532behavior will change in libpng 1.7 and the default handling set by the
533png_set_keep_unknown_chunks() function, described below, will be used when the
534callback returns 0. If you want the existing behavior you should set the global
535default to PNG_HANDLE_CHUNK_IF_SAFE now; this is compatible with all current
536versions of libpng and with 1.7. Libpng 1.6 issues a warning if you keep the
537default, or PNG_HANDLE_CHUNK_NEVER, and the callback returns 0.
970f6abe
VZ
538
539At this point, you can set up a callback function that will be
540called after each row has been read, which you can use to control
541a progress meter or the like. It's demonstrated in pngtest.c.
542You must supply a function
543
9c0d9ce3
DS
544 void read_row_callback(png_structp png_ptr,
545 png_uint_32 row, int pass);
970f6abe
VZ
546 {
547 /* put your code here */
548 }
549
550(You can give it another name that you like instead of "read_row_callback")
551
552To inform libpng about your function, use
553
554 png_set_read_status_fn(png_ptr, read_row_callback);
555
9c0d9ce3
DS
556When this function is called the row has already been completely processed and
557the 'row' and 'pass' refer to the next row to be handled. For the
558non-interlaced case the row that was just handled is simply one less than the
559passed in row number, and pass will always be 0. For the interlaced case the
560same applies unless the row value is 0, in which case the row just handled was
561the last one from one of the preceding passes. Because interlacing may skip a
562pass you cannot be sure that the preceding pass is just 'pass-1', if you really
563need to know what the last pass is record (row,pass) from the callback and use
564the last recorded value each time.
565
566As with the user transform you can find the output row using the
567PNG_ROW_FROM_PASS_ROW macro.
568
970f6abe
VZ
569Unknown-chunk handling
570
571Now you get to set the way the library processes unknown chunks in the
572input PNG stream. Both known and unknown chunks will be read. Normal
573behavior is that known chunks will be parsed into information in
574various info_ptr members while unknown chunks will be discarded. This
575behavior can be wasteful if your application will never use some known
576chunk types. To change this, you can call:
577
578 png_set_keep_unknown_chunks(png_ptr, keep,
579 chunk_list, num_chunks);
fff5f7d5 580
970f6abe
VZ
581 keep - 0: default unknown chunk handling
582 1: ignore; do not keep
583 2: keep only if safe-to-copy
584 3: keep even if unsafe-to-copy
9c0d9ce3 585
970f6abe
VZ
586 You can use these definitions:
587 PNG_HANDLE_CHUNK_AS_DEFAULT 0
588 PNG_HANDLE_CHUNK_NEVER 1
589 PNG_HANDLE_CHUNK_IF_SAFE 2
590 PNG_HANDLE_CHUNK_ALWAYS 3
9c0d9ce3 591
970f6abe
VZ
592 chunk_list - list of chunks affected (a byte string,
593 five bytes per chunk, NULL or '\0' if
fff5f7d5
VZ
594 num_chunks is positive; ignored if
595 numchunks <= 0).
9c0d9ce3 596
970f6abe 597 num_chunks - number of chunks affected; if 0, all
fff5f7d5
VZ
598 unknown chunks are affected. If positive,
599 only the chunks in the list are affected,
600 and if negative all unknown chunks and
601 all known chunks except for the IHDR,
602 PLTE, tRNS, IDAT, and IEND chunks are
603 affected.
970f6abe
VZ
604
605Unknown chunks declared in this way will be saved as raw data onto a
606list of png_unknown_chunk structures. If a chunk that is normally
607known to libpng is named in the list, it will be handled as unknown,
608according to the "keep" directive. If a chunk is named in successive
609instances of png_set_keep_unknown_chunks(), the final instance will
610take precedence. The IHDR and IEND chunks should not be named in
611chunk_list; if they are, libpng will process them normally anyway.
9c0d9ce3
DS
612If you know that your application will never make use of some particular
613chunks, use PNG_HANDLE_CHUNK_NEVER (or 1) as demonstrated below.
970f6abe
VZ
614
615Here is an example of the usage of png_set_keep_unknown_chunks(),
616where the private "vpAg" chunk will later be processed by a user chunk
617callback function:
618
619 png_byte vpAg[5]={118, 112, 65, 103, (png_byte) '\0'};
620
621 #if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
622 png_byte unused_chunks[]=
623 {
624 104, 73, 83, 84, (png_byte) '\0', /* hIST */
625 105, 84, 88, 116, (png_byte) '\0', /* iTXt */
626 112, 67, 65, 76, (png_byte) '\0', /* pCAL */
627 115, 67, 65, 76, (png_byte) '\0', /* sCAL */
628 115, 80, 76, 84, (png_byte) '\0', /* sPLT */
629 116, 73, 77, 69, (png_byte) '\0', /* tIME */
630 };
631 #endif
632
633 ...
634
635 #if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
fff5f7d5
VZ
636 /* ignore all unknown chunks
637 * (use global setting "2" for libpng16 and earlier):
638 */
639 png_set_keep_unknown_chunks(read_ptr, 2, NULL, 0);
9c0d9ce3 640
970f6abe
VZ
641 /* except for vpAg: */
642 png_set_keep_unknown_chunks(read_ptr, 2, vpAg, 1);
9c0d9ce3 643
970f6abe
VZ
644 /* also ignore unused known chunks: */
645 png_set_keep_unknown_chunks(read_ptr, 1, unused_chunks,
fff5f7d5 646 (int)(sizeof unused_chunks)/5);
970f6abe
VZ
647 #endif
648
b61cc19c
PC
649User limits
650
651The PNG specification allows the width and height of an image to be as
652large as 2^31-1 (0x7fffffff), or about 2.147 billion rows and columns.
653Since very few applications really need to process such large images,
654we have imposed an arbitrary 1-million limit on rows and columns.
655Larger images will be rejected immediately with a png_error() call. If
9c0d9ce3 656you wish to change this limit, you can use
b61cc19c
PC
657
658 png_set_user_limits(png_ptr, width_max, height_max);
659
660to set your own limits, or use width_max = height_max = 0x7fffffffL
661to allow all valid dimensions (libpng may reject some very large images
662anyway because of potential buffer overflow conditions).
663
664You should put this statement after you create the PNG structure and
665before calling png_read_info(), png_read_png(), or png_process_data().
9c0d9ce3
DS
666
667When writing a PNG datastream, put this statement before calling
668png_write_info() or png_write_png().
669
b61cc19c
PC
670If you need to retrieve the limits that are being applied, use
671
672 width_max = png_get_user_width_max(png_ptr);
673 height_max = png_get_user_height_max(png_ptr);
674
675The PNG specification sets no limit on the number of ancillary chunks
676allowed in a PNG datastream. You can impose a limit on the total number
677of sPLT, tEXt, iTXt, zTXt, and unknown chunks that will be stored, with
678
679 png_set_chunk_cache_max(png_ptr, user_chunk_cache_max);
680
681where 0x7fffffffL means unlimited. You can retrieve this limit with
682
683 chunk_cache_max = png_get_chunk_cache_max(png_ptr);
684
b61cc19c
PC
685You can also set a limit on the amount of memory that a compressed chunk
686other than IDAT can occupy, with
687
688 png_set_chunk_malloc_max(png_ptr, user_chunk_malloc_max);
689
690and you can retrieve the limit with
691
692 chunk_malloc_max = png_get_chunk_malloc_max(png_ptr);
693
694Any chunks that would cause either of these limits to be exceeded will
695be ignored.
970f6abe 696
9c0d9ce3
DS
697Information about your system
698
699If you intend to display the PNG or to incorporate it in other image data you
700need to tell libpng information about your display or drawing surface so that
701libpng can convert the values in the image to match the display.
702
703From libpng-1.5.4 this information can be set before reading the PNG file
704header. In earlier versions png_set_gamma() existed but behaved incorrectly if
705called before the PNG file header had been read and png_set_alpha_mode() did not
706exist.
707
708If you need to support versions prior to libpng-1.5.4 test the version number
709as illustrated below using "PNG_LIBPNG_VER >= 10504" and follow the procedures
710described in the appropriate manual page.
711
712You give libpng the encoding expected by your system expressed as a 'gamma'
713value. You can also specify a default encoding for the PNG file in
714case the required information is missing from the file. By default libpng
715assumes that the PNG data matches your system, to keep this default call:
716
717 png_set_gamma(png_ptr, screen_gamma, 1/screen_gamma/*file gamma*/);
718
719or you can use the fixed point equivalent:
720
fff5f7d5
VZ
721 png_set_gamma_fixed(png_ptr, PNG_FP_1*screen_gamma,
722 PNG_FP_1/screen_gamma);
9c0d9ce3
DS
723
724If you don't know the gamma for your system it is probably 2.2 - a good
725approximation to the IEC standard for display systems (sRGB). If images are
726too contrasty or washed out you got the value wrong - check your system
727documentation!
728
729Many systems permit the system gamma to be changed via a lookup table in the
730display driver, a few systems, including older Macs, change the response by
731default. As of 1.5.4 three special values are available to handle common
732situations:
733
fff5f7d5
VZ
734 PNG_DEFAULT_sRGB: Indicates that the system conforms to the
735 IEC 61966-2-1 standard. This matches almost
736 all systems.
737 PNG_GAMMA_MAC_18: Indicates that the system is an older
738 (pre Mac OS 10.6) Apple Macintosh system with
739 the default settings.
740 PNG_GAMMA_LINEAR: Just the fixed point value for 1.0 - indicates
741 that the system expects data with no gamma
742 encoding.
9c0d9ce3
DS
743
744You would use the linear (unencoded) value if you need to process the pixel
745values further because this avoids the need to decode and reencode each
746component value whenever arithmetic is performed. A lot of graphics software
747uses linear values for this reason, often with higher precision component values
748to preserve overall accuracy.
749
750The second thing you may need to tell libpng about is how your system handles
751alpha channel information. Some, but not all, PNG files contain an alpha
752channel. To display these files correctly you need to compose the data onto a
753suitable background, as described in the PNG specification.
754
755Libpng only supports composing onto a single color (using png_set_background;
756see below). Otherwise you must do the composition yourself and, in this case,
757you may need to call png_set_alpha_mode:
758
fff5f7d5
VZ
759 #if PNG_LIBPNG_VER >= 10504
760 png_set_alpha_mode(png_ptr, mode, screen_gamma);
761 #else
762 png_set_gamma(png_ptr, screen_gamma, 1.0/screen_gamma);
763 #endif
9c0d9ce3
DS
764
765The screen_gamma value is the same as the argument to png_set_gamma; however,
766how it affects the output depends on the mode. png_set_alpha_mode() sets the
767file gamma default to 1/screen_gamma, so normally you don't need to call
768png_set_gamma. If you need different defaults call png_set_gamma() before
769png_set_alpha_mode() - if you call it after it will override the settings made
770by png_set_alpha_mode().
771
772The mode is as follows:
773
774 PNG_ALPHA_PNG: The data is encoded according to the PNG specification. Red,
775green and blue, or gray, components are gamma encoded color
776values and are not premultiplied by the alpha value. The
777alpha value is a linear measure of the contribution of the
778pixel to the corresponding final output pixel.
779
780You should normally use this format if you intend to perform
781color correction on the color values; most, maybe all, color
782correction software has no handling for the alpha channel and,
783anyway, the math to handle pre-multiplied component values is
784unnecessarily complex.
785
786Before you do any arithmetic on the component values you need
787to remove the gamma encoding and multiply out the alpha
788channel. See the PNG specification for more detail. It is
789important to note that when an image with an alpha channel is
790scaled, linear encoded, pre-multiplied component values must
791be used!
792
793The remaining modes assume you don't need to do any further color correction or
794that if you do, your color correction software knows all about alpha (it
795probably doesn't!)
796
797 PNG_ALPHA_STANDARD: The data libpng produces
798is encoded in the standard way
799assumed by most correctly written graphics software.
800The gamma encoding will be removed by libpng and the
801linear component values will be pre-multiplied by the
802alpha channel.
803
804With this format the final image must be re-encoded to
805match the display gamma before the image is displayed.
806If your system doesn't do that, yet still seems to
807perform arithmetic on the pixels without decoding them,
808it is broken - check out the modes below.
809
810With PNG_ALPHA_STANDARD libpng always produces linear
811component values, whatever screen_gamma you supply. The
812screen_gamma value is, however, used as a default for
813the file gamma if the PNG file has no gamma information.
814
815If you call png_set_gamma() after png_set_alpha_mode() you
816will override the linear encoding. Instead the
817pre-multiplied pixel values will be gamma encoded but
818the alpha channel will still be linear. This may
819actually match the requirements of some broken software,
820but it is unlikely.
821
822While linear 8-bit data is often used it has
823insufficient precision for any image with a reasonable
824dynamic range. To avoid problems, and if your software
825supports it, use png_set_expand_16() to force all
826components to 16 bits.
827
828 PNG_ALPHA_OPTIMIZED: This mode is the same
829as PNG_ALPHA_STANDARD except that
830completely opaque pixels are gamma encoded according to
831the screen_gamma value. Pixels with alpha less than 1.0
832will still have linear components.
833
834Use this format if you have control over your
fff5f7d5 835compositing software and so don't do other arithmetic
9c0d9ce3
DS
836(such as scaling) on the data you get from libpng. Your
837compositing software can simply copy opaque pixels to
838the output but still has linear values for the
839non-opaque pixels.
840
841In normal compositing, where the alpha channel encodes
842partial pixel coverage (as opposed to broad area
843translucency), the inaccuracies of the 8-bit
844representation of non-opaque pixels are irrelevant.
845
846You can also try this format if your software is broken;
847it might look better.
848
849 PNG_ALPHA_BROKEN: This is PNG_ALPHA_STANDARD;
850however, all component values,
851including the alpha channel are gamma encoded. This is
852an appropriate format to try if your software, or more
853likely hardware, is totally broken, i.e., if it performs
854linear arithmetic directly on gamma encoded values.
855
856In most cases of broken software or hardware the bug in the final display
857manifests as a subtle halo around composited parts of the image. You may not
858even perceive this as a halo; the composited part of the image may simply appear
859separate from the background, as though it had been cut out of paper and pasted
860on afterward.
861
862If you don't have to deal with bugs in software or hardware, or if you can fix
863them, there are three recommended ways of using png_set_alpha_mode():
864
865 png_set_alpha_mode(png_ptr, PNG_ALPHA_PNG,
866 screen_gamma);
867
868You can do color correction on the result (libpng does not currently
869support color correction internally). When you handle the alpha channel
870you need to undo the gamma encoding and multiply out the alpha.
871
872 png_set_alpha_mode(png_ptr, PNG_ALPHA_STANDARD,
873 screen_gamma);
874 png_set_expand_16(png_ptr);
875
876If you are using the high level interface, don't call png_set_expand_16();
877instead pass PNG_TRANSFORM_EXPAND_16 to the interface.
878
879With this mode you can't do color correction, but you can do arithmetic,
880including composition and scaling, on the data without further processing.
881
882 png_set_alpha_mode(png_ptr, PNG_ALPHA_OPTIMIZED,
883 screen_gamma);
884
885You can avoid the expansion to 16-bit components with this mode, but you
886lose the ability to scale the image or perform other linear arithmetic.
887All you can do is compose the result onto a matching output. Since this
888mode is libpng-specific you also need to write your own composition
889software.
890
891If you don't need, or can't handle, the alpha channel you can call
892png_set_background() to remove it by compositing against a fixed color. Don't
893call png_set_strip_alpha() to do this - it will leave spurious pixel values in
894transparent parts of this image.
895
896 png_set_background(png_ptr, &background_color,
897 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1);
898
899The background_color is an RGB or grayscale value according to the data format
900libpng will produce for you. Because you don't yet know the format of the PNG
901file, if you call png_set_background at this point you must arrange for the
902format produced by libpng to always have 8-bit or 16-bit components and then
903store the color as an 8-bit or 16-bit color as appropriate. The color contains
904separate gray and RGB component values, so you can let libpng produce gray or
905RGB output according to the input format, but low bit depth grayscale images
906must always be converted to at least 8-bit format. (Even though low bit depth
907grayscale images can't have an alpha channel they can have a transparent
908color!)
909
910You set the transforms you need later, either as flags to the high level
911interface or libpng API calls for the low level interface. For reference the
912settings and API calls required are:
913
9148-bit values:
915 PNG_TRANSFORM_SCALE_16 | PNG_EXPAND
916 png_set_expand(png_ptr); png_set_scale_16(png_ptr);
917
918 If you must get exactly the same inaccurate results
919 produced by default in versions prior to libpng-1.5.4,
920 use PNG_TRANSFORM_STRIP_16 and png_set_strip_16(png_ptr)
921 instead.
922
92316-bit values:
924 PNG_TRANSFORM_EXPAND_16
925 png_set_expand_16(png_ptr);
926
927In either case palette image data will be expanded to RGB. If you just want
928color data you can add PNG_TRANSFORM_GRAY_TO_RGB or png_set_gray_to_rgb(png_ptr)
929to the list.
930
931Calling png_set_background before the PNG file header is read will not work
932prior to libpng-1.5.4. Because the failure may result in unexpected warnings or
933errors it is therefore much safer to call png_set_background after the head has
934been read. Unfortunately this means that prior to libpng-1.5.4 it cannot be
935used with the high level interface.
936
970f6abe
VZ
937The high-level read interface
938
939At this point there are two ways to proceed; through the high-level
940read interface, or through a sequence of low-level read operations.
941You can use the high-level interface if (a) you are willing to read
942the entire image into memory, and (b) the input transformations
943you want to do are limited to the following set:
944
945 PNG_TRANSFORM_IDENTITY No transformation
9c0d9ce3
DS
946 PNG_TRANSFORM_SCALE_16 Strip 16-bit samples to
947 8-bit accurately
948 PNG_TRANSFORM_STRIP_16 Chop 16-bit samples to
949 8-bit less accurately
970f6abe
VZ
950 PNG_TRANSFORM_STRIP_ALPHA Discard the alpha channel
951 PNG_TRANSFORM_PACKING Expand 1, 2 and 4-bit
952 samples to bytes
953 PNG_TRANSFORM_PACKSWAP Change order of packed
954 pixels to LSB first
955 PNG_TRANSFORM_EXPAND Perform set_expand()
956 PNG_TRANSFORM_INVERT_MONO Invert monochrome images
957 PNG_TRANSFORM_SHIFT Normalize pixels to the
958 sBIT depth
959 PNG_TRANSFORM_BGR Flip RGB to BGR, RGBA
960 to BGRA
961 PNG_TRANSFORM_SWAP_ALPHA Flip RGBA to ARGB or GA
962 to AG
963 PNG_TRANSFORM_INVERT_ALPHA Change alpha from opacity
964 to transparency
965 PNG_TRANSFORM_SWAP_ENDIAN Byte-swap 16-bit samples
b61cc19c
PC
966 PNG_TRANSFORM_GRAY_TO_RGB Expand grayscale samples
967 to RGB (or GA to RGBA)
9c0d9ce3 968 PNG_TRANSFORM_EXPAND_16 Expand samples to 16 bits
970f6abe
VZ
969
970(This excludes setting a background color, doing gamma transformation,
b61cc19c 971quantizing, and setting filler.) If this is the case, simply do this:
970f6abe
VZ
972
973 png_read_png(png_ptr, info_ptr, png_transforms, NULL)
974
b61cc19c
PC
975where png_transforms is an integer containing the bitwise OR of some
976set of transformation flags. This call is equivalent to png_read_info(),
970f6abe
VZ
977followed the set of transformations indicated by the transform mask,
978then png_read_image(), and finally png_read_end().
979
980(The final parameter of this call is not yet used. Someday it might point
981to transformation parameters required by some future input transform.)
982
983You must use png_transforms and not call any png_set_transform() functions
984when you use png_read_png().
985
986After you have called png_read_png(), you can retrieve the image data
987with
988
989 row_pointers = png_get_rows(png_ptr, info_ptr);
990
991where row_pointers is an array of pointers to the pixel data for each row:
992
993 png_bytep row_pointers[height];
994
995If you know your image size and pixel size ahead of time, you can allocate
996row_pointers prior to calling png_read_png() with
997
fff5f7d5 998 if (height > PNG_UINT_32_MAX/(sizeof (png_byte)))
970f6abe 999 png_error (png_ptr,
9c0d9ce3
DS
1000 "Image is too tall to process in memory");
1001
970f6abe
VZ
1002 if (width > PNG_UINT_32_MAX/pixel_size)
1003 png_error (png_ptr,
9c0d9ce3
DS
1004 "Image is too wide to process in memory");
1005
970f6abe 1006 row_pointers = png_malloc(png_ptr,
fff5f7d5 1007 height*(sizeof (png_bytep)));
9c0d9ce3 1008
b61cc19c
PC
1009 for (int i=0; i<height, i++)
1010 row_pointers[i]=NULL; /* security precaution */
9c0d9ce3 1011
970f6abe
VZ
1012 for (int i=0; i<height, i++)
1013 row_pointers[i]=png_malloc(png_ptr,
9c0d9ce3
DS
1014 width*pixel_size);
1015
970f6abe
VZ
1016 png_set_rows(png_ptr, info_ptr, &row_pointers);
1017
1018Alternatively you could allocate your image in one big block and define
1019row_pointers[i] to point into the proper places in your block.
1020
1021If you use png_set_rows(), the application is responsible for freeing
1022row_pointers (and row_pointers[i], if they were separately allocated).
1023
1024If you don't allocate row_pointers ahead of time, png_read_png() will
9c0d9ce3 1025do it, and it'll be free'ed by libpng when you call png_destroy_*().
970f6abe
VZ
1026
1027The low-level read interface
1028
1029If you are going the low-level route, you are now ready to read all
1030the file information up to the actual image data. You do this with a
1031call to png_read_info().
1032
1033 png_read_info(png_ptr, info_ptr);
1034
1035This will process all chunks up to but not including the image data.
1036
9c0d9ce3
DS
1037This also copies some of the data from the PNG file into the decode structure
1038for use in later transformations. Important information copied in is:
1039
10401) The PNG file gamma from the gAMA chunk. This overwrites the default value
1041provided by an earlier call to png_set_gamma or png_set_alpha_mode.
1042
10432) Prior to libpng-1.5.4 the background color from a bKGd chunk. This
1044damages the information provided by an earlier call to png_set_background
1045resulting in unexpected behavior. Libpng-1.5.4 no longer does this.
1046
10473) The number of significant bits in each component value. Libpng uses this to
1048optimize gamma handling by reducing the internal lookup table sizes.
1049
10504) The transparent color information from a tRNS chunk. This can be modified by
1051a later call to png_set_tRNS.
1052
970f6abe
VZ
1053Querying the info structure
1054
1055Functions are used to get the information from the info_ptr once it
1056has been read. Note that these fields may not be completely filled
1057in until png_read_end() has read the chunk data following the image.
1058
1059 png_get_IHDR(png_ptr, info_ptr, &width, &height,
1060 &bit_depth, &color_type, &interlace_type,
1061 &compression_type, &filter_method);
1062
1063 width - holds the width of the image
1064 in pixels (up to 2^31).
9c0d9ce3 1065
970f6abe
VZ
1066 height - holds the height of the image
1067 in pixels (up to 2^31).
9c0d9ce3 1068
970f6abe
VZ
1069 bit_depth - holds the bit depth of one of the
1070 image channels. (valid values are
1071 1, 2, 4, 8, 16 and depend also on
1072 the color_type. See also
1073 significant bits (sBIT) below).
9c0d9ce3 1074
970f6abe
VZ
1075 color_type - describes which color/alpha channels
1076 are present.
1077 PNG_COLOR_TYPE_GRAY
1078 (bit depths 1, 2, 4, 8, 16)
1079 PNG_COLOR_TYPE_GRAY_ALPHA
1080 (bit depths 8, 16)
1081 PNG_COLOR_TYPE_PALETTE
1082 (bit depths 1, 2, 4, 8)
1083 PNG_COLOR_TYPE_RGB
1084 (bit_depths 8, 16)
1085 PNG_COLOR_TYPE_RGB_ALPHA
1086 (bit_depths 8, 16)
1087
1088 PNG_COLOR_MASK_PALETTE
1089 PNG_COLOR_MASK_COLOR
1090 PNG_COLOR_MASK_ALPHA
1091
9c0d9ce3
DS
1092 interlace_type - (PNG_INTERLACE_NONE or
1093 PNG_INTERLACE_ADAM7)
1094
1095 compression_type - (must be PNG_COMPRESSION_TYPE_BASE
1096 for PNG 1.0)
1097
970f6abe
VZ
1098 filter_method - (must be PNG_FILTER_TYPE_BASE
1099 for PNG 1.0, and can also be
1100 PNG_INTRAPIXEL_DIFFERENCING if
1101 the PNG datastream is embedded in
1102 a MNG-1.0 datastream)
b61cc19c
PC
1103
1104 Any or all of interlace_type, compression_type, or
970f6abe
VZ
1105 filter_method can be NULL if you are
1106 not interested in their values.
1107
b61cc19c
PC
1108 Note that png_get_IHDR() returns 32-bit data into
1109 the application's width and height variables.
1110 This is an unsafe situation if these are 16-bit
1111 variables. In such situations, the
1112 png_get_image_width() and png_get_image_height()
1113 functions described below are safer.
1114
1115 width = png_get_image_width(png_ptr,
1116 info_ptr);
9c0d9ce3 1117
b61cc19c
PC
1118 height = png_get_image_height(png_ptr,
1119 info_ptr);
9c0d9ce3 1120
b61cc19c
PC
1121 bit_depth = png_get_bit_depth(png_ptr,
1122 info_ptr);
9c0d9ce3 1123
b61cc19c
PC
1124 color_type = png_get_color_type(png_ptr,
1125 info_ptr);
9c0d9ce3
DS
1126
1127 interlace_type = png_get_interlace_type(png_ptr,
b61cc19c 1128 info_ptr);
9c0d9ce3 1129
b61cc19c
PC
1130 compression_type = png_get_compression_type(png_ptr,
1131 info_ptr);
9c0d9ce3
DS
1132
1133 filter_method = png_get_filter_type(png_ptr,
b61cc19c
PC
1134 info_ptr);
1135
970f6abe 1136 channels = png_get_channels(png_ptr, info_ptr);
9c0d9ce3 1137
970f6abe
VZ
1138 channels - number of channels of info for the
1139 color type (valid values are 1 (GRAY,
1140 PALETTE), 2 (GRAY_ALPHA), 3 (RGB),
1141 4 (RGB_ALPHA or RGB + filler byte))
9c0d9ce3 1142
970f6abe 1143 rowbytes = png_get_rowbytes(png_ptr, info_ptr);
9c0d9ce3 1144
970f6abe
VZ
1145 rowbytes - number of bytes needed to hold a row
1146
1147 signature = png_get_signature(png_ptr, info_ptr);
9c0d9ce3 1148
970f6abe
VZ
1149 signature - holds the signature read from the
1150 file (if any). The data is kept in
1151 the same offset it would be if the
1152 whole signature were read (i.e. if an
1153 application had already read in 4
1154 bytes of signature before starting
1155 libpng, the remaining 4 bytes would
1156 be in signature[4] through signature[7]
1157 (see png_set_sig_bytes())).
1158
970f6abe
VZ
1159These are also important, but their validity depends on whether the chunk
1160has been read. The png_get_valid(png_ptr, info_ptr, PNG_INFO_<chunk>) and
1161png_get_<chunk>(png_ptr, info_ptr, ...) functions return non-zero if the
1162data has been read, or zero if it is missing. The parameters to the
b61cc19c
PC
1163png_get_<chunk> are set directly if they are simple data types, or a
1164pointer into the info_ptr is returned for any complex types.
970f6abe 1165
fff5f7d5
VZ
1166The colorspace data from gAMA, cHRM, sRGB, iCCP, and sBIT chunks
1167is simply returned to give the application information about how the
1168image was encoded. Libpng itself only does transformations using the file
1169gamma when combining semitransparent pixels with the background color, and,
1170since libpng-1.6.0, when converting between 8-bit sRGB and 16-bit linear pixels
1171within the simplified API. Libpng also uses the file gamma when converting
1172RGB to gray, beginning with libpng-1.0.5, if the application calls
1173png_set_rgb_to_gray()).
1174
970f6abe
VZ
1175 png_get_PLTE(png_ptr, info_ptr, &palette,
1176 &num_palette);
9c0d9ce3 1177
970f6abe
VZ
1178 palette - the palette for the file
1179 (array of png_color)
9c0d9ce3 1180
970f6abe
VZ
1181 num_palette - number of entries in the palette
1182
9c0d9ce3
DS
1183 png_get_gAMA(png_ptr, info_ptr, &file_gamma);
1184 png_get_gAMA_fixed(png_ptr, info_ptr, &int_file_gamma);
1185
1186 file_gamma - the gamma at which the file is
1187 written (PNG_INFO_gAMA)
1188
1189 int_file_gamma - 100,000 times the gamma at which the
1190 file is written
1191
fff5f7d5
VZ
1192 png_get_cHRM(png_ptr, info_ptr, &white_x, &white_y, &red_x,
1193 &red_y, &green_x, &green_y, &blue_x, &blue_y)
1194 png_get_cHRM_XYZ(png_ptr, info_ptr, &red_X, &red_Y, &red_Z,
1195 &green_X, &green_Y, &green_Z, &blue_X, &blue_Y,
1196 &blue_Z)
1197 png_get_cHRM_fixed(png_ptr, info_ptr, &int_white_x,
1198 &int_white_y, &int_red_x, &int_red_y,
1199 &int_green_x, &int_green_y, &int_blue_x,
1200 &int_blue_y)
9c0d9ce3 1201 png_get_cHRM_XYZ_fixed(png_ptr, info_ptr, &int_red_X, &int_red_Y,
fff5f7d5
VZ
1202 &int_red_Z, &int_green_X, &int_green_Y,
1203 &int_green_Z, &int_blue_X, &int_blue_Y,
1204 &int_blue_Z)
9c0d9ce3
DS
1205
1206 {white,red,green,blue}_{x,y}
fff5f7d5
VZ
1207 A color space encoding specified using the
1208 chromaticities of the end points and the
1209 white point. (PNG_INFO_cHRM)
9c0d9ce3
DS
1210
1211 {red,green,blue}_{X,Y,Z}
fff5f7d5
VZ
1212 A color space encoding specified using the
1213 encoding end points - the CIE tristimulus
1214 specification of the intended color of the red,
1215 green and blue channels in the PNG RGB data.
1216 The white point is simply the sum of the three
1217 end points. (PNG_INFO_cHRM)
970f6abe
VZ
1218
1219 png_get_sRGB(png_ptr, info_ptr, &srgb_intent);
9c0d9ce3
DS
1220
1221 file_srgb_intent - the rendering intent (PNG_INFO_sRGB)
970f6abe
VZ
1222 The presence of the sRGB chunk
1223 means that the pixel data is in the
1224 sRGB color space. This chunk also
1225 implies specific values of gAMA and
1226 cHRM.
1227
1228 png_get_iCCP(png_ptr, info_ptr, &name,
1229 &compression_type, &profile, &proflen);
9c0d9ce3
DS
1230
1231 name - The profile name.
1232
1233 compression_type - The compression type; always
1234 PNG_COMPRESSION_TYPE_BASE for PNG 1.0.
1235 You may give NULL to this argument to
1236 ignore it.
1237
1238 profile - International Color Consortium color
1239 profile data. May contain NULs.
1240
1241 proflen - length of profile data in bytes.
970f6abe
VZ
1242
1243 png_get_sBIT(png_ptr, info_ptr, &sig_bit);
9c0d9ce3 1244
970f6abe
VZ
1245 sig_bit - the number of significant bits for
1246 (PNG_INFO_sBIT) each of the gray,
1247 red, green, and blue channels,
1248 whichever are appropriate for the
1249 given color type (png_color_16)
1250
b61cc19c
PC
1251 png_get_tRNS(png_ptr, info_ptr, &trans_alpha,
1252 &num_trans, &trans_color);
9c0d9ce3 1253
b61cc19c
PC
1254 trans_alpha - array of alpha (transparency)
1255 entries for palette (PNG_INFO_tRNS)
9c0d9ce3
DS
1256
1257 num_trans - number of transparent entries
1258 (PNG_INFO_tRNS)
1259
b61cc19c 1260 trans_color - graylevel or color sample values of
970f6abe
VZ
1261 the single transparent color for
1262 non-paletted images (PNG_INFO_tRNS)
970f6abe
VZ
1263
1264 png_get_hIST(png_ptr, info_ptr, &hist);
1265 (PNG_INFO_hIST)
9c0d9ce3 1266
970f6abe
VZ
1267 hist - histogram of palette (array of
1268 png_uint_16)
1269
1270 png_get_tIME(png_ptr, info_ptr, &mod_time);
9c0d9ce3 1271
970f6abe
VZ
1272 mod_time - time image was last modified
1273 (PNG_VALID_tIME)
1274
1275 png_get_bKGD(png_ptr, info_ptr, &background);
9c0d9ce3
DS
1276
1277 background - background color (of type
1278 png_color_16p) (PNG_VALID_bKGD)
970f6abe
VZ
1279 valid 16-bit red, green and blue
1280 values, regardless of color_type
1281
1282 num_comments = png_get_text(png_ptr, info_ptr,
1283 &text_ptr, &num_text);
9c0d9ce3 1284
970f6abe 1285 num_comments - number of comments
9c0d9ce3 1286
970f6abe
VZ
1287 text_ptr - array of png_text holding image
1288 comments
9c0d9ce3 1289
970f6abe
VZ
1290 text_ptr[i].compression - type of compression used
1291 on "text" PNG_TEXT_COMPRESSION_NONE
1292 PNG_TEXT_COMPRESSION_zTXt
1293 PNG_ITXT_COMPRESSION_NONE
1294 PNG_ITXT_COMPRESSION_zTXt
9c0d9ce3 1295
970f6abe
VZ
1296 text_ptr[i].key - keyword for comment. Must contain
1297 1-79 characters.
9c0d9ce3 1298
970f6abe
VZ
1299 text_ptr[i].text - text comments for current
1300 keyword. Can be empty.
9c0d9ce3 1301
970f6abe
VZ
1302 text_ptr[i].text_length - length of text string,
1303 after decompression, 0 for iTXt
9c0d9ce3 1304
970f6abe
VZ
1305 text_ptr[i].itxt_length - length of itxt string,
1306 after decompression, 0 for tEXt/zTXt
9c0d9ce3 1307
970f6abe
VZ
1308 text_ptr[i].lang - language of comment (empty
1309 string for unknown).
9c0d9ce3 1310
970f6abe
VZ
1311 text_ptr[i].lang_key - keyword in UTF-8
1312 (empty string for unknown).
9c0d9ce3 1313
b61cc19c 1314 Note that the itxt_length, lang, and lang_key
72281370
DS
1315 members of the text_ptr structure only exist when the
1316 library is built with iTXt chunk support. Prior to
1317 libpng-1.4.0 the library was built by default without
1318 iTXt support. Also note that when iTXt is supported,
1319 they contain NULL pointers when the "compression"
1320 field contains PNG_TEXT_COMPRESSION_NONE or
1321 PNG_TEXT_COMPRESSION_zTXt.
b61cc19c 1322
970f6abe
VZ
1323 num_text - number of comments (same as
1324 num_comments; you can put NULL here
1325 to avoid the duplication)
9c0d9ce3 1326
970f6abe
VZ
1327 Note while png_set_text() will accept text, language,
1328 and translated keywords that can be NULL pointers, the
1329 structure returned by png_get_text will always contain
1330 regular zero-terminated C strings. They might be
1331 empty strings but they will never be NULL pointers.
1332
1333 num_spalettes = png_get_sPLT(png_ptr, info_ptr,
1334 &palette_ptr);
9c0d9ce3
DS
1335
1336 num_spalettes - number of sPLT chunks read.
1337
970f6abe
VZ
1338 palette_ptr - array of palette structures holding
1339 contents of one or more sPLT chunks
1340 read.
970f6abe
VZ
1341
1342 png_get_oFFs(png_ptr, info_ptr, &offset_x, &offset_y,
1343 &unit_type);
9c0d9ce3 1344
970f6abe 1345 offset_x - positive offset from the left edge
9c0d9ce3
DS
1346 of the screen (can be negative)
1347
970f6abe 1348 offset_y - positive offset from the top edge
9c0d9ce3
DS
1349 of the screen (can be negative)
1350
970f6abe
VZ
1351 unit_type - PNG_OFFSET_PIXEL, PNG_OFFSET_MICROMETER
1352
1353 png_get_pHYs(png_ptr, info_ptr, &res_x, &res_y,
1354 &unit_type);
9c0d9ce3 1355
970f6abe
VZ
1356 res_x - pixels/unit physical resolution in
1357 x direction
9c0d9ce3 1358
970f6abe
VZ
1359 res_y - pixels/unit physical resolution in
1360 x direction
9c0d9ce3 1361
970f6abe
VZ
1362 unit_type - PNG_RESOLUTION_UNKNOWN,
1363 PNG_RESOLUTION_METER
1364
1365 png_get_sCAL(png_ptr, info_ptr, &unit, &width,
1366 &height)
9c0d9ce3 1367
970f6abe 1368 unit - physical scale units (an integer)
9c0d9ce3 1369
970f6abe 1370 width - width of a pixel in physical scale units
9c0d9ce3 1371
970f6abe
VZ
1372 height - height of a pixel in physical scale units
1373 (width and height are doubles)
1374
1375 png_get_sCAL_s(png_ptr, info_ptr, &unit, &width,
1376 &height)
9c0d9ce3 1377
970f6abe 1378 unit - physical scale units (an integer)
9c0d9ce3 1379
970f6abe 1380 width - width of a pixel in physical scale units
9c0d9ce3
DS
1381 (expressed as a string)
1382
970f6abe
VZ
1383 height - height of a pixel in physical scale units
1384 (width and height are strings like "2.54")
1385
1386 num_unknown_chunks = png_get_unknown_chunks(png_ptr,
1387 info_ptr, &unknowns)
9c0d9ce3 1388
970f6abe
VZ
1389 unknowns - array of png_unknown_chunk
1390 structures holding unknown chunks
9c0d9ce3 1391
970f6abe 1392 unknowns[i].name - name of unknown chunk
9c0d9ce3 1393
970f6abe 1394 unknowns[i].data - data of unknown chunk
9c0d9ce3 1395
970f6abe 1396 unknowns[i].size - size of unknown chunk's data
9c0d9ce3 1397
970f6abe
VZ
1398 unknowns[i].location - position of chunk in file
1399
1400 The value of "i" corresponds to the order in which the
1401 chunks were read from the PNG file or inserted with the
1402 png_set_unknown_chunks() function.
1403
9c0d9ce3
DS
1404 The value of "location" is a bitwise "or" of
1405
1406 PNG_HAVE_IHDR (0x01)
1407 PNG_HAVE_PLTE (0x02)
1408 PNG_AFTER_IDAT (0x08)
1409
970f6abe
VZ
1410The data from the pHYs chunk can be retrieved in several convenient
1411forms:
1412
1413 res_x = png_get_x_pixels_per_meter(png_ptr,
1414 info_ptr)
9c0d9ce3 1415
970f6abe
VZ
1416 res_y = png_get_y_pixels_per_meter(png_ptr,
1417 info_ptr)
9c0d9ce3 1418
970f6abe
VZ
1419 res_x_and_y = png_get_pixels_per_meter(png_ptr,
1420 info_ptr)
9c0d9ce3 1421
970f6abe
VZ
1422 res_x = png_get_x_pixels_per_inch(png_ptr,
1423 info_ptr)
9c0d9ce3 1424
970f6abe
VZ
1425 res_y = png_get_y_pixels_per_inch(png_ptr,
1426 info_ptr)
9c0d9ce3 1427
970f6abe
VZ
1428 res_x_and_y = png_get_pixels_per_inch(png_ptr,
1429 info_ptr)
9c0d9ce3 1430
970f6abe
VZ
1431 aspect_ratio = png_get_pixel_aspect_ratio(png_ptr,
1432 info_ptr)
1433
9c0d9ce3 1434 Each of these returns 0 [signifying "unknown"] if
970f6abe 1435 the data is not present or if res_x is 0;
9c0d9ce3
DS
1436 res_x_and_y is 0 if res_x != res_y
1437
1438 Note that because of the way the resolutions are
1439 stored internally, the inch conversions won't
1440 come out to exactly even number. For example,
1441 72 dpi is stored as 0.28346 pixels/meter, and
1442 when this is retrieved it is 71.9988 dpi, so
1443 be sure to round the returned value appropriately
1444 if you want to display a reasonable-looking result.
970f6abe
VZ
1445
1446The data from the oFFs chunk can be retrieved in several convenient
1447forms:
1448
1449 x_offset = png_get_x_offset_microns(png_ptr, info_ptr);
9c0d9ce3 1450
970f6abe 1451 y_offset = png_get_y_offset_microns(png_ptr, info_ptr);
9c0d9ce3 1452
970f6abe 1453 x_offset = png_get_x_offset_inches(png_ptr, info_ptr);
9c0d9ce3 1454
970f6abe
VZ
1455 y_offset = png_get_y_offset_inches(png_ptr, info_ptr);
1456
9c0d9ce3 1457 Each of these returns 0 [signifying "unknown" if both
970f6abe 1458 x and y are 0] if the data is not present or if the
9c0d9ce3
DS
1459 chunk is present but the unit is the pixel. The
1460 remark about inexact inch conversions applies here
1461 as well, because a value in inches can't always be
1462 converted to microns and back without some loss
1463 of precision.
970f6abe 1464
9c0d9ce3 1465For more information, see the
970f6abe
VZ
1466PNG specification for chunk contents. Be careful with trusting
1467rowbytes, as some of the transformations could increase the space
1468needed to hold a row (expand, filler, gray_to_rgb, etc.).
1469See png_read_update_info(), below.
1470
1471A quick word about text_ptr and num_text. PNG stores comments in
1472keyword/text pairs, one pair per chunk, with no limit on the number
1473of text chunks, and a 2^31 byte limit on their size. While there are
1474suggested keywords, there is no requirement to restrict the use to these
1475strings. It is strongly suggested that keywords and text be sensible
1476to humans (that's the point), so don't use abbreviations. Non-printing
1477symbols are not allowed. See the PNG specification for more details.
1478There is also no requirement to have text after the keyword.
1479
1480Keywords should be limited to 79 Latin-1 characters without leading or
1481trailing spaces, but non-consecutive spaces are allowed within the
1482keyword. It is possible to have the same keyword any number of times.
1483The text_ptr is an array of png_text structures, each holding a
1484pointer to a language string, a pointer to a keyword and a pointer to
1485a text string. The text string, language code, and translated
1486keyword may be empty or NULL pointers. The keyword/text
1487pairs are put into the array in the order that they are received.
1488However, some or all of the text chunks may be after the image, so, to
1489make sure you have read all the text chunks, don't mess with these
1490until after you read the stuff after the image. This will be
1491mentioned again below in the discussion that goes with png_read_end().
1492
1493Input transformations
1494
1495After you've read the header information, you can set up the library
1496to handle any special transformations of the image data. The various
1497ways to transform the data will be described in the order that they
1498should occur. This is important, as some of these change the color
1499type and/or bit depth of the data, and some others only work on
9c0d9ce3 1500certain color types and bit depths.
970f6abe 1501
9c0d9ce3
DS
1502Transformations you request are ignored if they don't have any meaning for a
1503particular input data format. However some transformations can have an effect
1504as a result of a previous transformation. If you specify a contradictory set of
1505transformations, for example both adding and removing the alpha channel, you
1506cannot predict the final result.
1507
1508The color used for the transparency values should be supplied in the same
1509format/depth as the current image data. It is stored in the same format/depth
1510as the image data in a tRNS chunk, so this is what libpng expects for this data.
1511
1512The color used for the background value depends on the need_expand argument as
1513described below.
970f6abe
VZ
1514
1515Data will be decoded into the supplied row buffers packed into bytes
1516unless the library has been told to transform it into another format.
1517For example, 4 bit/pixel paletted or grayscale data will be returned
15182 pixels/byte with the leftmost pixel in the high-order bits of the
1519byte, unless png_set_packing() is called. 8-bit RGB data will be stored
1520in RGB RGB RGB format unless png_set_filler() or png_set_add_alpha()
1521is called to insert filler bytes, either before or after each RGB triplet.
152216-bit RGB data will be returned RRGGBB RRGGBB, with the most significant
9c0d9ce3 1523byte of the color value first, unless png_set_scale_16() is called to
970f6abe
VZ
1524transform it to regular RGB RGB triplets, or png_set_filler() or
1525png_set_add alpha() is called to insert filler bytes, either before or
1526after each RRGGBB triplet. Similarly, 8-bit or 16-bit grayscale data can
9c0d9ce3
DS
1527be modified with png_set_filler(), png_set_add_alpha(), png_set_strip_16(),
1528or png_set_scale_16().
970f6abe
VZ
1529
1530The following code transforms grayscale images of less than 8 to 8 bits,
1531changes paletted images to RGB, and adds a full alpha channel if there is
1532transparency information in a tRNS chunk. This is most useful on
1533grayscale images with bit depths of 2 or 4 or if there is a multiple-image
1534viewing application that wishes to treat all images in the same way.
1535
1536 if (color_type == PNG_COLOR_TYPE_PALETTE)
1537 png_set_palette_to_rgb(png_ptr);
1538
970f6abe
VZ
1539 if (png_get_valid(png_ptr, info_ptr,
1540 PNG_INFO_tRNS)) png_set_tRNS_to_alpha(png_ptr);
1541
9c0d9ce3
DS
1542 if (color_type == PNG_COLOR_TYPE_GRAY &&
1543 bit_depth < 8) png_set_expand_gray_1_2_4_to_8(png_ptr);
1544
1545The first two functions are actually aliases for png_set_expand(), added
970f6abe
VZ
1546in libpng version 1.0.4, with the function names expanded to improve code
1547readability. In some future version they may actually do different
1548things.
1549
1550As of libpng version 1.2.9, png_set_expand_gray_1_2_4_to_8() was
1551added. It expands the sample depth without changing tRNS to alpha.
970f6abe 1552
9c0d9ce3
DS
1553As of libpng version 1.5.2, png_set_expand_16() was added. It behaves as
1554png_set_expand(); however, the resultant channels have 16 bits rather than 8.
1555Use this when the output color or gray channels are made linear to avoid fairly
1556severe accuracy loss.
1557
1558 if (bit_depth < 16)
1559 png_set_expand_16(png_ptr);
1560
1561PNG can have files with 16 bits per channel. If you only can handle
15628 bits per channel, this will strip the pixels down to 8-bit.
1563
1564 if (bit_depth == 16)
1565#if PNG_LIBPNG_VER >= 10504
1566 png_set_scale_16(png_ptr);
1567#else
1568 png_set_strip_16(png_ptr);
1569#endif
1570
1571(The more accurate "png_set_scale_16()" API became available in libpng version
15721.5.4).
1573
1574If you need to process the alpha channel on the image separately from the image
1575data (for example if you convert it to a bitmap mask) it is possible to have
1576libpng strip the channel leaving just RGB or gray data:
1577
1578 if (color_type & PNG_COLOR_MASK_ALPHA)
1579 png_set_strip_alpha(png_ptr);
1580
1581If you strip the alpha channel you need to find some other way of dealing with
1582the information. If, instead, you want to convert the image to an opaque
1583version with no alpha channel use png_set_background; see below.
1584
1585As of libpng version 1.5.2, almost all useful expansions are supported, the
1586major ommissions are conversion of grayscale to indexed images (which can be
1587done trivially in the application) and conversion of indexed to grayscale (which
1588can be done by a trivial manipulation of the palette.)
b61cc19c
PC
1589
1590In the following table, the 01 means grayscale with depth<8, 31 means
1591indexed with depth<8, other numerals represent the color type, "T" means
1592the tRNS chunk is present, A means an alpha channel is present, and O
1593means tRNS or alpha is present but all pixels in the image are opaque.
1594
9c0d9ce3 1595 FROM 01 31 0 0T 0O 2 2T 2O 3 3T 3O 4A 4O 6A 6O
b61cc19c 1596 TO
9c0d9ce3
DS
1597 01 - [G] - - - - - - - - - - - - -
1598 31 [Q] Q [Q] [Q] [Q] Q Q Q Q Q Q [Q] [Q] Q Q
1599 0 1 G + . . G G G G G G B B GB GB
1600 0T lt Gt t + . Gt G G Gt G G Bt Bt GBt GBt
1601 0O lt Gt t . + Gt Gt G Gt Gt G Bt Bt GBt GBt
1602 2 C P C C C + . . C - - CB CB B B
1603 2T Ct - Ct C C t + t - - - CBt CBt Bt Bt
1604 2O Ct - Ct C C t t + - - - CBt CBt Bt Bt
1605 3 [Q] p [Q] [Q] [Q] Q Q Q + . . [Q] [Q] Q Q
1606 3T [Qt] p [Qt][Q] [Q] Qt Qt Qt t + t [Qt][Qt] Qt Qt
1607 3O [Qt] p [Qt][Q] [Q] Qt Qt Qt t t + [Qt][Qt] Qt Qt
1608 4A lA G A T T GA GT GT GA GT GT + BA G GBA
1609 4O lA GBA A T T GA GT GT GA GT GT BA + GBA G
1610 6A CA PA CA C C A T tT PA P P C CBA + BA
1611 6O CA PBA CA C C A tT T PA P P CBA C BA +
b61cc19c
PC
1612
1613Within the matrix,
9c0d9ce3 1614 "+" identifies entries where 'from' and 'to' are the same.
b61cc19c 1615 "-" means the transformation is not supported.
9c0d9ce3
DS
1616 "." means nothing is necessary (a tRNS chunk can just be ignored).
1617 "t" means the transformation is obtained by png_set_tRNS.
1618 "A" means the transformation is obtained by png_set_add_alpha().
b61cc19c
PC
1619 "X" means the transformation is obtained by png_set_expand().
1620 "1" means the transformation is obtained by
fff5f7d5
VZ
1621 png_set_expand_gray_1_2_4_to_8() (and by png_set_expand()
1622 if there is no transparency in the original or the final
1623 format).
9c0d9ce3
DS
1624 "C" means the transformation is obtained by png_set_gray_to_rgb().
1625 "G" means the transformation is obtained by png_set_rgb_to_gray().
b61cc19c
PC
1626 "P" means the transformation is obtained by
1627 png_set_expand_palette_to_rgb().
9c0d9ce3
DS
1628 "p" means the transformation is obtained by png_set_packing().
1629 "Q" means the transformation is obtained by png_set_quantize().
fff5f7d5
VZ
1630 "T" means the transformation is obtained by
1631 png_set_tRNS_to_alpha().
1632 "B" means the transformation is obtained by
1633 png_set_background(), or png_strip_alpha().
9c0d9ce3
DS
1634
1635When an entry has multiple transforms listed all are required to cause the
1636right overall transformation. When two transforms are separated by a comma
1637either will do the job. When transforms are enclosed in [] the transform should
1638do the job but this is currently unimplemented - a different format will result
1639if the suggested transformations are used.
970f6abe
VZ
1640
1641In PNG files, the alpha channel in an image
1642is the level of opacity. If you need the alpha channel in an image to
1643be the level of transparency instead of opacity, you can invert the
1644alpha channel (or the tRNS chunk data) after it's read, so that 0 is
1645fully opaque and 255 (in 8-bit or paletted images) or 65535 (in 16-bit
1646images) is fully transparent, with
1647
1648 png_set_invert_alpha(png_ptr);
1649
1650PNG files pack pixels of bit depths 1, 2, and 4 into bytes as small as
1651they can, resulting in, for example, 8 pixels per byte for 1 bit
1652files. This code expands to 1 pixel per byte without changing the
1653values of the pixels:
1654
1655 if (bit_depth < 8)
9c0d9ce3 1656 png_set_packing(png_ptr);
970f6abe
VZ
1657
1658PNG files have possible bit depths of 1, 2, 4, 8, and 16. All pixels
1659stored in a PNG image have been "scaled" or "shifted" up to the next
b61cc19c
PC
1660higher possible bit depth (e.g. from 5 bits/sample in the range [0,31]
1661to 8 bits/sample in the range [0, 255]). However, it is also possible
1662to convert the PNG pixel data back to the original bit depth of the
1663image. This call reduces the pixels back down to the original bit depth:
970f6abe
VZ
1664
1665 png_color_8p sig_bit;
1666
1667 if (png_get_sBIT(png_ptr, info_ptr, &sig_bit))
9c0d9ce3 1668 png_set_shift(png_ptr, sig_bit);
970f6abe
VZ
1669
1670PNG files store 3-color pixels in red, green, blue order. This code
1671changes the storage of the pixels to blue, green, red:
1672
1673 if (color_type == PNG_COLOR_TYPE_RGB ||
1674 color_type == PNG_COLOR_TYPE_RGB_ALPHA)
9c0d9ce3 1675 png_set_bgr(png_ptr);
970f6abe
VZ
1676
1677PNG files store RGB pixels packed into 3 or 6 bytes. This code expands them
1678into 4 or 8 bytes for windowing systems that need them in this format:
1679
1680 if (color_type == PNG_COLOR_TYPE_RGB)
9c0d9ce3 1681 png_set_filler(png_ptr, filler, PNG_FILLER_BEFORE);
970f6abe
VZ
1682
1683where "filler" is the 8 or 16-bit number to fill with, and the location is
1684either PNG_FILLER_BEFORE or PNG_FILLER_AFTER, depending upon whether
1685you want the filler before the RGB or after. This transformation
1686does not affect images that already have full alpha channels. To add an
1687opaque alpha channel, use filler=0xff or 0xffff and PNG_FILLER_AFTER which
1688will generate RGBA pixels.
1689
1690Note that png_set_filler() does not change the color type. If you want
1691to do that, you can add a true alpha channel with
1692
1693 if (color_type == PNG_COLOR_TYPE_RGB ||
9c0d9ce3
DS
1694 color_type == PNG_COLOR_TYPE_GRAY)
1695 png_set_add_alpha(png_ptr, filler, PNG_FILLER_AFTER);
970f6abe
VZ
1696
1697where "filler" contains the alpha value to assign to each pixel.
1698This function was added in libpng-1.2.7.
1699
1700If you are reading an image with an alpha channel, and you need the
1701data as ARGB instead of the normal PNG format RGBA:
1702
1703 if (color_type == PNG_COLOR_TYPE_RGB_ALPHA)
9c0d9ce3 1704 png_set_swap_alpha(png_ptr);
970f6abe
VZ
1705
1706For some uses, you may want a grayscale image to be represented as
1707RGB. This code will do that conversion:
1708
1709 if (color_type == PNG_COLOR_TYPE_GRAY ||
1710 color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
9c0d9ce3 1711 png_set_gray_to_rgb(png_ptr);
970f6abe
VZ
1712
1713Conversely, you can convert an RGB or RGBA image to grayscale or grayscale
1714with alpha.
1715
1716 if (color_type == PNG_COLOR_TYPE_RGB ||
1717 color_type == PNG_COLOR_TYPE_RGB_ALPHA)
fff5f7d5
VZ
1718 png_set_rgb_to_gray(png_ptr, error_action,
1719 double red_weight, double green_weight);
970f6abe
VZ
1720
1721 error_action = 1: silently do the conversion
9c0d9ce3 1722
970f6abe
VZ
1723 error_action = 2: issue a warning if the original
1724 image has any pixel where
1725 red != green or red != blue
9c0d9ce3 1726
970f6abe
VZ
1727 error_action = 3: issue an error and abort the
1728 conversion if the original
1729 image has any pixel where
1730 red != green or red != blue
1731
9c0d9ce3
DS
1732 red_weight: weight of red component
1733
1734 green_weight: weight of green component
970f6abe 1735 If either weight is negative, default
9c0d9ce3
DS
1736 weights are used.
1737
1738In the corresponding fixed point API the red_weight and green_weight values are
1739simply scaled by 100,000:
1740
fff5f7d5
VZ
1741 png_set_rgb_to_gray(png_ptr, error_action,
1742 png_fixed_point red_weight,
9c0d9ce3 1743 png_fixed_point green_weight);
970f6abe
VZ
1744
1745If you have set error_action = 1 or 2, you can
1746later check whether the image really was gray, after processing
1747the image rows, with the png_get_rgb_to_gray_status(png_ptr) function.
1748It will return a png_byte that is zero if the image was gray or
9c0d9ce3 17491 if there were any non-gray pixels. Background and sBIT data
970f6abe 1750will be silently converted to grayscale, using the green channel
9c0d9ce3 1751data for sBIT, regardless of the error_action setting.
970f6abe 1752
9c0d9ce3
DS
1753The default values come from the PNG file cHRM chunk if present; otherwise, the
1754defaults correspond to the ITU-R recommendation 709, and also the sRGB color
1755space, as recommended in the Charles Poynton's Colour FAQ,
1756<http://www.poynton.com/>, in section 9:
970f6abe 1757
9c0d9ce3 1758 <http://www.poynton.com/notes/colour_and_gamma/ColorFAQ.html#RTFToC9>
970f6abe 1759
9c0d9ce3 1760 Y = 0.2126 * R + 0.7152 * G + 0.0722 * B
970f6abe 1761
9c0d9ce3
DS
1762Previous versions of this document, 1998 through 2002, recommended a slightly
1763different formula:
970f6abe 1764
9c0d9ce3 1765 Y = 0.212671 * R + 0.715160 * G + 0.072169 * B
970f6abe 1766
9c0d9ce3 1767Libpng uses an integer approximation:
970f6abe 1768
9c0d9ce3 1769 Y = (6968 * R + 23434 * G + 2366 * B)/32768
970f6abe
VZ
1770
1771The calculation is done in a linear colorspace, if the image gamma
9c0d9ce3 1772can be determined.
970f6abe 1773
9c0d9ce3
DS
1774The png_set_background() function has been described already; it tells libpng to
1775composite images with alpha or simple transparency against the supplied
1776background color. For compatibility with versions of libpng earlier than
1777libpng-1.5.4 it is recommended that you call the function after reading the file
1778header, even if you don't want to use the color in a bKGD chunk, if one exists.
1779
1780If the PNG file contains a bKGD chunk (PNG_INFO_bKGD valid),
1781you may use this color, or supply another color more suitable for
1782the current display (e.g., the background color from a web page). You
1783need to tell libpng how the color is represented, both the format of the
1784component values in the color (the number of bits) and the gamma encoding of the
1785color. The function takes two arguments, background_gamma_mode and need_expand
fff5f7d5 1786to convey this information; however, only two combinations are likely to be
9c0d9ce3 1787useful:
970f6abe
VZ
1788
1789 png_color_16 my_background;
1790 png_color_16p image_background;
1791
1792 if (png_get_bKGD(png_ptr, info_ptr, &image_background))
9c0d9ce3
DS
1793 png_set_background(png_ptr, image_background,
1794 PNG_BACKGROUND_GAMMA_FILE, 1/*needs to be expanded*/, 1);
970f6abe 1795 else
9c0d9ce3
DS
1796 png_set_background(png_ptr, &my_background,
1797 PNG_BACKGROUND_GAMMA_SCREEN, 0/*do not expand*/, 1);
1798
1799The second call was described above - my_background is in the format of the
1800final, display, output produced by libpng. Because you now know the format of
1801the PNG it is possible to avoid the need to choose either 8-bit or 16-bit
1802output and to retain palette images (the palette colors will be modified
1803appropriately and the tRNS chunk removed.) However, if you are doing this,
1804take great care not to ask for transformations without checking first that
1805they apply!
1806
1807In the first call the background color has the original bit depth and color type
1808of the PNG file. So, for palette images the color is supplied as a palette
1809index and for low bit greyscale images the color is a reduced bit value in
1810image_background->gray.
1811
1812If you didn't call png_set_gamma() before reading the file header, for example
1813if you need your code to remain compatible with older versions of libpng prior
1814to libpng-1.5.4, this is the place to call it.
1815
1816Do not call it if you called png_set_alpha_mode(); doing so will damage the
1817settings put in place by png_set_alpha_mode(). (If png_set_alpha_mode() is
1818supported then you can certainly do png_set_gamma() before reading the PNG
1819header.)
1820
1821This API unconditionally sets the screen and file gamma values, so it will
1822override the value in the PNG file unless it is called before the PNG file
1823reading starts. For this reason you must always call it with the PNG file
1824value when you call it in this position:
1825
1826 if (png_get_gAMA(png_ptr, info_ptr, &file_gamma))
1827 png_set_gamma(png_ptr, screen_gamma, file_gamma);
970f6abe 1828
970f6abe
VZ
1829 else
1830 png_set_gamma(png_ptr, screen_gamma, 0.45455);
1831
1832If you need to reduce an RGB file to a paletted file, or if a paletted
b61cc19c 1833file has more entries then will fit on your screen, png_set_quantize()
9c0d9ce3 1834will do that. Note that this is a simple match quantization that merely
970f6abe 1835finds the closest color available. This should work fairly well with
9c0d9ce3
DS
1836optimized palettes, but fairly badly with linear color cubes. If you
1837pass a palette that is larger than maximum_colors, the file will
970f6abe 1838reduce the number of colors in the palette so it will fit into
9c0d9ce3 1839maximum_colors. If there is a histogram, libpng will use it to make
970f6abe
VZ
1840more intelligent choices when reducing the palette. If there is no
1841histogram, it may not do as good a job.
1842
1843 if (color_type & PNG_COLOR_MASK_COLOR)
1844 {
1845 if (png_get_valid(png_ptr, info_ptr,
9c0d9ce3 1846 PNG_INFO_PLTE))
970f6abe
VZ
1847 {
1848 png_uint_16p histogram = NULL;
1849
1850 png_get_hIST(png_ptr, info_ptr,
9c0d9ce3 1851 &histogram);
b61cc19c 1852 png_set_quantize(png_ptr, palette, num_palette,
970f6abe
VZ
1853 max_screen_colors, histogram, 1);
1854 }
9c0d9ce3 1855
970f6abe
VZ
1856 else
1857 {
1858 png_color std_color_cube[MAX_SCREEN_COLORS] =
1859 { ... colors ... };
1860
b61cc19c 1861 png_set_quantize(png_ptr, std_color_cube,
970f6abe
VZ
1862 MAX_SCREEN_COLORS, MAX_SCREEN_COLORS,
1863 NULL,0);
1864 }
1865 }
1866
1867PNG files describe monochrome as black being zero and white being one.
1868The following code will reverse this (make black be one and white be
1869zero):
1870
1871 if (bit_depth == 1 && color_type == PNG_COLOR_TYPE_GRAY)
1872 png_set_invert_mono(png_ptr);
1873
1874This function can also be used to invert grayscale and gray-alpha images:
1875
1876 if (color_type == PNG_COLOR_TYPE_GRAY ||
9c0d9ce3 1877 color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
970f6abe
VZ
1878 png_set_invert_mono(png_ptr);
1879
9c0d9ce3 1880PNG files store 16-bit pixels in network byte order (big-endian,
970f6abe
VZ
1881ie. most significant bits first). This code changes the storage to the
1882other way (little-endian, i.e. least significant bits first, the
1883way PCs store them):
1884
1885 if (bit_depth == 16)
9c0d9ce3 1886 png_set_swap(png_ptr);
970f6abe
VZ
1887
1888If you are using packed-pixel images (1, 2, or 4 bits/pixel), and you
1889need to change the order the pixels are packed into bytes, you can use:
1890
1891 if (bit_depth < 8)
1892 png_set_packswap(png_ptr);
1893
1894Finally, you can write your own transformation function if none of
1895the existing ones meets your needs. This is done by setting a callback
1896with
1897
1898 png_set_read_user_transform_fn(png_ptr,
9c0d9ce3 1899 read_transform_fn);
970f6abe
VZ
1900
1901You must supply the function
1902
9c0d9ce3
DS
1903 void read_transform_fn(png_structp png_ptr, png_row_infop
1904 row_info, png_bytep data)
970f6abe
VZ
1905
1906See pngtest.c for a working example. Your function will be called
9c0d9ce3
DS
1907after all of the other transformations have been processed. Take care with
1908interlaced images if you do the interlace yourself - the width of the row is the
1909width in 'row_info', not the overall image width.
1910
1911If supported, libpng provides two information routines that you can use to find
1912where you are in processing the image:
1913
1914 png_get_current_pass_number(png_structp png_ptr);
1915 png_get_current_row_number(png_structp png_ptr);
1916
1917Don't try using these outside a transform callback - firstly they are only
1918supported if user transforms are supported, secondly they may well return
1919unexpected results unless the row is actually being processed at the moment they
1920are called.
1921
1922With interlaced
1923images the value returned is the row in the input sub-image image. Use
1924PNG_ROW_FROM_PASS_ROW(row, pass) and PNG_COL_FROM_PASS_COL(col, pass) to
1925find the output pixel (x,y) given an interlaced sub-image pixel (row,col,pass).
1926
1927The discussion of interlace handling above contains more information on how to
1928use these values.
970f6abe
VZ
1929
1930You can also set up a pointer to a user structure for use by your
1931callback function, and you can inform libpng that your transform
1932function will change the number of channels or bit depth with the
1933function
1934
1935 png_set_user_transform_info(png_ptr, user_ptr,
9c0d9ce3 1936 user_depth, user_channels);
970f6abe
VZ
1937
1938The user's application, not libpng, is responsible for allocating and
1939freeing any memory required for the user structure.
1940
1941You can retrieve the pointer via the function
1942png_get_user_transform_ptr(). For example:
1943
1944 voidp read_user_transform_ptr =
9c0d9ce3 1945 png_get_user_transform_ptr(png_ptr);
970f6abe
VZ
1946
1947The last thing to handle is interlacing; this is covered in detail below,
1948but you must call the function here if you want libpng to handle expansion
1949of the interlaced image.
1950
1951 number_of_passes = png_set_interlace_handling(png_ptr);
1952
1953After setting the transformations, libpng can update your png_info
1954structure to reflect any transformations you've requested with this
9c0d9ce3 1955call.
970f6abe
VZ
1956
1957 png_read_update_info(png_ptr, info_ptr);
1958
9c0d9ce3
DS
1959This is most useful to update the info structure's rowbytes
1960field so you can use it to allocate your image memory. This function
1961will also update your palette with the correct screen_gamma and
1962background if these have been given with the calls above. You may
1963only call png_read_update_info() once with a particular info_ptr.
1964
970f6abe
VZ
1965After you call png_read_update_info(), you can allocate any
1966memory you need to hold the image. The row data is simply
1967raw byte data for all forms of images. As the actual allocation
1968varies among applications, no example will be given. If you
1969are allocating one large chunk, you will need to build an
1970array of pointers to each row, as it will be needed for some
1971of the functions below.
1972
9c0d9ce3
DS
1973Remember: Before you call png_read_update_info(), the png_get_*()
1974functions return the values corresponding to the original PNG image.
1975After you call png_read_update_info the values refer to the image
1976that libpng will output. Consequently you must call all the png_set_
1977functions before you call png_read_update_info(). This is particularly
1978important for png_set_interlace_handling() - if you are going to call
1979png_read_update_info() you must call png_set_interlace_handling() before
1980it unless you want to receive interlaced output.
1981
970f6abe
VZ
1982Reading image data
1983
1984After you've allocated memory, you can read the image data.
1985The simplest way to do this is in one function call. If you are
1986allocating enough memory to hold the whole image, you can just
1987call png_read_image() and libpng will read in all the image data
1988and put it in the memory area supplied. You will need to pass in
1989an array of pointers to each row.
1990
9c0d9ce3
DS
1991This function automatically handles interlacing, so you don't
1992need to call png_set_interlace_handling() (unless you call
1993png_read_update_info()) or call this function multiple times, or any
1994of that other stuff necessary with png_read_rows().
970f6abe
VZ
1995
1996 png_read_image(png_ptr, row_pointers);
1997
1998where row_pointers is:
1999
2000 png_bytep row_pointers[height];
2001
2002You can point to void or char or whatever you use for pixels.
2003
2004If you don't want to read in the whole image at once, you can
2005use png_read_rows() instead. If there is no interlacing (check
2006interlace_type == PNG_INTERLACE_NONE), this is simple:
2007
2008 png_read_rows(png_ptr, row_pointers, NULL,
9c0d9ce3 2009 number_of_rows);
970f6abe
VZ
2010
2011where row_pointers is the same as in the png_read_image() call.
2012
2013If you are doing this just one row at a time, you can do this with
2014a single row_pointer instead of an array of row_pointers:
2015
2016 png_bytep row_pointer = row;
2017 png_read_row(png_ptr, row_pointer, NULL);
2018
2019If the file is interlaced (interlace_type != 0 in the IHDR chunk), things
2020get somewhat harder. The only current (PNG Specification version 1.2)
9c0d9ce3
DS
2021interlacing type for PNG is (interlace_type == PNG_INTERLACE_ADAM7);
2022a somewhat complicated 2D interlace scheme, known as Adam7, that
970f6abe 2023breaks down an image into seven smaller images of varying size, based
9c0d9ce3
DS
2024on an 8x8 grid. This number is defined (from libpng 1.5) as
2025PNG_INTERLACE_ADAM7_PASSES in png.h
970f6abe
VZ
2026
2027libpng can fill out those images or it can give them to you "as is".
9c0d9ce3
DS
2028It is almost always better to have libpng handle the interlacing for you.
2029If you want the images filled out, there are two ways to do that. The one
970f6abe
VZ
2030mentioned in the PNG specification is to expand each pixel to cover
2031those pixels that have not been read yet (the "rectangle" method).
2032This results in a blocky image for the first pass, which gradually
2033smooths out as more pixels are read. The other method is the "sparkle"
2034method, where pixels are drawn only in their final locations, with the
2035rest of the image remaining whatever colors they were initialized to
2036before the start of the read. The first method usually looks better,
2037but tends to be slower, as there are more pixels to put in the rows.
2038
9c0d9ce3
DS
2039If, as is likely, you want libpng to expand the images, call this before
2040calling png_start_read_image() or png_read_update_info():
970f6abe
VZ
2041
2042 if (interlace_type == PNG_INTERLACE_ADAM7)
9c0d9ce3 2043 number_of_passes
970f6abe
VZ
2044 = png_set_interlace_handling(png_ptr);
2045
9c0d9ce3
DS
2046This will return the number of passes needed. Currently, this is seven,
2047but may change if another interlace type is added. This function can be
2048called even if the file is not interlaced, where it will return one pass.
2049You then need to read the whole image 'number_of_passes' times. Each time
2050will distribute the pixels from the current pass to the correct place in
2051the output image, so you need to supply the same rows to png_read_rows in
2052each pass.
970f6abe
VZ
2053
2054If you are not going to display the image after each pass, but are
2055going to wait until the entire image is read in, use the sparkle
2056effect. This effect is faster and the end result of either method
2057is exactly the same. If you are planning on displaying the image
2058after each pass, the "rectangle" effect is generally considered the
2059better looking one.
2060
2061If you only want the "sparkle" effect, just call png_read_rows() as
2062normal, with the third parameter NULL. Make sure you make pass over
2063the image number_of_passes times, and you don't change the data in the
2064rows between calls. You can change the locations of the data, just
2065not the data. Each pass only writes the pixels appropriate for that
2066pass, and assumes the data from previous passes is still valid.
2067
2068 png_read_rows(png_ptr, row_pointers, NULL,
9c0d9ce3 2069 number_of_rows);
970f6abe
VZ
2070
2071If you only want the first effect (the rectangles), do the same as
2072before except pass the row buffer in the third parameter, and leave
2073the second parameter NULL.
2074
2075 png_read_rows(png_ptr, NULL, row_pointers,
9c0d9ce3
DS
2076 number_of_rows);
2077
2078If you don't want libpng to handle the interlacing details, just call
2079png_read_rows() PNG_INTERLACE_ADAM7_PASSES times to read in all the images.
fff5f7d5 2080Each of the images is a valid image by itself; however, you will almost
9c0d9ce3
DS
2081certainly need to distribute the pixels from each sub-image to the
2082correct place. This is where everything gets very tricky.
2083
2084If you want to retrieve the separate images you must pass the correct
2085number of rows to each successive call of png_read_rows(). The calculation
2086gets pretty complicated for small images, where some sub-images may
2087not even exist because either their width or height ends up zero.
2088libpng provides two macros to help you in 1.5 and later versions:
2089
2090 png_uint_32 width = PNG_PASS_COLS(image_width, pass_number);
2091 png_uint_32 height = PNG_PASS_ROWS(image_height, pass_number);
2092
2093Respectively these tell you the width and height of the sub-image
2094corresponding to the numbered pass. 'pass' is in in the range 0 to 6 -
2095this can be confusing because the specification refers to the same passes
2096as 1 to 7! Be careful, you must check both the width and height before
2097calling png_read_rows() and not call it for that pass if either is zero.
2098
2099You can, of course, read each sub-image row by row. If you want to
2100produce optimal code to make a pixel-by-pixel transformation of an
2101interlaced image this is the best approach; read each row of each pass,
2102transform it, and write it out to a new interlaced image.
2103
2104If you want to de-interlace the image yourself libpng provides further
2105macros to help that tell you where to place the pixels in the output image.
2106Because the interlacing scheme is rectangular - sub-image pixels are always
2107arranged on a rectangular grid - all you need to know for each pass is the
2108starting column and row in the output image of the first pixel plus the
2109spacing between each pixel. As of libpng 1.5 there are four macros to
2110retrieve this information:
2111
2112 png_uint_32 x = PNG_PASS_START_COL(pass);
2113 png_uint_32 y = PNG_PASS_START_ROW(pass);
2114 png_uint_32 xStep = 1U << PNG_PASS_COL_SHIFT(pass);
2115 png_uint_32 yStep = 1U << PNG_PASS_ROW_SHIFT(pass);
2116
2117These allow you to write the obvious loop:
2118
2119 png_uint_32 input_y = 0;
2120 png_uint_32 output_y = PNG_PASS_START_ROW(pass);
2121
2122 while (output_y < output_image_height)
2123 {
2124 png_uint_32 input_x = 0;
2125 png_uint_32 output_x = PNG_PASS_START_COL(pass);
2126
2127 while (output_x < output_image_width)
2128 {
2129 image[output_y][output_x] =
2130 subimage[pass][input_y][input_x++];
2131
2132 output_x += xStep;
2133 }
2134
2135 ++input_y;
2136 output_y += yStep;
2137 }
2138
2139Notice that the steps between successive output rows and columns are
2140returned as shifts. This is possible because the pixels in the subimages
2141are always a power of 2 apart - 1, 2, 4 or 8 pixels - in the original
2142image. In practice you may need to directly calculate the output coordinate
2143given an input coordinate. libpng provides two further macros for this
2144purpose:
2145
2146 png_uint_32 output_x = PNG_COL_FROM_PASS_COL(input_x, pass);
2147 png_uint_32 output_y = PNG_ROW_FROM_PASS_ROW(input_y, pass);
2148
2149Finally a pair of macros are provided to tell you if a particular image
2150row or column appears in a given pass:
2151
2152 int col_in_pass = PNG_COL_IN_INTERLACE_PASS(output_x, pass);
2153 int row_in_pass = PNG_ROW_IN_INTERLACE_PASS(output_y, pass);
2154
2155Bear in mind that you will probably also need to check the width and height
2156of the pass in addition to the above to be sure the pass even exists!
2157
2158With any luck you are convinced by now that you don't want to do your own
2159interlace handling. In reality normally the only good reason for doing this
2160is if you are processing PNG files on a pixel-by-pixel basis and don't want
2161to load the whole file into memory when it is interlaced.
2162
2163libpng includes a test program, pngvalid, that illustrates reading and
2164writing of interlaced images. If you can't get interlacing to work in your
2165code and don't want to leave it to libpng (the recommended approach), see
2166how pngvalid.c does it.
970f6abe
VZ
2167
2168Finishing a sequential read
2169
2170After you are finished reading the image through the
2171low-level interface, you can finish reading the file. If you are
2172interested in comments or time, which may be stored either before or
2173after the image data, you should pass the separate png_info struct if
2174you want to keep the comments from before and after the image
9c0d9ce3
DS
2175separate.
2176
2177 png_infop end_info = png_create_info_struct(png_ptr);
2178
2179 if (!end_info)
2180 {
2181 png_destroy_read_struct(&png_ptr, &info_ptr,
2182 (png_infopp)NULL);
2183 return (ERROR);
2184 }
970f6abe
VZ
2185
2186 png_read_end(png_ptr, end_info);
2187
9c0d9ce3
DS
2188If you are not interested, you should still call png_read_end()
2189but you can pass NULL, avoiding the need to create an end_info structure.
2190
2191 png_read_end(png_ptr, (png_infop)NULL);
2192
2193If you don't call png_read_end(), then your file pointer will be
2194left pointing to the first chunk after the last IDAT, which is probably
2195not what you want if you expect to read something beyond the end of
2196the PNG datastream.
2197
970f6abe
VZ
2198When you are done, you can free all memory allocated by libpng like this:
2199
2200 png_destroy_read_struct(&png_ptr, &info_ptr,
2201 &end_info);
2202
9c0d9ce3
DS
2203or, if you didn't create an end_info structure,
2204
2205 png_destroy_read_struct(&png_ptr, &info_ptr,
2206 (png_infopp)NULL);
2207
970f6abe
VZ
2208It is also possible to individually free the info_ptr members that
2209point to libpng-allocated storage with the following function:
2210
2211 png_free_data(png_ptr, info_ptr, mask, seq)
9c0d9ce3 2212
970f6abe
VZ
2213 mask - identifies data to be freed, a mask
2214 containing the bitwise OR of one or
2215 more of
2216 PNG_FREE_PLTE, PNG_FREE_TRNS,
2217 PNG_FREE_HIST, PNG_FREE_ICCP,
2218 PNG_FREE_PCAL, PNG_FREE_ROWS,
2219 PNG_FREE_SCAL, PNG_FREE_SPLT,
2220 PNG_FREE_TEXT, PNG_FREE_UNKN,
2221 or simply PNG_FREE_ALL
9c0d9ce3 2222
970f6abe
VZ
2223 seq - sequence number of item to be freed
2224 (-1 for all items)
2225
2226This function may be safely called when the relevant storage has
2227already been freed, or has not yet been allocated, or was allocated
b61cc19c
PC
2228by the user and not by libpng, and will in those cases do nothing.
2229The "seq" parameter is ignored if only one item of the selected data
2230type, such as PLTE, is allowed. If "seq" is not -1, and multiple items
2231are allowed for the data type identified in the mask, such as text or
2232sPLT, only the n'th item in the structure is freed, where n is "seq".
970f6abe
VZ
2233
2234The default behavior is only to free data that was allocated internally
2235by libpng. This can be changed, so that libpng will not free the data,
2236or so that it will free data that was allocated by the user with png_malloc()
fff5f7d5 2237or png_calloc() and passed in via a png_set_*() function, with
970f6abe
VZ
2238
2239 png_data_freer(png_ptr, info_ptr, freer, mask)
9c0d9ce3 2240
970f6abe
VZ
2241 freer - one of
2242 PNG_DESTROY_WILL_FREE_DATA
2243 PNG_SET_WILL_FREE_DATA
2244 PNG_USER_WILL_FREE_DATA
2245
9c0d9ce3
DS
2246 mask - which data elements are affected
2247 same choices as in png_free_data()
2248
970f6abe
VZ
2249This function only affects data that has already been allocated.
2250You can call this function after reading the PNG data but before calling
2251any png_set_*() functions, to control whether the user or the png_set_*()
2252function is responsible for freeing any existing data that might be present,
2253and again after the png_set_*() functions to control whether the user
2254or png_destroy_*() is supposed to free the data. When the user assumes
2255responsibility for libpng-allocated data, the application must use
2256png_free() to free it, and when the user transfers responsibility to libpng
2257for data that the user has allocated, the user must have used png_malloc()
fff5f7d5 2258or png_calloc() to allocate it.
970f6abe
VZ
2259
2260If you allocated your row_pointers in a single block, as suggested above in
2261the description of the high level read interface, you must not transfer
2262responsibility for freeing it to the png_set_rows or png_read_destroy function,
2263because they would also try to free the individual row_pointers[i].
2264
2265If you allocated text_ptr.text, text_ptr.lang, and text_ptr.translated_keyword
2266separately, do not transfer responsibility for freeing text_ptr to libpng,
2267because when libpng fills a png_text structure it combines these members with
2268the key member, and png_free_data() will free only text_ptr.key. Similarly,
2269if you transfer responsibility for free'ing text_ptr from libpng to your
2270application, your application must not separately free those members.
2271
2272The png_free_data() function will turn off the "valid" flag for anything
b61cc19c
PC
2273it frees. If you need to turn the flag off for a chunk that was freed by
2274your application instead of by libpng, you can use
970f6abe
VZ
2275
2276 png_set_invalid(png_ptr, info_ptr, mask);
9c0d9ce3 2277
970f6abe
VZ
2278 mask - identifies the chunks to be made invalid,
2279 containing the bitwise OR of one or
2280 more of
2281 PNG_INFO_gAMA, PNG_INFO_sBIT,
2282 PNG_INFO_cHRM, PNG_INFO_PLTE,
2283 PNG_INFO_tRNS, PNG_INFO_bKGD,
2284 PNG_INFO_hIST, PNG_INFO_pHYs,
2285 PNG_INFO_oFFs, PNG_INFO_tIME,
2286 PNG_INFO_pCAL, PNG_INFO_sRGB,
2287 PNG_INFO_iCCP, PNG_INFO_sPLT,
2288 PNG_INFO_sCAL, PNG_INFO_IDAT
2289
2290For a more compact example of reading a PNG image, see the file example.c.
2291
2292Reading PNG files progressively
2293
2294The progressive reader is slightly different then the non-progressive
2295reader. Instead of calling png_read_info(), png_read_rows(), and
2296png_read_end(), you make one call to png_process_data(), which calls
2297callbacks when it has the info, a row, or the end of the image. You
2298set up these callbacks with png_set_progressive_read_fn(). You don't
2299have to worry about the input/output functions of libpng, as you are
2300giving the library the data directly in png_process_data(). I will
2301assume that you have read the section on reading PNG files above,
2302so I will only highlight the differences (although I will show
2303all of the code).
2304
2305png_structp png_ptr;
2306png_infop info_ptr;
2307
2308 /* An example code fragment of how you would
2309 initialize the progressive reader in your
2310 application. */
2311 int
2312 initialize_png_reader()
2313 {
2314 png_ptr = png_create_read_struct
2315 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
2316 user_error_fn, user_warning_fn);
9c0d9ce3 2317
970f6abe
VZ
2318 if (!png_ptr)
2319 return (ERROR);
9c0d9ce3 2320
970f6abe 2321 info_ptr = png_create_info_struct(png_ptr);
9c0d9ce3 2322
970f6abe
VZ
2323 if (!info_ptr)
2324 {
9c0d9ce3
DS
2325 png_destroy_read_struct(&png_ptr,
2326 (png_infopp)NULL, (png_infopp)NULL);
2327 return (ERROR);
970f6abe
VZ
2328 }
2329
2330 if (setjmp(png_jmpbuf(png_ptr)))
2331 {
9c0d9ce3
DS
2332 png_destroy_read_struct(&png_ptr, &info_ptr,
2333 (png_infopp)NULL);
2334 return (ERROR);
970f6abe
VZ
2335 }
2336
2337 /* This one's new. You can provide functions
2338 to be called when the header info is valid,
2339 when each row is completed, and when the image
2340 is finished. If you aren't using all functions,
2341 you can specify NULL parameters. Even when all
2342 three functions are NULL, you need to call
2343 png_set_progressive_read_fn(). You can use
2344 any struct as the user_ptr (cast to a void pointer
2345 for the function call), and retrieve the pointer
2346 from inside the callbacks using the function
2347
2348 png_get_progressive_ptr(png_ptr);
2349
2350 which will return a void pointer, which you have
2351 to cast appropriately.
2352 */
2353 png_set_progressive_read_fn(png_ptr, (void *)user_ptr,
2354 info_callback, row_callback, end_callback);
2355
2356 return 0;
2357 }
2358
2359 /* A code fragment that you call as you receive blocks
2360 of data */
2361 int
2362 process_data(png_bytep buffer, png_uint_32 length)
2363 {
2364 if (setjmp(png_jmpbuf(png_ptr)))
2365 {
9c0d9ce3 2366 png_destroy_read_struct(&png_ptr, &info_ptr,
970f6abe 2367 (png_infopp)NULL);
9c0d9ce3 2368 return (ERROR);
970f6abe
VZ
2369 }
2370
2371 /* This one's new also. Simply give it a chunk
2372 of data from the file stream (in order, of
2373 course). On machines with segmented memory
2374 models machines, don't give it any more than
2375 64K. The library seems to run fine with sizes
2376 of 4K. Although you can give it much less if
2377 necessary (I assume you can give it chunks of
2378 1 byte, I haven't tried less then 256 bytes
2379 yet). When this function returns, you may
2380 want to display any rows that were generated
2381 in the row callback if you don't already do
2382 so there.
2383 */
2384 png_process_data(png_ptr, info_ptr, buffer, length);
9c0d9ce3
DS
2385
2386 /* At this point you can call png_process_data_skip if
2387 you want to handle data the library will skip yourself;
2388 it simply returns the number of bytes to skip (and stops
2389 libpng skipping that number of bytes on the next
2390 png_process_data call).
970f6abe
VZ
2391 return 0;
2392 }
2393
2394 /* This function is called (as set by
2395 png_set_progressive_read_fn() above) when enough data
2396 has been supplied so all of the header has been
2397 read.
2398 */
2399 void
2400 info_callback(png_structp png_ptr, png_infop info)
2401 {
2402 /* Do any setup here, including setting any of
2403 the transformations mentioned in the Reading
2404 PNG files section. For now, you _must_ call
2405 either png_start_read_image() or
2406 png_read_update_info() after all the
2407 transformations are set (even if you don't set
2408 any). You may start getting rows before
2409 png_process_data() returns, so this is your
2410 last chance to prepare for that.
9c0d9ce3
DS
2411
2412 This is where you turn on interlace handling,
2413 assuming you don't want to do it yourself.
2414
2415 If you need to you can stop the processing of
2416 your original input data at this point by calling
2417 png_process_data_pause. This returns the number
2418 of unprocessed bytes from the last png_process_data
2419 call - it is up to you to ensure that the next call
2420 sees these bytes again. If you don't want to bother
2421 with this you can get libpng to cache the unread
2422 bytes by setting the 'save' parameter (see png.h) but
2423 then libpng will have to copy the data internally.
970f6abe
VZ
2424 */
2425 }
2426
2427 /* This function is called when each row of image
2428 data is complete */
2429 void
2430 row_callback(png_structp png_ptr, png_bytep new_row,
2431 png_uint_32 row_num, int pass)
2432 {
2433 /* If the image is interlaced, and you turned
2434 on the interlace handler, this function will
2435 be called for every row in every pass. Some
2436 of these rows will not be changed from the
2437 previous pass. When the row is not changed,
2438 the new_row variable will be NULL. The rows
2439 and passes are called in order, so you don't
2440 really need the row_num and pass, but I'm
2441 supplying them because it may make your life
2442 easier.
2443
9c0d9ce3
DS
2444 If you did not turn on interlace handling then
2445 the callback is called for each row of each
2446 sub-image when the image is interlaced. In this
2447 case 'row_num' is the row in the sub-image, not
2448 the row in the output image as it is in all other
2449 cases.
2450
2451 For the non-NULL rows of interlaced images when
2452 you have switched on libpng interlace handling,
970f6abe
VZ
2453 you must call png_progressive_combine_row()
2454 passing in the row and the old row. You can
2455 call this function for NULL rows (it will just
2456 return) and for non-interlaced images (it just
2457 does the memcpy for you) if it will make the
2458 code easier. Thus, you can just do this for
9c0d9ce3 2459 all cases if you switch on interlace handling;
970f6abe
VZ
2460 */
2461
2462 png_progressive_combine_row(png_ptr, old_row,
2463 new_row);
2464
2465 /* where old_row is what was displayed for
2466 previously for the row. Note that the first
2467 pass (pass == 0, really) will completely cover
2468 the old row, so the rows do not have to be
2469 initialized. After the first pass (and only
2470 for interlaced images), you will have to pass
2471 the current row, and the function will combine
2472 the old row and the new row.
9c0d9ce3
DS
2473
2474 You can also call png_process_data_pause in this
2475 callback - see above.
970f6abe
VZ
2476 */
2477 }
2478
2479 void
2480 end_callback(png_structp png_ptr, png_infop info)
2481 {
2482 /* This function is called after the whole image
2483 has been read, including any chunks after the
2484 image (up to and including the IEND). You
2485 will usually have the same info chunk as you
2486 had in the header, although some data may have
2487 been added to the comments and time fields.
2488
2489 Most people won't do much here, perhaps setting
2490 a flag that marks the image as finished.
2491 */
2492 }
2493
2494
2495
2496IV. Writing
2497
2498Much of this is very similar to reading. However, everything of
2499importance is repeated here, so you won't have to constantly look
2500back up in the reading section to understand writing.
2501
2502Setup
2503
2504You will want to do the I/O initialization before you get into libpng,
2505so if it doesn't work, you don't have anything to undo. If you are not
2506using the standard I/O functions, you will need to replace them with
2507custom writing functions. See the discussion under Customizing libpng.
2508
2509 FILE *fp = fopen(file_name, "wb");
9c0d9ce3 2510
970f6abe 2511 if (!fp)
970f6abe 2512 return (ERROR);
970f6abe
VZ
2513
2514Next, png_struct and png_info need to be allocated and initialized.
2515As these can be both relatively large, you may not want to store these
2516on the stack, unless you have stack space to spare. Of course, you
2517will want to check if they return NULL. If you are also reading,
2518you won't want to name your read structure and your write structure
2519both "png_ptr"; you can call them anything you like, such as
2520"read_ptr" and "write_ptr". Look at pngtest.c, for example.
2521
2522 png_structp png_ptr = png_create_write_struct
2523 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
2524 user_error_fn, user_warning_fn);
9c0d9ce3 2525
970f6abe
VZ
2526 if (!png_ptr)
2527 return (ERROR);
2528
2529 png_infop info_ptr = png_create_info_struct(png_ptr);
2530 if (!info_ptr)
2531 {
2532 png_destroy_write_struct(&png_ptr,
9c0d9ce3 2533 (png_infopp)NULL);
970f6abe
VZ
2534 return (ERROR);
2535 }
2536
2537If you want to use your own memory allocation routines,
2538define PNG_USER_MEM_SUPPORTED and use
2539png_create_write_struct_2() instead of png_create_write_struct():
2540
2541 png_structp png_ptr = png_create_write_struct_2
2542 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
2543 user_error_fn, user_warning_fn, (png_voidp)
2544 user_mem_ptr, user_malloc_fn, user_free_fn);
2545
2546After you have these structures, you will need to set up the
2547error handling. When libpng encounters an error, it expects to
2548longjmp() back to your routine. Therefore, you will need to call
2549setjmp() and pass the png_jmpbuf(png_ptr). If you
2550write the file from different routines, you will need to update
2551the png_jmpbuf(png_ptr) every time you enter a new routine that will
2552call a png_*() function. See your documentation of setjmp/longjmp
2553for your compiler for more information on setjmp/longjmp. See
2554the discussion on libpng error handling in the Customizing Libpng
2555section below for more information on the libpng error handling.
2556
2557 if (setjmp(png_jmpbuf(png_ptr)))
2558 {
9c0d9ce3 2559 png_destroy_write_struct(&png_ptr, &info_ptr);
970f6abe
VZ
2560 fclose(fp);
2561 return (ERROR);
2562 }
2563 ...
2564 return;
2565
2566If you would rather avoid the complexity of setjmp/longjmp issues,
b61cc19c 2567you can compile libpng with PNG_NO_SETJMP, in which case
970f6abe
VZ
2568errors will result in a call to PNG_ABORT() which defaults to abort().
2569
b61cc19c
PC
2570You can #define PNG_ABORT() to a function that does something
2571more useful than abort(), as long as your function does not
2572return.
2573
fff5f7d5
VZ
2574Checking for invalid palette index on write was added at libpng
25751.5.10. If a pixel contains an invalid (out-of-range) index libpng issues
2576a benign error. This is enabled by default because this condition is an
2577error according to the PNG specification, Clause 11.3.2, but the error can
2578be ignored in each png_ptr with
2579
2580 png_set_check_for_invalid_index(png_ptr, 0);
2581
2582If the error is ignored, or if png_benign_error() treats it as a warning,
2583any invalid pixels are written as-is by the encoder, resulting in an
2584invalid PNG datastream as output. In this case the application is
2585responsible for ensuring that the pixel indexes are in range when it writes
2586a PLTE chunk with fewer entries than the bit depth would allow.
2587
970f6abe
VZ
2588Now you need to set up the output code. The default for libpng is to
2589use the C function fwrite(). If you use this, you will need to pass a
2590valid FILE * in the function png_init_io(). Be sure that the file is
2591opened in binary mode. Again, if you wish to handle writing data in
2592another way, see the discussion on libpng I/O handling in the Customizing
2593Libpng section below.
2594
2595 png_init_io(png_ptr, fp);
2596
2597If you are embedding your PNG into a datastream such as MNG, and don't
2598want libpng to write the 8-byte signature, or if you have already
2599written the signature in your application, use
2600
2601 png_set_sig_bytes(png_ptr, 8);
2602
2603to inform libpng that it should not write a signature.
2604
2605Write callbacks
2606
2607At this point, you can set up a callback function that will be
2608called after each row has been written, which you can use to control
2609a progress meter or the like. It's demonstrated in pngtest.c.
2610You must supply a function
2611
9c0d9ce3 2612 void write_row_callback(png_structp png_ptr, png_uint_32 row,
970f6abe
VZ
2613 int pass);
2614 {
2615 /* put your code here */
2616 }
2617
2618(You can give it another name that you like instead of "write_row_callback")
2619
2620To inform libpng about your function, use
2621
2622 png_set_write_status_fn(png_ptr, write_row_callback);
2623
9c0d9ce3
DS
2624When this function is called the row has already been completely processed and
2625it has also been written out. The 'row' and 'pass' refer to the next row to be
2626handled. For the
2627non-interlaced case the row that was just handled is simply one less than the
2628passed in row number, and pass will always be 0. For the interlaced case the
2629same applies unless the row value is 0, in which case the row just handled was
2630the last one from one of the preceding passes. Because interlacing may skip a
2631pass you cannot be sure that the preceding pass is just 'pass-1', if you really
2632need to know what the last pass is record (row,pass) from the callback and use
2633the last recorded value each time.
2634
2635As with the user transform you can find the output row using the
2636PNG_ROW_FROM_PASS_ROW macro.
2637
970f6abe
VZ
2638You now have the option of modifying how the compression library will
2639run. The following functions are mainly for testing, but may be useful
2640in some cases, like if you need to write PNG files extremely fast and
2641are willing to give up some compression, or if you want to get the
2642maximum possible compression at the expense of slower writing. If you
2643have no special needs in this area, let the library do what it wants by
2644not calling this function at all, as it has been tuned to deliver a good
2645speed/compression ratio. The second parameter to png_set_filter() is
2646the filter method, for which the only valid values are 0 (as of the
2647July 1999 PNG specification, version 1.2) or 64 (if you are writing
2648a PNG datastream that is to be embedded in a MNG datastream). The third
2649parameter is a flag that indicates which filter type(s) are to be tested
b61cc19c
PC
2650for each scanline. See the PNG specification for details on the specific
2651filter types.
970f6abe
VZ
2652
2653
2654 /* turn on or off filtering, and/or choose
2655 specific filters. You can use either a single
2656 PNG_FILTER_VALUE_NAME or the bitwise OR of one
9c0d9ce3
DS
2657 or more PNG_FILTER_NAME masks.
2658 */
970f6abe
VZ
2659 png_set_filter(png_ptr, 0,
2660 PNG_FILTER_NONE | PNG_FILTER_VALUE_NONE |
2661 PNG_FILTER_SUB | PNG_FILTER_VALUE_SUB |
2662 PNG_FILTER_UP | PNG_FILTER_VALUE_UP |
b61cc19c 2663 PNG_FILTER_AVG | PNG_FILTER_VALUE_AVG |
970f6abe
VZ
2664 PNG_FILTER_PAETH | PNG_FILTER_VALUE_PAETH|
2665 PNG_ALL_FILTERS);
2666
9c0d9ce3
DS
2667If an application wants to start and stop using particular filters during
2668compression, it should start out with all of the filters (to ensure that
2669the previous row of pixels will be stored in case it's needed later),
2670and then add and remove them after the start of compression.
970f6abe
VZ
2671
2672If you are writing a PNG datastream that is to be embedded in a MNG
2673datastream, the second parameter can be either 0 or 64.
2674
2675The png_set_compression_*() functions interface to the zlib compression
2676library, and should mostly be ignored unless you really know what you are
2677doing. The only generally useful call is png_set_compression_level()
2678which changes how much time zlib spends on trying to compress the image
2679data. See the Compression Library (zlib.h and algorithm.txt, distributed
2680with zlib) for details on the compression levels.
2681
9c0d9ce3
DS
2682 #include zlib.h
2683
2684 /* Set the zlib compression level */
970f6abe
VZ
2685 png_set_compression_level(png_ptr,
2686 Z_BEST_COMPRESSION);
2687
9c0d9ce3 2688 /* Set other zlib parameters for compressing IDAT */
970f6abe
VZ
2689 png_set_compression_mem_level(png_ptr, 8);
2690 png_set_compression_strategy(png_ptr,
2691 Z_DEFAULT_STRATEGY);
2692 png_set_compression_window_bits(png_ptr, 15);
2693 png_set_compression_method(png_ptr, 8);
2694 png_set_compression_buffer_size(png_ptr, 8192)
2695
9c0d9ce3
DS
2696 /* Set zlib parameters for text compression
2697 * If you don't call these, the parameters
2698 * fall back on those defined for IDAT chunks
2699 */
2700 png_set_text_compression_mem_level(png_ptr, 8);
2701 png_set_text_compression_strategy(png_ptr,
2702 Z_DEFAULT_STRATEGY);
2703 png_set_text_compression_window_bits(png_ptr, 15);
2704 png_set_text_compression_method(png_ptr, 8);
970f6abe
VZ
2705
2706Setting the contents of info for output
2707
2708You now need to fill in the png_info structure with all the data you
2709wish to write before the actual image. Note that the only thing you
2710are allowed to write after the image is the text chunks and the time
2711chunk (as of PNG Specification 1.2, anyway). See png_write_end() and
2712the latest PNG specification for more information on that. If you
2713wish to write them before the image, fill them in now, and flag that
2714data as being valid. If you want to wait until after the data, don't
2715fill them until png_write_end(). For all the fields in png_info and
2716their data types, see png.h. For explanations of what the fields
2717contain, see the PNG specification.
2718
2719Some of the more important parts of the png_info are:
2720
2721 png_set_IHDR(png_ptr, info_ptr, width, height,
2722 bit_depth, color_type, interlace_type,
2723 compression_type, filter_method)
9c0d9ce3 2724
970f6abe
VZ
2725 width - holds the width of the image
2726 in pixels (up to 2^31).
9c0d9ce3 2727
970f6abe
VZ
2728 height - holds the height of the image
2729 in pixels (up to 2^31).
9c0d9ce3 2730
970f6abe
VZ
2731 bit_depth - holds the bit depth of one of the
2732 image channels.
2733 (valid values are 1, 2, 4, 8, 16
2734 and depend also on the
2735 color_type. See also significant
2736 bits (sBIT) below).
9c0d9ce3 2737
970f6abe
VZ
2738 color_type - describes which color/alpha
2739 channels are present.
2740 PNG_COLOR_TYPE_GRAY
2741 (bit depths 1, 2, 4, 8, 16)
2742 PNG_COLOR_TYPE_GRAY_ALPHA
2743 (bit depths 8, 16)
2744 PNG_COLOR_TYPE_PALETTE
2745 (bit depths 1, 2, 4, 8)
2746 PNG_COLOR_TYPE_RGB
2747 (bit_depths 8, 16)
2748 PNG_COLOR_TYPE_RGB_ALPHA
2749 (bit_depths 8, 16)
2750
2751 PNG_COLOR_MASK_PALETTE
2752 PNG_COLOR_MASK_COLOR
2753 PNG_COLOR_MASK_ALPHA
2754
2755 interlace_type - PNG_INTERLACE_NONE or
2756 PNG_INTERLACE_ADAM7
9c0d9ce3 2757
970f6abe
VZ
2758 compression_type - (must be
2759 PNG_COMPRESSION_TYPE_DEFAULT)
9c0d9ce3 2760
970f6abe
VZ
2761 filter_method - (must be PNG_FILTER_TYPE_DEFAULT
2762 or, if you are writing a PNG to
2763 be embedded in a MNG datastream,
2764 can also be
2765 PNG_INTRAPIXEL_DIFFERENCING)
2766
2767If you call png_set_IHDR(), the call must appear before any of the
b61cc19c 2768other png_set_*() functions, because they might require access to some of
970f6abe
VZ
2769the IHDR settings. The remaining png_set_*() functions can be called
2770in any order.
2771
b61cc19c
PC
2772If you wish, you can reset the compression_type, interlace_type, or
2773filter_method later by calling png_set_IHDR() again; if you do this, the
2774width, height, bit_depth, and color_type must be the same in each call.
2775
970f6abe
VZ
2776 png_set_PLTE(png_ptr, info_ptr, palette,
2777 num_palette);
9c0d9ce3 2778
970f6abe
VZ
2779 palette - the palette for the file
2780 (array of png_color)
2781 num_palette - number of entries in the palette
2782
9c0d9ce3
DS
2783 png_set_gAMA(png_ptr, info_ptr, file_gamma);
2784 png_set_gAMA_fixed(png_ptr, info_ptr, int_file_gamma);
2785
2786 file_gamma - the gamma at which the image was
2787 created (PNG_INFO_gAMA)
2788
2789 int_file_gamma - 100,000 times the gamma at which
2790 the image was created
2791
2792 png_set_cHRM(png_ptr, info_ptr, white_x, white_y, red_x, red_y,
2793 green_x, green_y, blue_x, blue_y)
2794 png_set_cHRM_XYZ(png_ptr, info_ptr, red_X, red_Y, red_Z, green_X,
2795 green_Y, green_Z, blue_X, blue_Y, blue_Z)
2796 png_set_cHRM_fixed(png_ptr, info_ptr, int_white_x, int_white_y,
2797 int_red_x, int_red_y, int_green_x, int_green_y,
2798 int_blue_x, int_blue_y)
2799 png_set_cHRM_XYZ_fixed(png_ptr, info_ptr, int_red_X, int_red_Y,
2800 int_red_Z, int_green_X, int_green_Y, int_green_Z,
2801 int_blue_X, int_blue_Y, int_blue_Z)
2802
2803 {white,red,green,blue}_{x,y}
2804 A color space encoding specified using the chromaticities
2805 of the end points and the white point.
2806
2807 {red,green,blue}_{X,Y,Z}
2808 A color space encoding specified using the encoding end
2809 points - the CIE tristimulus specification of the intended
2810 color of the red, green and blue channels in the PNG RGB
2811 data. The white point is simply the sum of the three end
2812 points.
970f6abe
VZ
2813
2814 png_set_sRGB(png_ptr, info_ptr, srgb_intent);
9c0d9ce3 2815
970f6abe
VZ
2816 srgb_intent - the rendering intent
2817 (PNG_INFO_sRGB) The presence of
2818 the sRGB chunk means that the pixel
2819 data is in the sRGB color space.
2820 This chunk also implies specific
2821 values of gAMA and cHRM. Rendering
2822 intent is the CSS-1 property that
2823 has been defined by the International
2824 Color Consortium
2825 (http://www.color.org).
2826 It can be one of
2827 PNG_sRGB_INTENT_SATURATION,
2828 PNG_sRGB_INTENT_PERCEPTUAL,
2829 PNG_sRGB_INTENT_ABSOLUTE, or
2830 PNG_sRGB_INTENT_RELATIVE.
2831
2832
2833 png_set_sRGB_gAMA_and_cHRM(png_ptr, info_ptr,
2834 srgb_intent);
9c0d9ce3 2835
970f6abe
VZ
2836 srgb_intent - the rendering intent
2837 (PNG_INFO_sRGB) The presence of the
2838 sRGB chunk means that the pixel
2839 data is in the sRGB color space.
2840 This function also causes gAMA and
2841 cHRM chunks with the specific values
2842 that are consistent with sRGB to be
2843 written.
2844
2845 png_set_iCCP(png_ptr, info_ptr, name, compression_type,
9c0d9ce3
DS
2846 profile, proflen);
2847
2848 name - The profile name.
2849
2850 compression_type - The compression type; always
2851 PNG_COMPRESSION_TYPE_BASE for PNG 1.0.
2852 You may give NULL to this argument to
2853 ignore it.
2854
2855 profile - International Color Consortium color
2856 profile data. May contain NULs.
2857
2858 proflen - length of profile data in bytes.
970f6abe
VZ
2859
2860 png_set_sBIT(png_ptr, info_ptr, sig_bit);
9c0d9ce3 2861
970f6abe
VZ
2862 sig_bit - the number of significant bits for
2863 (PNG_INFO_sBIT) each of the gray, red,
2864 green, and blue channels, whichever are
2865 appropriate for the given color type
2866 (png_color_16)
2867
b61cc19c
PC
2868 png_set_tRNS(png_ptr, info_ptr, trans_alpha,
2869 num_trans, trans_color);
9c0d9ce3 2870
b61cc19c
PC
2871 trans_alpha - array of alpha (transparency)
2872 entries for palette (PNG_INFO_tRNS)
9c0d9ce3
DS
2873
2874 num_trans - number of transparent entries
2875 (PNG_INFO_tRNS)
2876
b61cc19c
PC
2877 trans_color - graylevel or color sample values
2878 (in order red, green, blue) of the
2879 single transparent color for
970f6abe 2880 non-paletted images (PNG_INFO_tRNS)
970f6abe
VZ
2881
2882 png_set_hIST(png_ptr, info_ptr, hist);
9c0d9ce3 2883
970f6abe 2884 hist - histogram of palette (array of
9c0d9ce3 2885 png_uint_16) (PNG_INFO_hIST)
970f6abe
VZ
2886
2887 png_set_tIME(png_ptr, info_ptr, mod_time);
9c0d9ce3 2888
970f6abe
VZ
2889 mod_time - time image was last modified
2890 (PNG_VALID_tIME)
2891
2892 png_set_bKGD(png_ptr, info_ptr, background);
9c0d9ce3
DS
2893
2894 background - background color (of type
2895 png_color_16p) (PNG_VALID_bKGD)
970f6abe
VZ
2896
2897 png_set_text(png_ptr, info_ptr, text_ptr, num_text);
9c0d9ce3 2898
970f6abe
VZ
2899 text_ptr - array of png_text holding image
2900 comments
9c0d9ce3 2901
970f6abe
VZ
2902 text_ptr[i].compression - type of compression used
2903 on "text" PNG_TEXT_COMPRESSION_NONE
2904 PNG_TEXT_COMPRESSION_zTXt
2905 PNG_ITXT_COMPRESSION_NONE
2906 PNG_ITXT_COMPRESSION_zTXt
2907 text_ptr[i].key - keyword for comment. Must contain
2908 1-79 characters.
2909 text_ptr[i].text - text comments for current
2910 keyword. Can be NULL or empty.
2911 text_ptr[i].text_length - length of text string,
2912 after decompression, 0 for iTXt
2913 text_ptr[i].itxt_length - length of itxt string,
2914 after decompression, 0 for tEXt/zTXt
2915 text_ptr[i].lang - language of comment (NULL or
2916 empty for unknown).
2917 text_ptr[i].translated_keyword - keyword in UTF-8 (NULL
2918 or empty for unknown).
72281370 2919
b61cc19c 2920 Note that the itxt_length, lang, and lang_key
72281370
DS
2921 members of the text_ptr structure only exist when the
2922 library is built with iTXt chunk support. Prior to
2923 libpng-1.4.0 the library was built by default without
2924 iTXt support. Also note that when iTXt is supported,
2925 they contain NULL pointers when the "compression"
2926 field contains PNG_TEXT_COMPRESSION_NONE or
2927 PNG_TEXT_COMPRESSION_zTXt.
b61cc19c 2928
970f6abe
VZ
2929 num_text - number of comments
2930
2931 png_set_sPLT(png_ptr, info_ptr, &palette_ptr,
2932 num_spalettes);
9c0d9ce3 2933
970f6abe
VZ
2934 palette_ptr - array of png_sPLT_struct structures
2935 to be added to the list of palettes
2936 in the info structure.
2937 num_spalettes - number of palette structures to be
2938 added.
2939
2940 png_set_oFFs(png_ptr, info_ptr, offset_x, offset_y,
2941 unit_type);
9c0d9ce3 2942
970f6abe
VZ
2943 offset_x - positive offset from the left
2944 edge of the screen
9c0d9ce3 2945
970f6abe
VZ
2946 offset_y - positive offset from the top
2947 edge of the screen
9c0d9ce3 2948
970f6abe
VZ
2949 unit_type - PNG_OFFSET_PIXEL, PNG_OFFSET_MICROMETER
2950
2951 png_set_pHYs(png_ptr, info_ptr, res_x, res_y,
2952 unit_type);
9c0d9ce3 2953
970f6abe
VZ
2954 res_x - pixels/unit physical resolution
2955 in x direction
9c0d9ce3 2956
970f6abe
VZ
2957 res_y - pixels/unit physical resolution
2958 in y direction
9c0d9ce3 2959
970f6abe
VZ
2960 unit_type - PNG_RESOLUTION_UNKNOWN,
2961 PNG_RESOLUTION_METER
2962
2963 png_set_sCAL(png_ptr, info_ptr, unit, width, height)
9c0d9ce3 2964
970f6abe 2965 unit - physical scale units (an integer)
9c0d9ce3 2966
970f6abe 2967 width - width of a pixel in physical scale units
9c0d9ce3 2968
970f6abe
VZ
2969 height - height of a pixel in physical scale units
2970 (width and height are doubles)
2971
2972 png_set_sCAL_s(png_ptr, info_ptr, unit, width, height)
9c0d9ce3 2973
970f6abe 2974 unit - physical scale units (an integer)
9c0d9ce3 2975
970f6abe 2976 width - width of a pixel in physical scale units
9c0d9ce3
DS
2977 expressed as a string
2978
970f6abe
VZ
2979 height - height of a pixel in physical scale units
2980 (width and height are strings like "2.54")
2981
2982 png_set_unknown_chunks(png_ptr, info_ptr, &unknowns,
2983 num_unknowns)
9c0d9ce3 2984
970f6abe
VZ
2985 unknowns - array of png_unknown_chunk
2986 structures holding unknown chunks
2987 unknowns[i].name - name of unknown chunk
2988 unknowns[i].data - data of unknown chunk
2989 unknowns[i].size - size of unknown chunk's data
2990 unknowns[i].location - position to write chunk in file
2991 0: do not write chunk
2992 PNG_HAVE_IHDR: before PLTE
2993 PNG_HAVE_PLTE: before IDAT
2994 PNG_AFTER_IDAT: after IDAT
2995
2996The "location" member is set automatically according to
2997what part of the output file has already been written.
2998You can change its value after calling png_set_unknown_chunks()
2999as demonstrated in pngtest.c. Within each of the "locations",
3000the chunks are sequenced according to their position in the
3001structure (that is, the value of "i", which is the order in which
3002the chunk was either read from the input file or defined with
3003png_set_unknown_chunks).
3004
3005A quick word about text and num_text. text is an array of png_text
3006structures. num_text is the number of valid structures in the array.
3007Each png_text structure holds a language code, a keyword, a text value,
3008and a compression type.
3009
3010The compression types have the same valid numbers as the compression
3011types of the image data. Currently, the only valid number is zero.
3012However, you can store text either compressed or uncompressed, unlike
3013images, which always have to be compressed. So if you don't want the
3014text compressed, set the compression type to PNG_TEXT_COMPRESSION_NONE.
3015Because tEXt and zTXt chunks don't have a language field, if you
3016specify PNG_TEXT_COMPRESSION_NONE or PNG_TEXT_COMPRESSION_zTXt
3017any language code or translated keyword will not be written out.
3018
9c0d9ce3 3019Until text gets around a few hundred bytes, it is not worth compressing it.
970f6abe
VZ
3020After the text has been written out to the file, the compression type
3021is set to PNG_TEXT_COMPRESSION_NONE_WR or PNG_TEXT_COMPRESSION_zTXt_WR,
3022so that it isn't written out again at the end (in case you are calling
9c0d9ce3 3023png_write_end() with the same struct).
970f6abe
VZ
3024
3025The keywords that are given in the PNG Specification are:
3026
3027 Title Short (one line) title or
3028 caption for image
9c0d9ce3 3029
970f6abe 3030 Author Name of image's creator
9c0d9ce3 3031
970f6abe 3032 Description Description of image (possibly long)
9c0d9ce3 3033
970f6abe 3034 Copyright Copyright notice
9c0d9ce3 3035
970f6abe
VZ
3036 Creation Time Time of original image creation
3037 (usually RFC 1123 format, see below)
9c0d9ce3 3038
970f6abe 3039 Software Software used to create the image
9c0d9ce3 3040
970f6abe 3041 Disclaimer Legal disclaimer
9c0d9ce3 3042
970f6abe 3043 Warning Warning of nature of content
9c0d9ce3 3044
970f6abe 3045 Source Device used to create the image
9c0d9ce3 3046
970f6abe
VZ
3047 Comment Miscellaneous comment; conversion
3048 from other image format
3049
3050The keyword-text pairs work like this. Keywords should be short
3051simple descriptions of what the comment is about. Some typical
3052keywords are found in the PNG specification, as is some recommendations
3053on keywords. You can repeat keywords in a file. You can even write
3054some text before the image and some after. For example, you may want
3055to put a description of the image before the image, but leave the
3056disclaimer until after, so viewers working over modem connections
3057don't have to wait for the disclaimer to go over the modem before
3058they start seeing the image. Finally, keywords should be full
3059words, not abbreviations. Keywords and text are in the ISO 8859-1
3060(Latin-1) character set (a superset of regular ASCII) and can not
3061contain NUL characters, and should not contain control or other
3062unprintable characters. To make the comments widely readable, stick
3063with basic ASCII, and avoid machine specific character set extensions
3064like the IBM-PC character set. The keyword must be present, but
3065you can leave off the text string on non-compressed pairs.
3066Compressed pairs must have a text string, as only the text string
3067is compressed anyway, so the compression would be meaningless.
3068
3069PNG supports modification time via the png_time structure. Two
3070conversion routines are provided, png_convert_from_time_t() for
3071time_t and png_convert_from_struct_tm() for struct tm. The
3072time_t routine uses gmtime(). You don't have to use either of
3073these, but if you wish to fill in the png_time structure directly,
3074you should provide the time in universal time (GMT) if possible
3075instead of your local time. Note that the year number is the full
3076year (e.g. 1998, rather than 98 - PNG is year 2000 compliant!), and
3077that months start with 1.
3078
3079If you want to store the time of the original image creation, you should
3080use a plain tEXt chunk with the "Creation Time" keyword. This is
3081necessary because the "creation time" of a PNG image is somewhat vague,
3082depending on whether you mean the PNG file, the time the image was
3083created in a non-PNG format, a still photo from which the image was
3084scanned, or possibly the subject matter itself. In order to facilitate
3085machine-readable dates, it is recommended that the "Creation Time"
3086tEXt chunk use RFC 1123 format dates (e.g. "22 May 1997 18:07:10 GMT"),
3087although this isn't a requirement. Unlike the tIME chunk, the
3088"Creation Time" tEXt chunk is not expected to be automatically changed
3089by the software. To facilitate the use of RFC 1123 dates, a function
fff5f7d5
VZ
3090png_convert_to_rfc1123_buffer(png_ptr, buffer, png_timep) is provided to
3091convert from PNG time to an RFC 1123 format string. The caller must provide
3092a writeable buffer of at least 29 bytes.
970f6abe
VZ
3093
3094Writing unknown chunks
3095
3096You can use the png_set_unknown_chunks function to queue up chunks
3097for writing. You give it a chunk name, raw data, and a size; that's
3098all there is to it. The chunks will be written by the next following
3099png_write_info_before_PLTE, png_write_info, or png_write_end function.
3100Any chunks previously read into the info structure's unknown-chunk
3101list will also be written out in a sequence that satisfies the PNG
3102specification's ordering rules.
3103
3104The high-level write interface
3105
3106At this point there are two ways to proceed; through the high-level
3107write interface, or through a sequence of low-level write operations.
3108You can use the high-level interface if your image data is present
3109in the info structure. All defined output
3110transformations are permitted, enabled by the following masks.
3111
3112 PNG_TRANSFORM_IDENTITY No transformation
3113 PNG_TRANSFORM_PACKING Pack 1, 2 and 4-bit samples
3114 PNG_TRANSFORM_PACKSWAP Change order of packed
3115 pixels to LSB first
3116 PNG_TRANSFORM_INVERT_MONO Invert monochrome images
3117 PNG_TRANSFORM_SHIFT Normalize pixels to the
3118 sBIT depth
3119 PNG_TRANSFORM_BGR Flip RGB to BGR, RGBA
3120 to BGRA
3121 PNG_TRANSFORM_SWAP_ALPHA Flip RGBA to ARGB or GA
3122 to AG
3123 PNG_TRANSFORM_INVERT_ALPHA Change alpha from opacity
3124 to transparency
3125 PNG_TRANSFORM_SWAP_ENDIAN Byte-swap 16-bit samples
b61cc19c
PC
3126 PNG_TRANSFORM_STRIP_FILLER Strip out filler
3127 bytes (deprecated).
3128 PNG_TRANSFORM_STRIP_FILLER_BEFORE Strip out leading
3129 filler bytes
3130 PNG_TRANSFORM_STRIP_FILLER_AFTER Strip out trailing
3131 filler bytes
970f6abe
VZ
3132
3133If you have valid image data in the info structure (you can use
3134png_set_rows() to put image data in the info structure), simply do this:
3135
3136 png_write_png(png_ptr, info_ptr, png_transforms, NULL)
3137
3138where png_transforms is an integer containing the bitwise OR of some set of
3139transformation flags. This call is equivalent to png_write_info(),
3140followed the set of transformations indicated by the transform mask,
3141then png_write_image(), and finally png_write_end().
3142
3143(The final parameter of this call is not yet used. Someday it might point
3144to transformation parameters required by some future output transform.)
3145
3146You must use png_transforms and not call any png_set_transform() functions
3147when you use png_write_png().
3148
3149The low-level write interface
3150
3151If you are going the low-level route instead, you are now ready to
3152write all the file information up to the actual image data. You do
3153this with a call to png_write_info().
3154
3155 png_write_info(png_ptr, info_ptr);
3156
3157Note that there is one transformation you may need to do before
3158png_write_info(). In PNG files, the alpha channel in an image is the
b61cc19c
PC
3159level of opacity. If your data is supplied as a level of transparency,
3160you can invert the alpha channel before you write it, so that 0 is
3161fully transparent and 255 (in 8-bit or paletted images) or 65535
3162(in 16-bit images) is fully opaque, with
970f6abe
VZ
3163
3164 png_set_invert_alpha(png_ptr);
3165
3166This must appear before png_write_info() instead of later with the
3167other transformations because in the case of paletted images the tRNS
3168chunk data has to be inverted before the tRNS chunk is written. If
3169your image is not a paletted image, the tRNS data (which in such cases
3170represents a single color to be rendered as transparent) won't need to
3171be changed, and you can safely do this transformation after your
3172png_write_info() call.
3173
3174If you need to write a private chunk that you want to appear before
3175the PLTE chunk when PLTE is present, you can write the PNG info in
3176two steps, and insert code to write your own chunk between them:
3177
3178 png_write_info_before_PLTE(png_ptr, info_ptr);
3179 png_set_unknown_chunks(png_ptr, info_ptr, ...);
3180 png_write_info(png_ptr, info_ptr);
3181
3182After you've written the file information, you can set up the library
3183to handle any special transformations of the image data. The various
3184ways to transform the data will be described in the order that they
3185should occur. This is important, as some of these change the color
3186type and/or bit depth of the data, and some others only work on
3187certain color types and bit depths. Even though each transformation
3188checks to see if it has data that it can do something with, you should
3189make sure to only enable a transformation if it will be valid for the
3190data. For example, don't swap red and blue on grayscale data.
3191
3192PNG files store RGB pixels packed into 3 or 6 bytes. This code tells
3193the library to strip input data that has 4 or 8 bytes per pixel down
3194to 3 or 6 bytes (or strip 2 or 4-byte grayscale+filler data to 1 or 2
3195bytes per pixel).
3196
3197 png_set_filler(png_ptr, 0, PNG_FILLER_BEFORE);
3198
3199where the 0 is unused, and the location is either PNG_FILLER_BEFORE or
3200PNG_FILLER_AFTER, depending upon whether the filler byte in the pixel
3201is stored XRGB or RGBX.
3202
3203PNG files pack pixels of bit depths 1, 2, and 4 into bytes as small as
3204they can, resulting in, for example, 8 pixels per byte for 1 bit files.
3205If the data is supplied at 1 pixel per byte, use this code, which will
3206correctly pack the pixels into a single byte:
3207
3208 png_set_packing(png_ptr);
3209
3210PNG files reduce possible bit depths to 1, 2, 4, 8, and 16. If your
3211data is of another bit depth, you can write an sBIT chunk into the
3212file so that decoders can recover the original data if desired.
3213
3214 /* Set the true bit depth of the image data */
3215 if (color_type & PNG_COLOR_MASK_COLOR)
3216 {
9c0d9ce3
DS
3217 sig_bit.red = true_bit_depth;
3218 sig_bit.green = true_bit_depth;
3219 sig_bit.blue = true_bit_depth;
970f6abe 3220 }
9c0d9ce3 3221
970f6abe
VZ
3222 else
3223 {
9c0d9ce3 3224 sig_bit.gray = true_bit_depth;
970f6abe 3225 }
9c0d9ce3 3226
970f6abe
VZ
3227 if (color_type & PNG_COLOR_MASK_ALPHA)
3228 {
9c0d9ce3 3229 sig_bit.alpha = true_bit_depth;
970f6abe
VZ
3230 }
3231
3232 png_set_sBIT(png_ptr, info_ptr, &sig_bit);
3233
3234If the data is stored in the row buffer in a bit depth other than
3235one supported by PNG (e.g. 3 bit data in the range 0-7 for a 4-bit PNG),
3236this will scale the values to appear to be the correct bit depth as
3237is required by PNG.
3238
3239 png_set_shift(png_ptr, &sig_bit);
3240
9c0d9ce3 3241PNG files store 16-bit pixels in network byte order (big-endian,
970f6abe
VZ
3242ie. most significant bits first). This code would be used if they are
3243supplied the other way (little-endian, i.e. least significant bits
3244first, the way PCs store them):
3245
3246 if (bit_depth > 8)
3247 png_set_swap(png_ptr);
3248
3249If you are using packed-pixel images (1, 2, or 4 bits/pixel), and you
3250need to change the order the pixels are packed into bytes, you can use:
3251
3252 if (bit_depth < 8)
3253 png_set_packswap(png_ptr);
3254
3255PNG files store 3 color pixels in red, green, blue order. This code
3256would be used if they are supplied as blue, green, red:
3257
3258 png_set_bgr(png_ptr);
3259
3260PNG files describe monochrome as black being zero and white being
3261one. This code would be used if the pixels are supplied with this reversed
3262(black being one and white being zero):
3263
3264 png_set_invert_mono(png_ptr);
3265
3266Finally, you can write your own transformation function if none of
3267the existing ones meets your needs. This is done by setting a callback
3268with
3269
3270 png_set_write_user_transform_fn(png_ptr,
3271 write_transform_fn);
3272
3273You must supply the function
3274
9c0d9ce3 3275 void write_transform_fn(png_structp png_ptr, png_row_infop
970f6abe
VZ
3276 row_info, png_bytep data)
3277
3278See pngtest.c for a working example. Your function will be called
9c0d9ce3
DS
3279before any of the other transformations are processed. If supported
3280libpng also supplies an information routine that may be called from
3281your callback:
3282
3283 png_get_current_row_number(png_ptr);
3284 png_get_current_pass_number(png_ptr);
3285
3286This returns the current row passed to the transform. With interlaced
3287images the value returned is the row in the input sub-image image. Use
3288PNG_ROW_FROM_PASS_ROW(row, pass) and PNG_COL_FROM_PASS_COL(col, pass) to
3289find the output pixel (x,y) given an interlaced sub-image pixel (row,col,pass).
3290
3291The discussion of interlace handling above contains more information on how to
3292use these values.
970f6abe
VZ
3293
3294You can also set up a pointer to a user structure for use by your
3295callback function.
3296
3297 png_set_user_transform_info(png_ptr, user_ptr, 0, 0);
3298
3299The user_channels and user_depth parameters of this function are ignored
3300when writing; you can set them to zero as shown.
3301
3302You can retrieve the pointer via the function png_get_user_transform_ptr().
3303For example:
3304
3305 voidp write_user_transform_ptr =
3306 png_get_user_transform_ptr(png_ptr);
3307
3308It is possible to have libpng flush any pending output, either manually,
3309or automatically after a certain number of lines have been written. To
3310flush the output stream a single time call:
3311
3312 png_write_flush(png_ptr);
3313
3314and to have libpng flush the output stream periodically after a certain
3315number of scanlines have been written, call:
3316
3317 png_set_flush(png_ptr, nrows);
3318
3319Note that the distance between rows is from the last time png_write_flush()
3320was called, or the first row of the image if it has never been called.
3321So if you write 50 lines, and then png_set_flush 25, it will flush the
3322output on the next scanline, and every 25 lines thereafter, unless
3323png_write_flush() is called before 25 more lines have been written.
3324If nrows is too small (less than about 10 lines for a 640 pixel wide
3325RGB image) the image compression may decrease noticeably (although this
3326may be acceptable for real-time applications). Infrequent flushing will
3327only degrade the compression performance by a few percent over images
3328that do not use flushing.
3329
3330Writing the image data
3331
3332That's it for the transformations. Now you can write the image data.
3333The simplest way to do this is in one function call. If you have the
3334whole image in memory, you can just call png_write_image() and libpng
3335will write the image. You will need to pass in an array of pointers to
3336each row. This function automatically handles interlacing, so you don't
3337need to call png_set_interlace_handling() or call this function multiple
3338times, or any of that other stuff necessary with png_write_rows().
3339
3340 png_write_image(png_ptr, row_pointers);
3341
3342where row_pointers is:
3343
3344 png_byte *row_pointers[height];
3345
3346You can point to void or char or whatever you use for pixels.
3347
3348If you don't want to write the whole image at once, you can
3349use png_write_rows() instead. If the file is not interlaced,
3350this is simple:
3351
3352 png_write_rows(png_ptr, row_pointers,
3353 number_of_rows);
3354
3355row_pointers is the same as in the png_write_image() call.
3356
3357If you are just writing one row at a time, you can do this with
3358a single row_pointer instead of an array of row_pointers:
3359
3360 png_bytep row_pointer = row;
3361
3362 png_write_row(png_ptr, row_pointer);
3363
b61cc19c
PC
3364When the file is interlaced, things can get a good deal more complicated.
3365The only currently (as of the PNG Specification version 1.2, dated July
33661999) defined interlacing scheme for PNG files is the "Adam7" interlace
3367scheme, that breaks down an image into seven smaller images of varying
3368size. libpng will build these images for you, or you can do them
3369yourself. If you want to build them yourself, see the PNG specification
3370for details of which pixels to write when.
970f6abe
VZ
3371
3372If you don't want libpng to handle the interlacing details, just
3373use png_set_interlace_handling() and call png_write_rows() the
9c0d9ce3
DS
3374correct number of times to write all the sub-images
3375(png_set_interlace_handling() returns the number of sub-images.)
970f6abe
VZ
3376
3377If you want libpng to build the sub-images, call this before you start
3378writing any rows:
3379
9c0d9ce3 3380 number_of_passes = png_set_interlace_handling(png_ptr);
970f6abe 3381
b61cc19c
PC
3382This will return the number of passes needed. Currently, this is seven,
3383but may change if another interlace type is added.
970f6abe
VZ
3384
3385Then write the complete image number_of_passes times.
3386
9c0d9ce3
DS
3387 png_write_rows(png_ptr, row_pointers, number_of_rows);
3388
3389Think carefully before you write an interlaced image. Typically code that
3390reads such images reads all the image data into memory, uncompressed, before
3391doing any processing. Only code that can display an image on the fly can
3392take advantage of the interlacing and even then the image has to be exactly
3393the correct size for the output device, because scaling an image requires
3394adjacent pixels and these are not available until all the passes have been
3395read.
3396
3397If you do write an interlaced image you will hardly ever need to handle
3398the interlacing yourself. Call png_set_interlace_handling() and use the
3399approach described above.
970f6abe 3400
9c0d9ce3
DS
3401The only time it is conceivable that you will really need to write an
3402interlaced image pass-by-pass is when you have read one pass by pass and
3403made some pixel-by-pixel transformation to it, as described in the read
3404code above. In this case use the PNG_PASS_ROWS and PNG_PASS_COLS macros
3405to determine the size of each sub-image in turn and simply write the rows
3406you obtained from the read code.
970f6abe
VZ
3407
3408Finishing a sequential write
3409
3410After you are finished writing the image, you should finish writing
3411the file. If you are interested in writing comments or time, you should
3412pass an appropriately filled png_info pointer. If you are not interested,
3413you can pass NULL.
3414
3415 png_write_end(png_ptr, info_ptr);
3416
3417When you are done, you can free all memory used by libpng like this:
3418
3419 png_destroy_write_struct(&png_ptr, &info_ptr);
3420
3421It is also possible to individually free the info_ptr members that
3422point to libpng-allocated storage with the following function:
3423
3424 png_free_data(png_ptr, info_ptr, mask, seq)
9c0d9ce3 3425
970f6abe
VZ
3426 mask - identifies data to be freed, a mask
3427 containing the bitwise OR of one or
3428 more of
3429 PNG_FREE_PLTE, PNG_FREE_TRNS,
3430 PNG_FREE_HIST, PNG_FREE_ICCP,
3431 PNG_FREE_PCAL, PNG_FREE_ROWS,
3432 PNG_FREE_SCAL, PNG_FREE_SPLT,
3433 PNG_FREE_TEXT, PNG_FREE_UNKN,
3434 or simply PNG_FREE_ALL
9c0d9ce3 3435
970f6abe
VZ
3436 seq - sequence number of item to be freed
3437 (-1 for all items)
3438
3439This function may be safely called when the relevant storage has
3440already been freed, or has not yet been allocated, or was allocated
b61cc19c
PC
3441by the user and not by libpng, and will in those cases do nothing.
3442The "seq" parameter is ignored if only one item of the selected data
3443type, such as PLTE, is allowed. If "seq" is not -1, and multiple items
3444are allowed for the data type identified in the mask, such as text or
3445sPLT, only the n'th item in the structure is freed, where n is "seq".
3446
3447If you allocated data such as a palette that you passed in to libpng
3448with png_set_*, you must not free it until just before the call to
970f6abe
VZ
3449png_destroy_write_struct().
3450
3451The default behavior is only to free data that was allocated internally
3452by libpng. This can be changed, so that libpng will not free the data,
3453or so that it will free data that was allocated by the user with png_malloc()
fff5f7d5 3454or png_calloc() and passed in via a png_set_*() function, with
970f6abe
VZ
3455
3456 png_data_freer(png_ptr, info_ptr, freer, mask)
9c0d9ce3 3457
970f6abe
VZ
3458 freer - one of
3459 PNG_DESTROY_WILL_FREE_DATA
3460 PNG_SET_WILL_FREE_DATA
3461 PNG_USER_WILL_FREE_DATA
3462
9c0d9ce3
DS
3463 mask - which data elements are affected
3464 same choices as in png_free_data()
3465
970f6abe
VZ
3466For example, to transfer responsibility for some data from a read structure
3467to a write structure, you could use
3468
3469 png_data_freer(read_ptr, read_info_ptr,
3470 PNG_USER_WILL_FREE_DATA,
3471 PNG_FREE_PLTE|PNG_FREE_tRNS|PNG_FREE_hIST)
9c0d9ce3 3472
970f6abe
VZ
3473 png_data_freer(write_ptr, write_info_ptr,
3474 PNG_DESTROY_WILL_FREE_DATA,
3475 PNG_FREE_PLTE|PNG_FREE_tRNS|PNG_FREE_hIST)
3476
3477thereby briefly reassigning responsibility for freeing to the user but
3478immediately afterwards reassigning it once more to the write_destroy
3479function. Having done this, it would then be safe to destroy the read
3480structure and continue to use the PLTE, tRNS, and hIST data in the write
3481structure.
3482
3483This function only affects data that has already been allocated.
3484You can call this function before calling after the png_set_*() functions
3485to control whether the user or png_destroy_*() is supposed to free the data.
3486When the user assumes responsibility for libpng-allocated data, the
3487application must use
3488png_free() to free it, and when the user transfers responsibility to libpng
3489for data that the user has allocated, the user must have used png_malloc()
fff5f7d5 3490or png_calloc() to allocate it.
970f6abe
VZ
3491
3492If you allocated text_ptr.text, text_ptr.lang, and text_ptr.translated_keyword
3493separately, do not transfer responsibility for freeing text_ptr to libpng,
3494because when libpng fills a png_text structure it combines these members with
3495the key member, and png_free_data() will free only text_ptr.key. Similarly,
3496if you transfer responsibility for free'ing text_ptr from libpng to your
3497application, your application must not separately free those members.
3498For a more compact example of writing a PNG image, see the file example.c.
3499
fff5f7d5
VZ
3500V. Simplified API
3501
3502The simplified API, which became available in libpng-1.6.0, hides the details
3503of both libpng and the PNG file format itself.
3504It allows PNG files to be read into a very limited number of
3505in-memory bitmap formats or to be written from the same formats. If these
3506formats do not accomodate your needs then you can, and should, use the more
3507sophisticated APIs above - these support a wide variety of in-memory formats
3508and a wide variety of sophisticated transformations to those formats as well
3509as a wide variety of APIs to manipulate ancilliary information.
3510
3511To read a PNG file using the simplified API:
3512
3513 1) Declare a 'png_image' structure (see below) on the
3514 stack and memset() it to all zero.
3515
3516 2) Call the appropriate png_image_begin_read... function.
3517
3518 3) Set the png_image 'format' member to the required
3519 format and allocate a buffer for the image.
3520
3521 4) Call png_image_finish_read to read the image into
3522 your buffer.
3523
3524There are no restrictions on the format of the PNG input itself; all valid
3525color types, bit depths, and interlace methods are acceptable, and the
3526input image is transformed as necessary to the requested in-memory format
3527during the png_image_finish_read() step.
3528
3529To write a PNG file using the simplified API:
3530
3531 1) Declare a 'png_image' structure on the stack and memset()
3532 it to all zero.
3533
3534 2) Initialize the members of the structure that describe the
3535 image, setting the 'format' member to the format of the
3536 image in memory.
3537
3538 3) Call the appropriate png_image_write... function with a
3539 pointer to the image to write the PNG data.
3540
3541png_image is a structure that describes the in-memory format of an image
3542when it is being read or define the in-memory format of an image that you
3543need to write. The "png_image" structure contains the following members:
3544
3545 png_uint_32 version Set to PNG_IMAGE_VERSION
3546 png_uint_32 width Image width in pixels (columns)
3547 png_uint_32 height Image height in pixels (rows)
3548 png_uint_32 format Image format as defined below
3549 png_uint_32 flags A bit mask containing informational flags
3550 png_controlp opaque Initialize to NULL, free with png_image_free
3551 png_uint_32 colormap_entries; Number of entries in the color-map
3552 png_uint_32 warning_or_error;
3553 char message[64];
3554
3555In the event of an error or warning the following field warning_or_error
3556field will be set to a non-zero value and the 'message' field will contain
3557a '\0' terminated string with the libpng error or warning message. If both
3558warnings and an error were encountered, only the error is recorded. If there
3559are multiple warnings, only the first one is recorded.
3560
3561The upper 30 bits of this value are reserved; the low two bits contain
3562a two bit code such that a value more than 1 indicates a failure in the API
3563just called:
3564
3565 0 - no warning or error
3566 1 - warning
3567 2 - error
3568 3 - error preceded by warning
3569
3570The pixels (samples) of the image have one to four channels whose components
3571have original values in the range 0 to 1.0:
3572
3573 1: A single gray or luminance channel (G).
3574 2: A gray/luminance channel and an alpha channel (GA).
3575 3: Three red, green, blue color channels (RGB).
3576 4: Three color channels and an alpha channel (RGBA).
3577
3578The channels are encoded in one of two ways:
3579
3580 a) As a small integer, value 0..255, contained in a single byte. For the
3581alpha channel the original value is simply value/255. For the color or
3582luminance channels the value is encoded according to the sRGB specification
3583and matches the 8-bit format expected by typical display devices.
3584
3585The color/gray channels are not scaled (pre-multiplied) by the alpha
3586channel and are suitable for passing to color management software.
3587
3588 b) As a value in the range 0..65535, contained in a 2-byte integer. All
3589channels can be converted to the original value by dividing by 65535; all
3590channels are linear. Color channels use the RGB encoding (RGB end-points) of
3591the sRGB specification. This encoding is identified by the
3592PNG_FORMAT_FLAG_LINEAR flag below.
3593
3594When an alpha channel is present it is expected to denote pixel coverage
3595of the color or luminance channels and is returned as an associated alpha
3596channel: the color/gray channels are scaled (pre-multiplied) by the alpha
3597value.
3598
3599When a color-mapped image is used as a result of calling
3600png_image_read_colormap or png_image_write_colormap the channels are encoded
3601in the color-map and the descriptions above apply to the color-map entries.
3602The image data is encoded as small integers, value 0..255, that index the
3603entries in the color-map. One integer (one byte) is stored for each pixel.
3604
3605PNG_FORMAT_*
3606
3607The #defines to be used in png_image::format. Each #define identifies a
3608particular layout of channel data and, if present, alpha values. There are
3609separate defines for each of the two channel encodings.
3610
3611A format is built up using single bit flag values. Not all combinations are
3612valid: use the bit flag values below for testing a format returned by the
3613read APIs, but set formats from the derived values.
3614
3615When reading or writing color-mapped images the format should be set to the
3616format of the entries in the color-map then png_image_{read,write}_colormap
3617called to read or write the color-map and set the format correctly for the
3618image data. Do not set the PNG_FORMAT_FLAG_COLORMAP bit directly!
3619
3620NOTE: libpng can be built with particular features disabled, if you see
3621compiler errors because the definition of one of the following flags has been
3622compiled out it is because libpng does not have the required support. It is
3623possible, however, for the libpng configuration to enable the format on just
3624read or just write; in that case you may see an error at run time. You can
3625guard against this by checking for the definition of:
3626
3627 PNG_SIMPLIFIED_{READ,WRITE}_{BGR,AFIRST}_SUPPORTED
3628
3629 PNG_FORMAT_FLAG_ALPHA 0x01 format with an alpha channel
3630 PNG_FORMAT_FLAG_COLOR 0x02 color format: otherwise grayscale
3631 PNG_FORMAT_FLAG_LINEAR 0x04 png_uint_16 channels else png_byte
3632 PNG_FORMAT_FLAG_COLORMAP 0x08 libpng use only
3633 PNG_FORMAT_FLAG_BGR 0x10 BGR colors, else order is RGB
3634 PNG_FORMAT_FLAG_AFIRST 0x20 alpha channel comes first
3635
3636Supported formats are as follows. Future versions of libpng may support more
3637formats; for compatibility with older versions simply check if the format
3638macro is defined using #ifdef. These defines describe the in-memory layout
3639of the components of the pixels of the image.
3640
3641First the single byte formats:
3642
3643 PNG_FORMAT_GRAY 0
3644 PNG_FORMAT_GA PNG_FORMAT_FLAG_ALPHA
3645 PNG_FORMAT_AG (PNG_FORMAT_GA|PNG_FORMAT_FLAG_AFIRST)
3646 PNG_FORMAT_RGB PNG_FORMAT_FLAG_COLOR
3647 PNG_FORMAT_BGR (PNG_FORMAT_FLAG_COLOR|PNG_FORMAT_FLAG_BGR)
3648 PNG_FORMAT_RGBA (PNG_FORMAT_RGB|PNG_FORMAT_FLAG_ALPHA)
3649 PNG_FORMAT_ARGB (PNG_FORMAT_RGBA|PNG_FORMAT_FLAG_AFIRST)
3650 PNG_FORMAT_BGRA (PNG_FORMAT_BGR|PNG_FORMAT_FLAG_ALPHA)
3651 PNG_FORMAT_ABGR (PNG_FORMAT_BGRA|PNG_FORMAT_FLAG_AFIRST)
3652
3653Then the linear 2-byte formats. When naming these "Y" is used to
3654indicate a luminance (gray) channel. The component order within the pixel
3655is always the same - there is no provision for swapping the order of the
3656components in the linear format.
3657
3658 PNG_FORMAT_LINEAR_Y PNG_FORMAT_FLAG_LINEAR
3659 PNG_FORMAT_LINEAR_Y_ALPHA
3660 (PNG_FORMAT_FLAG_LINEAR|PNG_FORMAT_FLAG_ALPHA)
3661 PNG_FORMAT_LINEAR_RGB
3662 (PNG_FORMAT_FLAG_LINEAR|PNG_FORMAT_FLAG_COLOR)
3663 PNG_FORMAT_LINEAR_RGB_ALPHA
3664 (PNG_FORMAT_FLAG_LINEAR|PNG_FORMAT_FLAG_COLOR|
3665 PNG_FORMAT_FLAG_ALPHA)
3666
3667Color-mapped formats are obtained by calling png_image_{read,write}_colormap,
3668as appropriate after setting png_image::format to the format of the color-map
3669to be read or written. Applications may check the value of
3670PNG_FORMAT_FLAG_COLORMAP to see if they have called the colormap API. The
3671format of the color-map may be extracted using the following macro.
3672
3673 PNG_FORMAT_OF_COLORMAP(fmt) ((fmt) & ~PNG_FORMAT_FLAG_COLORMAP)
3674
3675PNG_IMAGE macros
3676
3677These are convenience macros to derive information from a png_image
3678structure. The PNG_IMAGE_SAMPLE_ macros return values appropriate to the
3679actual image sample values - either the entries in the color-map or the
3680pixels in the image. The PNG_IMAGE_PIXEL_ macros return corresponding values
3681for the pixels and will always return 1 after a call to
3682png_image_{read,write}_colormap. The remaining macros return information
3683about the rows in the image and the complete image.
3684
3685NOTE: All the macros that take a png_image::format parameter are compile time
3686constants if the format parameter is, itself, a constant. Therefore these
3687macros can be used in array declarations and case labels where required.
3688Similarly the macros are also pre-processor constants (sizeof is not used) so
3689they can be used in #if tests.
3690
3691First the information about the samples.
3692
3693 PNG_IMAGE_SAMPLE_CHANNELS(fmt)
3694 Returns the total number of channels in a given format: 1..4
3695
3696 PNG_IMAGE_SAMPLE_COMPONENT_SIZE(fmt)
3697 Returns the size in bytes of a single component of a pixel or color-map
3698 entry (as appropriate) in the image.
3699
3700 PNG_IMAGE_SAMPLE_SIZE(fmt)
3701 This is the size of the sample data for one sample. If the image is
3702 color-mapped it is the size of one color-map entry (and image pixels are
3703 one byte in size), otherwise it is the size of one image pixel.
3704
3705 PNG_IMAGE_COLORMAP_SIZE(fmt)
3706 The size of the color-map required by the format; this is the size of the
3707 color-map buffer passed to the png_image_{read,write}_colormap APIs, it is
3708 a fixed number determined by the format so can easily be allocated on the
3709 stack if necessary.
3710
3711#define PNG_IMAGE_MAXIMUM_COLORMAP_COMPONENTS(fmt)\
3712 (PNG_IMAGE_SAMPLE_CHANNELS(fmt) * 256)
3713 /* The maximum size of the color-map required by the format expressed in a
3714 * count of components. This can be used to compile-time allocate a
3715 * color-map:
3716 *
3717 * png_uint_16 colormap[PNG_IMAGE_MAXIMUM_COLORMAP_COMPONENTS(linear_fmt)];
3718 *
3719 * png_byte colormap[PNG_IMAGE_MAXIMUM_COLORMAP_COMPONENTS(sRGB_fmt)];
3720 *
3721 * Alternatively use the PNG_IMAGE_COLORMAP_SIZE macro below to use the
3722 * information from one of the png_image_begin_read_ APIs and dynamically
3723 * allocate the required memory.
3724 */
3725
3726
3727Corresponding information about the pixels
3728
3729 PNG_IMAGE_PIXEL_(test,fmt)
3730
3731 PNG_IMAGE_PIXEL_CHANNELS(fmt)
3732 The number of separate channels (components) in a pixel; 1 for a
3733 color-mapped image.
3734
3735 PNG_IMAGE_PIXEL_COMPONENT_SIZE(fmt)\
3736 The size, in bytes, of each component in a pixel; 1 for a color-mapped
3737 image.
3738
3739 PNG_IMAGE_PIXEL_SIZE(fmt)
3740 The size, in bytes, of a complete pixel; 1 for a color-mapped image.
3741
3742Information about the whole row, or whole image
3743
3744 PNG_IMAGE_ROW_STRIDE(image)
3745 Returns the total number of components in a single row of the image; this
3746 is the minimum 'row stride', the minimum count of components between each
3747 row. For a color-mapped image this is the minimum number of bytes in a
3748 row.
3749
3750 PNG_IMAGE_BUFFER_SIZE(image, row_stride)
3751 Returns the size, in bytes, of an image buffer given a png_image and a row
3752 stride - the number of components to leave space for in each row.
3753
3754 PNG_IMAGE_FLAG_COLORSPACE_NOT_sRGB == 0x01
3755 This indicates the the RGB values of the in-memory bitmap do not
3756 correspond to the red, green and blue end-points defined by sRGB.
3757
3758 PNG_IMAGE_FLAG_COLORMAP == 0x02
3759 The PNG is color-mapped. If this flag is set png_image_read_colormap
3760 can be used without further loss of image information. If it is not set
3761 png_image_read_colormap will cause significant loss if the image has any
3762
3763READ APIs
3764
3765 The png_image passed to the read APIs must have been initialized by setting
3766 the png_controlp field 'opaque' to NULL (or, better, memset the whole thing.)
3767
3768 int png_image_begin_read_from_file( png_imagep image,
3769 const char *file_name)
3770
3771 The named file is opened for read and the image header
3772 is filled in from the PNG header in the file.
3773
3774 int png_image_begin_read_from_stdio (png_imagep image,
3775 FILE* file)
3776
3777 The PNG header is read from the stdio FILE object.
3778
3779 int png_image_begin_read_from_memory(png_imagep image,
3780 png_const_voidp memory, png_size_t size)
3781
3782 The PNG header is read from the given memory buffer.
3783
3784 int png_image_finish_read(png_imagep image,
3785 png_colorp background, void *buffer,
3786 png_int_32 row_stride, void *colormap));
3787
3788 Finish reading the image into the supplied buffer and
3789 clean up the png_image structure.
3790
3791 row_stride is the step, in png_byte or png_uint_16 units
3792 as appropriate, between adjacent rows. A positive stride
3793 indicates that the top-most row is first in the buffer -
3794 the normal top-down arrangement. A negative stride
3795 indicates that the bottom-most row is first in the buffer.
3796
3797 background need only be supplied if an alpha channel must
3798 be removed from a png_byte format and the removal is to be
3799 done by compositing on a solid color; otherwise it may be
3800 NULL and any composition will be done directly onto the
3801 buffer. The value is an sRGB color to use for the
3802 background, for grayscale output the green channel is used.
3803
3804 For linear output removing the alpha channel is always done
3805 by compositing on black.
3806
3807 void png_image_free(png_imagep image)
3808
3809 Free any data allocated by libpng in image->opaque,
3810 setting the pointer to NULL. May be called at any time
3811 after the structure is initialized.
3812
3813When the simplified API needs to convert between sRGB and linear colorspaces,
3814the actual sRGB transfer curve defined in the sRGB specification (see the
3815article at http://en.wikipedia.org/wiki/SRGB) is used, not the gamma=1/2.2
3816approximation used elsewhere in libpng.
3817
3818WRITE APIS
3819
3820For write you must initialize a png_image structure to describe the image to
3821be written:
3822
3823 version: must be set to PNG_IMAGE_VERSION
3824 opaque: must be initialized to NULL
3825 width: image width in pixels
3826 height: image height in rows
3827 format: the format of the data you wish to write
3828 flags: set to 0 unless one of the defined flags applies; set
3829 PNG_IMAGE_FLAG_COLORSPACE_NOT_sRGB for color format images
3830 where the RGB values do not correspond to the colors in sRGB.
3831 colormap_entries: set to the number of entries in the color-map (0 to 256)
3832
3833 int png_image_write_to_file, (png_imagep image,
3834 const char *file, int convert_to_8bit, const void *buffer,
3835 png_int_32 row_stride, const void *colormap));
3836
3837 Write the image to the named file.
3838
3839 int png_image_write_to_stdio(png_imagep image, FILE *file,
3840 int convert_to_8_bit, const void *buffer,
3841 png_int_32 row_stride, const void *colormap)
3842
3843 Write the image to the given (FILE*).
3844
3845With all write APIs if image is in one of the linear formats with
3846(png_uint_16) data then setting convert_to_8_bit will cause the output to be
3847a (png_byte) PNG gamma encoded according to the sRGB specification, otherwise
3848a 16-bit linear encoded PNG file is written.
3849
3850With all APIs row_stride is handled as in the read APIs - it is the spacing
3851from one row to the next in component sized units (float) and if negative
3852indicates a bottom-up row layout in the buffer.
3853
3854Note that the write API does not support interlacing, sub-8-bit pixels,
3855and indexed (paletted) images.
3856
3857VI. Modifying/Customizing libpng
970f6abe
VZ
3858
3859There are two issues here. The first is changing how libpng does
3860standard things like memory allocation, input/output, and error handling.
3861The second deals with more complicated things like adding new chunks,
3862adding new transformations, and generally changing how libpng works.
3863Both of those are compile-time issues; that is, they are generally
3864determined at the time the code is written, and there is rarely a need
3865to provide the user with a means of changing them.
3866
3867Memory allocation, input/output, and error handling
3868
3869All of the memory allocation, input/output, and error handling in libpng
3870goes through callbacks that are user-settable. The default routines are
3871in pngmem.c, pngrio.c, pngwio.c, and pngerror.c, respectively. To change
3872these functions, call the appropriate png_set_*_fn() function.
3873
b61cc19c 3874Memory allocation is done through the functions png_malloc(), png_calloc(),
fff5f7d5
VZ
3875and png_free(). The png_malloc() and png_free() functions currently just
3876call the standard C functions and png_calloc() calls png_malloc() and then
3877clears the newly allocated memory to zero; note that png_calloc(png_ptr, size)
3878is not the same as the calloc(number, size) function provided by stdlib.h.
3879There is limited support for certain systems with segmented memory
3880architectures and the types of pointers declared by png.h match this; you
3881will have to use appropriate pointers in your application. Since it is
b61cc19c
PC
3882unlikely that the method of handling memory allocation on a platform
3883will change between applications, these functions must be modified in
3884the library at compile time. If you prefer to use a different method
3885of allocating and freeing data, you can use png_create_read_struct_2() or
3886png_create_write_struct_2() to register your own functions as described
3887above. These functions also provide a void pointer that can be retrieved
3888via
970f6abe
VZ
3889
3890 mem_ptr=png_get_mem_ptr(png_ptr);
3891
3892Your replacement memory functions must have prototypes as follows:
3893
3894 png_voidp malloc_fn(png_structp png_ptr,
b61cc19c 3895 png_alloc_size_t size);
9c0d9ce3 3896
970f6abe
VZ
3897 void free_fn(png_structp png_ptr, png_voidp ptr);
3898
3899Your malloc_fn() must return NULL in case of failure. The png_malloc()
3900function will normally call png_error() if it receives a NULL from the
3901system memory allocator or from your replacement malloc_fn().
3902
3903Your free_fn() will never be called with a NULL ptr, since libpng's
3904png_free() checks for NULL before calling free_fn().
3905
3906Input/Output in libpng is done through png_read() and png_write(),
3907which currently just call fread() and fwrite(). The FILE * is stored in
3908png_struct and is initialized via png_init_io(). If you wish to change
3909the method of I/O, the library supplies callbacks that you can set
3910through the function png_set_read_fn() and png_set_write_fn() at run
3911time, instead of calling the png_init_io() function. These functions
3912also provide a void pointer that can be retrieved via the function
3913png_get_io_ptr(). For example:
3914
3915 png_set_read_fn(png_structp read_ptr,
3916 voidp read_io_ptr, png_rw_ptr read_data_fn)
3917
3918 png_set_write_fn(png_structp write_ptr,
3919 voidp write_io_ptr, png_rw_ptr write_data_fn,
3920 png_flush_ptr output_flush_fn);
3921
3922 voidp read_io_ptr = png_get_io_ptr(read_ptr);
3923 voidp write_io_ptr = png_get_io_ptr(write_ptr);
3924
3925The replacement I/O functions must have prototypes as follows:
3926
3927 void user_read_data(png_structp png_ptr,
3928 png_bytep data, png_size_t length);
9c0d9ce3 3929
970f6abe
VZ
3930 void user_write_data(png_structp png_ptr,
3931 png_bytep data, png_size_t length);
9c0d9ce3 3932
970f6abe
VZ
3933 void user_flush_data(png_structp png_ptr);
3934
b61cc19c
PC
3935The user_read_data() function is responsible for detecting and
3936handling end-of-data errors.
3937
970f6abe 3938Supplying NULL for the read, write, or flush functions sets them back
b61cc19c
PC
3939to using the default C stream functions, which expect the io_ptr to
3940point to a standard *FILE structure. It is probably a mistake
3941to use NULL for one of write_data_fn and output_flush_fn but not both
3942of them, unless you have built libpng with PNG_NO_WRITE_FLUSH defined.
3943It is an error to read from a write stream, and vice versa.
970f6abe
VZ
3944
3945Error handling in libpng is done through png_error() and png_warning().
3946Errors handled through png_error() are fatal, meaning that png_error()
3947should never return to its caller. Currently, this is handled via
3948setjmp() and longjmp() (unless you have compiled libpng with
b61cc19c
PC
3949PNG_NO_SETJMP, in which case it is handled via PNG_ABORT()),
3950but you could change this to do things like exit() if you should wish,
3951as long as your function does not return.
970f6abe
VZ
3952
3953On non-fatal errors, png_warning() is called
3954to print a warning message, and then control returns to the calling code.
3955By default png_error() and png_warning() print a message on stderr via
3956fprintf() unless the library is compiled with PNG_NO_CONSOLE_IO defined
3957(because you don't want the messages) or PNG_NO_STDIO defined (because
3958fprintf() isn't available). If you wish to change the behavior of the error
3959functions, you will need to set up your own message callbacks. These
3960functions are normally supplied at the time that the png_struct is created.
3961It is also possible to redirect errors and warnings to your own replacement
3962functions after png_create_*_struct() has been called by calling:
3963
3964 png_set_error_fn(png_structp png_ptr,
3965 png_voidp error_ptr, png_error_ptr error_fn,
3966 png_error_ptr warning_fn);
3967
3968 png_voidp error_ptr = png_get_error_ptr(png_ptr);
3969
3970If NULL is supplied for either error_fn or warning_fn, then the libpng
3971default function will be used, calling fprintf() and/or longjmp() if a
3972problem is encountered. The replacement error functions should have
3973parameters as follows:
3974
3975 void user_error_fn(png_structp png_ptr,
3976 png_const_charp error_msg);
9c0d9ce3 3977
970f6abe
VZ
3978 void user_warning_fn(png_structp png_ptr,
3979 png_const_charp warning_msg);
3980
3981The motivation behind using setjmp() and longjmp() is the C++ throw and
3982catch exception handling methods. This makes the code much easier to write,
3983as there is no need to check every return code of every function call.
3984However, there are some uncertainties about the status of local variables
b61cc19c
PC
3985after a longjmp, so the user may want to be careful about doing anything
3986after setjmp returns non-zero besides returning itself. Consult your
3987compiler documentation for more details. For an alternative approach, you
9c0d9ce3
DS
3988may wish to use the "cexcept" facility (see http://cexcept.sourceforge.net),
3989which is illustrated in pngvalid.c and in contrib/visupng.
970f6abe 3990
fff5f7d5
VZ
3991Beginning in libpng-1.4.0, the png_set_benign_errors() API became available.
3992You can use this to handle certain errors (normally handled as errors)
3993as warnings.
3994
3995 png_set_benign_errors (png_ptr, int allowed);
3996
3997 allowed: 0: (default) treat png_benign_error() an error.
3998 1: treat png_benign_error() as a warning.
3999
970f6abe
VZ
4000Custom chunks
4001
4002If you need to read or write custom chunks, you may need to get deeper
4003into the libpng code. The library now has mechanisms for storing
4004and writing chunks of unknown type; you can even declare callbacks
4005for custom chunks. However, this may not be good enough if the
4006library code itself needs to know about interactions between your
4007chunk and existing `intrinsic' chunks.
4008
4009If you need to write a new intrinsic chunk, first read the PNG
b61cc19c
PC
4010specification. Acquire a first level of understanding of how it works.
4011Pay particular attention to the sections that describe chunk names,
4012and look at how other chunks were designed, so you can do things
4013similarly. Second, check out the sections of libpng that read and
4014write chunks. Try to find a chunk that is similar to yours and use
4015it as a template. More details can be found in the comments inside
9c0d9ce3
DS
4016the code. It is best to handle private or unknown chunks in a generic method,
4017via callback functions, instead of by modifying libpng functions. This
4018is illustrated in pngtest.c, which uses a callback function to handle a
4019private "vpAg" chunk and the new "sTER" chunk, which are both unknown to
4020libpng.
970f6abe
VZ
4021
4022If you wish to write your own transformation for the data, look through
4023the part of the code that does the transformations, and check out some of
4024the simpler ones to get an idea of how they work. Try to find a similar
4025transformation to the one you want to add and copy off of it. More details
4026can be found in the comments inside the code itself.
4027
9c0d9ce3 4028Configuring for 16-bit platforms
970f6abe
VZ
4029
4030You will want to look into zconf.h to tell zlib (and thus libpng) that
4031it cannot allocate more then 64K at a time. Even if you can, the memory
4032won't be accessible. So limit zlib and libpng to 64K by defining MAXSEG_64K.
4033
4034Configuring for DOS
4035
4036For DOS users who only have access to the lower 640K, you will
4037have to limit zlib's memory usage via a png_set_compression_mem_level()
4038call. See zlib.h or zconf.h in the zlib library for more information.
4039
4040Configuring for Medium Model
4041
4042Libpng's support for medium model has been tested on most of the popular
4043compilers. Make sure MAXSEG_64K gets defined, USE_FAR_KEYWORD gets
4044defined, and FAR gets defined to far in pngconf.h, and you should be
4045all set. Everything in the library (except for zlib's structure) is
4046expecting far data. You must use the typedefs with the p or pp on
4047the end for pointers (or at least look at them and be careful). Make
9c0d9ce3
DS
4048note that the rows of data are defined as png_bytepp, which is
4049an "unsigned char far * far *".
970f6abe
VZ
4050
4051Configuring for gui/windowing platforms:
4052
4053You will need to write new error and warning functions that use the GUI
4054interface, as described previously, and set them to be the error and
4055warning functions at the time that png_create_*_struct() is called,
4056in order to have them available during the structure initialization.
4057They can be changed later via png_set_error_fn(). On some compilers,
4058you may also have to change the memory allocators (png_malloc, etc.).
4059
4060Configuring for compiler xxx:
4061
b61cc19c
PC
4062All includes for libpng are in pngconf.h. If you need to add, change
4063or delete an include, this is the place to do it.
4064The includes that are not needed outside libpng are placed in pngpriv.h,
4065which is only used by the routines inside libpng itself.
4066The files in libpng proper only include pngpriv.h and png.h, which
9c0d9ce3
DS
4067in turn includes pngconf.h and, as of libpng-1.5.0, pnglibconf.h.
4068As of libpng-1.5.0, pngpriv.h also includes three other private header
4069files, pngstruct.h, pnginfo.h, and pngdebug.h, which contain material
4070that previously appeared in the public headers.
970f6abe
VZ
4071
4072Configuring zlib:
4073
4074There are special functions to configure the compression. Perhaps the
4075most useful one changes the compression level, which currently uses
4076input compression values in the range 0 - 9. The library normally
4077uses the default compression level (Z_DEFAULT_COMPRESSION = 6). Tests
4078have shown that for a large majority of images, compression values in
4079the range 3-6 compress nearly as well as higher levels, and do so much
4080faster. For online applications it may be desirable to have maximum speed
4081(Z_BEST_SPEED = 1). With versions of zlib after v0.99, you can also
4082specify no compression (Z_NO_COMPRESSION = 0), but this would create
4083files larger than just storing the raw bitmap. You can specify the
4084compression level by calling:
4085
9c0d9ce3 4086 #include zlib.h
970f6abe
VZ
4087 png_set_compression_level(png_ptr, level);
4088
4089Another useful one is to reduce the memory level used by the library.
4090The memory level defaults to 8, but it can be lowered if you are
4091short on memory (running DOS, for example, where you only have 640K).
4092Note that the memory level does have an effect on compression; among
4093other things, lower levels will result in sections of incompressible
4094data being emitted in smaller stored blocks, with a correspondingly
4095larger relative overhead of up to 15% in the worst case.
4096
9c0d9ce3 4097 #include zlib.h
970f6abe
VZ
4098 png_set_compression_mem_level(png_ptr, level);
4099
4100The other functions are for configuring zlib. They are not recommended
4101for normal use and may result in writing an invalid PNG file. See
4102zlib.h for more information on what these mean.
4103
9c0d9ce3 4104 #include zlib.h
970f6abe
VZ
4105 png_set_compression_strategy(png_ptr,
4106 strategy);
9c0d9ce3 4107
970f6abe
VZ
4108 png_set_compression_window_bits(png_ptr,
4109 window_bits);
9c0d9ce3 4110
970f6abe 4111 png_set_compression_method(png_ptr, method);
9c0d9ce3 4112
970f6abe
VZ
4113 png_set_compression_buffer_size(png_ptr, size);
4114
9c0d9ce3
DS
4115As of libpng version 1.5.4, additional APIs became
4116available to set these separately for non-IDAT
4117compressed chunks such as zTXt, iTXt, and iCCP:
4118
4119 #include zlib.h
fff5f7d5 4120 #if PNG_LIBPNG_VER >= 10504
9c0d9ce3
DS
4121 png_set_text_compression_level(png_ptr, level);
4122
4123 png_set_text_compression_mem_level(png_ptr, level);
4124
4125 png_set_text_compression_strategy(png_ptr,
4126 strategy);
4127
4128 png_set_text_compression_window_bits(png_ptr,
4129 window_bits);
4130
4131 png_set_text_compression_method(png_ptr, method);
4132 #endif
4133
970f6abe
VZ
4134Controlling row filtering
4135
4136If you want to control whether libpng uses filtering or not, which
4137filters are used, and how it goes about picking row filters, you
4138can call one of these functions. The selection and configuration
4139of row filters can have a significant impact on the size and
4140encoding speed and a somewhat lesser impact on the decoding speed
4141of an image. Filtering is enabled by default for RGB and grayscale
4142images (with and without alpha), but not for paletted images nor
4143for any images with bit depths less than 8 bits/pixel.
4144
4145The 'method' parameter sets the main filtering method, which is
4146currently only '0' in the PNG 1.2 specification. The 'filters'
4147parameter sets which filter(s), if any, should be used for each
4148scanline. Possible values are PNG_ALL_FILTERS and PNG_NO_FILTERS
4149to turn filtering on and off, respectively.
4150
4151Individual filter types are PNG_FILTER_NONE, PNG_FILTER_SUB,
4152PNG_FILTER_UP, PNG_FILTER_AVG, PNG_FILTER_PAETH, which can be bitwise
4153ORed together with '|' to specify one or more filters to use.
4154These filters are described in more detail in the PNG specification.
4155If you intend to change the filter type during the course of writing
4156the image, you should start with flags set for all of the filters
4157you intend to use so that libpng can initialize its internal
4158structures appropriately for all of the filter types. (Note that this
4159means the first row must always be adaptively filtered, because libpng
4160currently does not allocate the filter buffers until png_write_row()
4161is called for the first time.)
4162
4163 filters = PNG_FILTER_NONE | PNG_FILTER_SUB
b61cc19c 4164 PNG_FILTER_UP | PNG_FILTER_AVG |
970f6abe
VZ
4165 PNG_FILTER_PAETH | PNG_ALL_FILTERS;
4166
4167 png_set_filter(png_ptr, PNG_FILTER_TYPE_BASE,
4168 filters);
4169 The second parameter can also be
4170 PNG_INTRAPIXEL_DIFFERENCING if you are
4171 writing a PNG to be embedded in a MNG
4172 datastream. This parameter must be the
4173 same as the value of filter_method used
4174 in png_set_IHDR().
4175
4176It is also possible to influence how libpng chooses from among the
4177available filters. This is done in one or both of two ways - by
4178telling it how important it is to keep the same filter for successive
4179rows, and by telling it the relative computational costs of the filters.
4180
4181 double weights[3] = {1.5, 1.3, 1.1},
4182 costs[PNG_FILTER_VALUE_LAST] =
4183 {1.0, 1.3, 1.3, 1.5, 1.7};
4184
4185 png_set_filter_heuristics(png_ptr,
4186 PNG_FILTER_HEURISTIC_WEIGHTED, 3,
4187 weights, costs);
4188
4189The weights are multiplying factors that indicate to libpng that the
4190row filter should be the same for successive rows unless another row filter
4191is that many times better than the previous filter. In the above example,
4192if the previous 3 filters were SUB, SUB, NONE, the SUB filter could have a
4193"sum of absolute differences" 1.5 x 1.3 times higher than other filters
4194and still be chosen, while the NONE filter could have a sum 1.1 times
4195higher than other filters and still be chosen. Unspecified weights are
4196taken to be 1.0, and the specified weights should probably be declining
4197like those above in order to emphasize recent filters over older filters.
4198
4199The filter costs specify for each filter type a relative decoding cost
4200to be considered when selecting row filters. This means that filters
4201with higher costs are less likely to be chosen over filters with lower
4202costs, unless their "sum of absolute differences" is that much smaller.
4203The costs do not necessarily reflect the exact computational speeds of
4204the various filters, since this would unduly influence the final image
4205size.
4206
4207Note that the numbers above were invented purely for this example and
4208are given only to help explain the function usage. Little testing has
4209been done to find optimum values for either the costs or the weights.
4210
4211Removing unwanted object code
4212
4213There are a bunch of #define's in pngconf.h that control what parts of
4214libpng are compiled. All the defines end in _SUPPORTED. If you are
4215never going to use a capability, you can change the #define to #undef
4216before recompiling libpng and save yourself code and data space, or
4217you can turn off individual capabilities with defines that begin with
4218PNG_NO_.
4219
9c0d9ce3
DS
4220In libpng-1.5.0 and later, the #define's are in pnglibconf.h instead.
4221
970f6abe
VZ
4222You can also turn all of the transforms and ancillary chunk capabilities
4223off en masse with compiler directives that define
4224PNG_NO_READ[or WRITE]_TRANSFORMS, or PNG_NO_READ[or WRITE]_ANCILLARY_CHUNKS,
4225or all four,
4226along with directives to turn on any of the capabilities that you do
b61cc19c
PC
4227want. The PNG_NO_READ[or WRITE]_TRANSFORMS directives disable the extra
4228transformations but still leave the library fully capable of reading
4229and writing PNG files with all known public chunks. Use of the
4230PNG_NO_READ[or WRITE]_ANCILLARY_CHUNKS directive produces a library
4231that is incapable of reading or writing ancillary chunks. If you are
4232not using the progressive reading capability, you can turn that off
4233with PNG_NO_PROGRESSIVE_READ (don't confuse this with the INTERLACING
4234capability, which you'll still have).
970f6abe
VZ
4235
4236All the reading and writing specific code are in separate files, so the
4237linker should only grab the files it needs. However, if you want to
4238make sure, or if you are building a stand alone library, all the
9c0d9ce3
DS
4239reading files start with "pngr" and all the writing files start with "pngw".
4240The files that don't match either (like png.c, pngtrans.c, etc.)
970f6abe
VZ
4241are used for both reading and writing, and always need to be included.
4242The progressive reader is in pngpread.c
4243
4244If you are creating or distributing a dynamically linked library (a .so
4245or DLL file), you should not remove or disable any parts of the library,
4246as this will cause applications linked with different versions of the
4247library to fail if they call functions not available in your library.
4248The size of the library itself should not be an issue, because only
4249those sections that are actually used will be loaded into memory.
4250
4251Requesting debug printout
4252
4253The macro definition PNG_DEBUG can be used to request debugging
4254printout. Set it to an integer value in the range 0 to 3. Higher
4255numbers result in increasing amounts of debugging information. The
4256information is printed to the "stderr" file, unless another file
4257name is specified in the PNG_DEBUG_FILE macro definition.
4258
4259When PNG_DEBUG > 0, the following functions (macros) become available:
4260
4261 png_debug(level, message)
4262 png_debug1(level, message, p1)
4263 png_debug2(level, message, p1, p2)
4264
4265in which "level" is compared to PNG_DEBUG to decide whether to print
4266the message, "message" is the formatted string to be printed,
4267and p1 and p2 are parameters that are to be embedded in the string
4268according to printf-style formatting directives. For example,
4269
4270 png_debug1(2, "foo=%d\n", foo);
4271
4272is expanded to
4273
9c0d9ce3
DS
4274 if (PNG_DEBUG > 2)
4275 fprintf(PNG_DEBUG_FILE, "foo=%d\n", foo);
970f6abe
VZ
4276
4277When PNG_DEBUG is defined but is zero, the macros aren't defined, but you
4278can still use PNG_DEBUG to control your own debugging:
4279
4280 #ifdef PNG_DEBUG
4281 fprintf(stderr, ...
4282 #endif
4283
4284When PNG_DEBUG = 1, the macros are defined, but only png_debug statements
4285having level = 0 will be printed. There aren't any such statements in
4286this version of libpng, but if you insert some they will be printed.
4287
fff5f7d5
VZ
4288Prepending a prefix to exported symbols
4289
4290Starting with libpng-1.6.0, you can configure libpng (when using the
4291"configure" script) to prefix all exported symbols by means of the
4292configuration option "--with-libpng-prefix=FOO_", where FOO_ can be any
4293string beginning with a letter and containing only uppercase
4294and lowercase letters, digits, and the underscore (i.e., a C language
4295identifier). This creates a set of macros in pnglibconf.h, so this is
4296transparent to applications; their function calls get transformed by
4297the macros to use the modified names.
4298
4299VII. MNG support
970f6abe
VZ
4300
4301The MNG specification (available at http://www.libpng.org/pub/mng) allows
4302certain extensions to PNG for PNG images that are embedded in MNG datastreams.
4303Libpng can support some of these extensions. To enable them, use the
4304png_permit_mng_features() function:
4305
4306 feature_set = png_permit_mng_features(png_ptr, mask)
9c0d9ce3 4307
970f6abe
VZ
4308 mask is a png_uint_32 containing the bitwise OR of the
4309 features you want to enable. These include
4310 PNG_FLAG_MNG_EMPTY_PLTE
4311 PNG_FLAG_MNG_FILTER_64
4312 PNG_ALL_MNG_FEATURES
9c0d9ce3 4313
970f6abe
VZ
4314 feature_set is a png_uint_32 that is the bitwise AND of
4315 your mask with the set of MNG features that is
4316 supported by the version of libpng that you are using.
4317
4318It is an error to use this function when reading or writing a standalone
4319PNG file with the PNG 8-byte signature. The PNG datastream must be wrapped
4320in a MNG datastream. As a minimum, it must have the MNG 8-byte signature
4321and the MHDR and MEND chunks. Libpng does not provide support for these
4322or any other MNG chunks; your application must provide its own support for
4323them. You may wish to consider using libmng (available at
4324http://www.libmng.com) instead.
4325
fff5f7d5 4326VIII. Changes to Libpng from version 0.88
970f6abe
VZ
4327
4328It should be noted that versions of libpng later than 0.96 are not
4329distributed by the original libpng author, Guy Schalnat, nor by
4330Andreas Dilger, who had taken over from Guy during 1996 and 1997, and
4331distributed versions 0.89 through 0.96, but rather by another member
4332of the original PNG Group, Glenn Randers-Pehrson. Guy and Andreas are
4333still alive and well, but they have moved on to other things.
4334
4335The old libpng functions png_read_init(), png_write_init(),
4336png_info_init(), png_read_destroy(), and png_write_destroy() have been
4337moved to PNG_INTERNAL in version 0.95 to discourage their use. These
9c0d9ce3 4338functions will be removed from libpng version 1.4.0.
970f6abe
VZ
4339
4340The preferred method of creating and initializing the libpng structures is
4341via the png_create_read_struct(), png_create_write_struct(), and
4342png_create_info_struct() because they isolate the size of the structures
4343from the application, allow version error checking, and also allow the
4344use of custom error handling routines during the initialization, which
4345the old functions do not. The functions png_read_destroy() and
4346png_write_destroy() do not actually free the memory that libpng
4347allocated for these structs, but just reset the data structures, so they
4348can be used instead of png_destroy_read_struct() and
4349png_destroy_write_struct() if you feel there is too much system overhead
4350allocating and freeing the png_struct for each image read.
4351
4352Setting the error callbacks via png_set_message_fn() before
4353png_read_init() as was suggested in libpng-0.88 is no longer supported
4354because this caused applications that do not use custom error functions
4355to fail if the png_ptr was not initialized to zero. It is still possible
4356to set the error callbacks AFTER png_read_init(), or to change them with
4357png_set_error_fn(), which is essentially the same function, but with a new
4358name to force compilation errors with applications that try to use the old
4359method.
4360
4361Starting with version 1.0.7, you can find out which version of the library
4362you are using at run-time:
4363
4364 png_uint_32 libpng_vn = png_access_version_number();
4365
4366The number libpng_vn is constructed from the major version, minor
4367version with leading zero, and release number with leading zero,
4368(e.g., libpng_vn for version 1.0.7 is 10007).
4369
9c0d9ce3
DS
4370Note that this function does not take a png_ptr, so you can call it
4371before you've created one.
4372
970f6abe
VZ
4373You can also check which version of png.h you used when compiling your
4374application:
4375
4376 png_uint_32 application_vn = PNG_LIBPNG_VER;
4377
fff5f7d5 4378IX. Changes to Libpng from version 1.0.x to 1.2.x
b61cc19c
PC
4379
4380Support for user memory management was enabled by default. To
4381accomplish this, the functions png_create_read_struct_2(),
4382png_create_write_struct_2(), png_set_mem_fn(), png_get_mem_ptr(),
4383png_malloc_default(), and png_free_default() were added.
4384
4385Support for the iTXt chunk has been enabled by default as of
4386version 1.2.41.
4387
4388Support for certain MNG features was enabled.
4389
4390Support for numbered error messages was added. However, we never got
4391around to actually numbering the error messages. The function
4392png_set_strip_error_numbers() was added (Note: the prototype for this
4393function was inadvertently removed from png.h in PNG_NO_ASSEMBLER_CODE
4394builds of libpng-1.2.15. It was restored in libpng-1.2.36).
4395
4396The png_malloc_warn() function was added at libpng-1.2.3. This issues
4397a png_warning and returns NULL instead of aborting when it fails to
4398acquire the requested memory allocation.
4399
4400Support for setting user limits on image width and height was enabled
4401by default. The functions png_set_user_limits(), png_get_user_width_max(),
4402and png_get_user_height_max() were added at libpng-1.2.6.
4403
4404The png_set_add_alpha() function was added at libpng-1.2.7.
4405
4406The function png_set_expand_gray_1_2_4_to_8() was added at libpng-1.2.9.
4407Unlike png_set_gray_1_2_4_to_8(), the new function does not expand the
4408tRNS chunk to alpha. The png_set_gray_1_2_4_to_8() function is
4409deprecated.
4410
4411A number of macro definitions in support of runtime selection of
4412assembler code features (especially Intel MMX code support) were
4413added at libpng-1.2.0:
4414
4415 PNG_ASM_FLAG_MMX_SUPPORT_COMPILED
4416 PNG_ASM_FLAG_MMX_SUPPORT_IN_CPU
4417 PNG_ASM_FLAG_MMX_READ_COMBINE_ROW
4418 PNG_ASM_FLAG_MMX_READ_INTERLACE
4419 PNG_ASM_FLAG_MMX_READ_FILTER_SUB
4420 PNG_ASM_FLAG_MMX_READ_FILTER_UP
4421 PNG_ASM_FLAG_MMX_READ_FILTER_AVG
4422 PNG_ASM_FLAG_MMX_READ_FILTER_PAETH
4423 PNG_ASM_FLAGS_INITIALIZED
4424 PNG_MMX_READ_FLAGS
4425 PNG_MMX_FLAGS
4426 PNG_MMX_WRITE_FLAGS
4427 PNG_MMX_FLAGS
4428
4429We added the following functions in support of runtime
4430selection of assembler code features:
4431
4432 png_get_mmx_flagmask()
4433 png_set_mmx_thresholds()
4434 png_get_asm_flags()
4435 png_get_mmx_bitdepth_threshold()
4436 png_get_mmx_rowbytes_threshold()
4437 png_set_asm_flags()
4438
4439We replaced all of these functions with simple stubs in libpng-1.2.20,
4440when the Intel assembler code was removed due to a licensing issue.
4441
4442These macros are deprecated:
4443
4444 PNG_READ_TRANSFORMS_NOT_SUPPORTED
4445 PNG_PROGRESSIVE_READ_NOT_SUPPORTED
4446 PNG_NO_SEQUENTIAL_READ_SUPPORTED
4447 PNG_WRITE_TRANSFORMS_NOT_SUPPORTED
4448 PNG_READ_ANCILLARY_CHUNKS_NOT_SUPPORTED
4449 PNG_WRITE_ANCILLARY_CHUNKS_NOT_SUPPORTED
4450
4451They have been replaced, respectively, by:
4452
4453 PNG_NO_READ_TRANSFORMS
4454 PNG_NO_PROGRESSIVE_READ
4455 PNG_NO_SEQUENTIAL_READ
4456 PNG_NO_WRITE_TRANSFORMS
4457 PNG_NO_READ_ANCILLARY_CHUNKS
4458 PNG_NO_WRITE_ANCILLARY_CHUNKS
4459
4460PNG_MAX_UINT was replaced with PNG_UINT_31_MAX. It has been
4461deprecated since libpng-1.0.16 and libpng-1.2.6.
4462
4463The function
4464 png_check_sig(sig, num)
4465was replaced with
4466 !png_sig_cmp(sig, 0, num)
4467It has been deprecated since libpng-0.90.
4468
4469The function
4470 png_set_gray_1_2_4_to_8()
4471which also expands tRNS to alpha was replaced with
4472 png_set_expand_gray_1_2_4_to_8()
4473which does not. It has been deprecated since libpng-1.0.18 and 1.2.9.
4474
fff5f7d5 4475X. Changes to Libpng from version 1.0.x/1.2.x to 1.4.x
b61cc19c
PC
4476
4477Private libpng prototypes and macro definitions were moved from
4478png.h and pngconf.h into a new pngpriv.h header file.
4479
4480Functions png_set_benign_errors(), png_benign_error(), and
4481png_chunk_benign_error() were added.
4482
4483Support for setting the maximum amount of memory that the application
4484will allocate for reading chunks was added, as a security measure.
4485The functions png_set_chunk_cache_max() and png_get_chunk_cache_max()
4486were added to the library.
4487
4488We implemented support for I/O states by adding png_ptr member io_state
4489and functions png_get_io_chunk_name() and png_get_io_state() in pngget.c
4490
4491We added PNG_TRANSFORM_GRAY_TO_RGB to the available high-level
4492input transforms.
4493
4494Checking for and reporting of errors in the IHDR chunk is more thorough.
4495
4496Support for global arrays was removed, to improve thread safety.
4497
4498Some obsolete/deprecated macros and functions have been removed.
4499
4500Typecasted NULL definitions such as
4501 #define png_voidp_NULL (png_voidp)NULL
4502were eliminated. If you used these in your application, just use
4503NULL instead.
4504
4505The png_struct and info_struct members "trans" and "trans_values" were
4506changed to "trans_alpha" and "trans_color", respectively.
4507
4508The obsolete, unused pnggccrd.c and pngvcrd.c files and related makefiles
4509were removed.
4510
4511The PNG_1_0_X and PNG_1_2_X macros were eliminated.
4512
4513The PNG_LEGACY_SUPPORTED macro was eliminated.
4514
4515Many WIN32_WCE #ifdefs were removed.
4516
4517The functions png_read_init(info_ptr), png_write_init(info_ptr),
4518png_info_init(info_ptr), png_read_destroy(), and png_write_destroy()
4519have been removed. They have been deprecated since libpng-0.95.
4520
4521The png_permit_empty_plte() was removed. It has been deprecated
4522since libpng-1.0.9. Use png_permit_mng_features() instead.
4523
4524We removed the obsolete stub functions png_get_mmx_flagmask(),
4525png_set_mmx_thresholds(), png_get_asm_flags(),
4526png_get_mmx_bitdepth_threshold(), png_get_mmx_rowbytes_threshold(),
4527png_set_asm_flags(), and png_mmx_supported()
4528
4529We removed the obsolete png_check_sig(), png_memcpy_check(), and
9c0d9ce3
DS
4530png_memset_check() functions. Instead use !png_sig_cmp(), memcpy(),
4531and memset(), respectively.
b61cc19c
PC
4532
4533The function png_set_gray_1_2_4_to_8() was removed. It has been
4534deprecated since libpng-1.0.18 and 1.2.9, when it was replaced with
4535png_set_expand_gray_1_2_4_to_8() because the former function also
9c0d9ce3
DS
4536expanded any tRNS chunk to an alpha channel.
4537
4538Macros for png_get_uint_16, png_get_uint_32, and png_get_int_32
4539were added and are used by default instead of the corresponding
4540functions. Unfortunately,
4541from libpng-1.4.0 until 1.4.4, the png_get_uint_16 macro (but not the
4542function) incorrectly returned a value of type png_uint_32.
b61cc19c
PC
4543
4544We changed the prototype for png_malloc() from
4545 png_malloc(png_structp png_ptr, png_uint_32 size)
4546to
4547 png_malloc(png_structp png_ptr, png_alloc_size_t size)
4548
4549This also applies to the prototype for the user replacement malloc_fn().
4550
4551The png_calloc() function was added and is used in place of
9c0d9ce3 4552of "png_malloc(); memset();" except in the case in png_read_png()
b61cc19c
PC
4553where the array consists of pointers; in this case a "for" loop is used
4554after the png_malloc() to set the pointers to NULL, to give robust.
4555behavior in case the application runs out of memory part-way through
4556the process.
4557
4558We changed the prototypes of png_get_compression_buffer_size() and
4559png_set_compression_buffer_size() to work with png_size_t instead of
4560png_uint_32.
4561
4562Support for numbered error messages was removed by default, since we
4563never got around to actually numbering the error messages. The function
4564png_set_strip_error_numbers() was removed from the library by default.
4565
4566The png_zalloc() and png_zfree() functions are no longer exported.
4567The png_zalloc() function no longer zeroes out the memory that it
fff5f7d5
VZ
4568allocates. Applications that called png_zalloc(png_ptr, number, size)
4569can call png_calloc(png_ptr, number*size) instead, and can call
4570png_free() instead of png_zfree().
b61cc19c
PC
4571
4572Support for dithering was disabled by default in libpng-1.4.0, because
9c0d9ce3
DS
4573it has not been well tested and doesn't actually "dither".
4574The code was not
b61cc19c
PC
4575removed, however, and could be enabled by building libpng with
4576PNG_READ_DITHER_SUPPORTED defined. In libpng-1.4.2, this support
4577was reenabled, but the function was renamed png_set_quantize() to
4578reflect more accurately what it actually does. At the same time,
4579the PNG_DITHER_[RED,GREEN_BLUE]_BITS macros were also renamed to
9c0d9ce3
DS
4580PNG_QUANTIZE_[RED,GREEN,BLUE]_BITS, and PNG_READ_DITHER_SUPPORTED
4581was renamed to PNG_READ_QUANTIZE_SUPPORTED.
b61cc19c
PC
4582
4583We removed the trailing '.' from the warning and error messages.
4584
fff5f7d5 4585XI. Changes to Libpng from version 1.4.x to 1.5.x
9c0d9ce3
DS
4586
4587From libpng-1.4.0 until 1.4.4, the png_get_uint_16 macro (but not the
4588function) incorrectly returned a value of type png_uint_32.
4589
fff5f7d5
VZ
4590Checking for invalid palette index on read or write was added at libpng
45911.5.10. When an invalid index is found, libpng issues a benign error.
4592This is enabled by default because this condition is an error according
4593to the PNG specification, Clause 11.3.2, but the error can be ignored in
4594each png_ptr with
4595
4596 png_set_check_for_invalid_index(png_ptr, allowed);
4597
4598 allowed - one of
4599 0: disable benign error (accept the
4600 invalid data without warning).
4601 1: enable benign error (treat the
4602 invalid data as an error or a
4603 warning).
4604
4605If the error is ignored, or if png_benign_error() treats it as a warning,
4606any invalid pixels are decoded as opaque black by the decoder and written
4607as-is by the encoder.
4608
4609Retrieving the maximum palette index found was added at libpng-1.5.15.
4610This statement must appear after png_read_png() or png_read_image() while
4611reading, and after png_write_png() or png_write_image() while writing.
4612
4613 int max_palette = png_get_palette_max(png_ptr, info_ptr);
4614
4615This will return the maximum palette index found in the image, or "-1" if
4616the palette was not checked, or "0" if no palette was found. Note that this
4617does not account for any palette index used by ancillary chunks such as the
4618bKGD chunk; you must check those separately to determine the maximum
4619palette index actually used.
4620
9c0d9ce3
DS
4621A. Changes that affect users of libpng
4622
4623There are no substantial API changes between the non-deprecated parts of
fff5f7d5
VZ
4624the 1.4.5 API and the 1.5.0 API; however, the ability to directly access
4625members of the main libpng control structures, png_struct and png_info,
4626deprecated in earlier versions of libpng, has been completely removed from
9c0d9ce3
DS
4627libpng 1.5.
4628
fff5f7d5
VZ
4629We no longer include zlib.h in png.h. The include statement has been moved
4630to pngstruct.h, where it is not accessible by applications. Applications that
4631need access to information in zlib.h will need to add the '#include "zlib.h"'
4632directive. It does not matter whether this is placed prior to or after
9c0d9ce3
DS
4633the '"#include png.h"' directive.
4634
fff5f7d5
VZ
4635The png_sprintf(), png_strcpy(), and png_strncpy() macros are no longer used
4636and were removed.
4637
4638We moved the png_strlen(), png_memcpy(), png_memset(), and png_memcmp()
4639macros into a private header file (pngpriv.h) that is not accessible to
4640applications.
9c0d9ce3
DS
4641
4642In png_get_iCCP, the type of "profile" was changed from png_charpp
4643to png_bytepp, and in png_set_iCCP, from png_charp to png_const_bytep.
4644
4645There are changes of form in png.h, including new and changed macros to
4646declare parts of the API. Some API functions with arguments that are
4647pointers to data not modified within the function have been corrected to
4648declare these arguments with PNG_CONST.
4649
4650Much of the internal use of C macros to control the library build has also
4651changed and some of this is visible in the exported header files, in
4652particular the use of macros to control data and API elements visible
4653during application compilation may require significant revision to
4654application code. (It is extremely rare for an application to do this.)
4655
4656Any program that compiled against libpng 1.4 and did not use deprecated
4657features or access internal library structures should compile and work
4658against libpng 1.5, except for the change in the prototype for
4659png_get_iCCP() and png_set_iCCP() API functions mentioned above.
4660
4661libpng 1.5.0 adds PNG_ PASS macros to help in the reading and writing of
4662interlaced images. The macros return the number of rows and columns in
4663each pass and information that can be used to de-interlace and (if
4664absolutely necessary) interlace an image.
4665
4666libpng 1.5.0 adds an API png_longjmp(png_ptr, value). This API calls
4667the application-provided png_longjmp_ptr on the internal, but application
4668initialized, longjmp buffer. It is provided as a convenience to avoid
4669the need to use the png_jmpbuf macro, which had the unnecessary side
4670effect of resetting the internal png_longjmp_ptr value.
4671
4672libpng 1.5.0 includes a complete fixed point API. By default this is
4673present along with the corresponding floating point API. In general the
4674fixed point API is faster and smaller than the floating point one because
4675the PNG file format used fixed point, not floating point. This applies
4676even if the library uses floating point in internal calculations. A new
4677macro, PNG_FLOATING_ARITHMETIC_SUPPORTED, reveals whether the library
4678uses floating point arithmetic (the default) or fixed point arithmetic
4679internally for performance critical calculations such as gamma correction.
4680In some cases, the gamma calculations may produce slightly different
4681results. This has changed the results in png_rgb_to_gray and in alpha
4682composition (png_set_background for example). This applies even if the
4683original image was already linear (gamma == 1.0) and, therefore, it is
4684not necessary to linearize the image. This is because libpng has *not*
4685been changed to optimize that case correctly, yet.
4686
4687Fixed point support for the sCAL chunk comes with an important caveat;
4688the sCAL specification uses a decimal encoding of floating point values
4689and the accuracy of PNG fixed point values is insufficient for
4690representation of these values. Consequently a "string" API
4691(png_get_sCAL_s and png_set_sCAL_s) is the only reliable way of reading
4692arbitrary sCAL chunks in the absence of either the floating point API or
4693internal floating point calculations.
4694
4695Applications no longer need to include the optional distribution header
4696file pngusr.h or define the corresponding macros during application
4697build in order to see the correct variant of the libpng API. From 1.5.0
4698application code can check for the corresponding _SUPPORTED macro:
4699
4700#ifdef PNG_INCH_CONVERSIONS_SUPPORTED
4701 /* code that uses the inch conversion APIs. */
4702#endif
4703
4704This macro will only be defined if the inch conversion functions have been
4705compiled into libpng. The full set of macros, and whether or not support
4706has been compiled in, are available in the header file pnglibconf.h.
4707This header file is specific to the libpng build. Notice that prior to
47081.5.0 the _SUPPORTED macros would always have the default definition unless
4709reset by pngusr.h or by explicit settings on the compiler command line.
4710These settings may produce compiler warnings or errors in 1.5.0 because
4711of macro redefinition.
4712
4713From libpng-1.4.0 until 1.4.4, the png_get_uint_16 macro (but not the
4714function) incorrectly returned a value of type png_uint_32. libpng 1.5.0
4715is consistent with the implementation in 1.4.5 and 1.2.x (where the macro
4716did not exist.)
4717
4718Applications can now choose whether to use these macros or to call the
4719corresponding function by defining PNG_USE_READ_MACROS or
4720PNG_NO_USE_READ_MACROS before including png.h. Notice that this is
4721only supported from 1.5.0 -defining PNG_NO_USE_READ_MACROS prior to 1.5.0
4722will lead to a link failure.
4723
4724Prior to libpng-1.5.4, the zlib compressor used the same set of parameters
4725when compressing the IDAT data and textual data such as zTXt and iCCP.
4726In libpng-1.5.4 we reinitialized the zlib stream for each type of data.
4727We added five png_set_text_*() functions for setting the parameters to
4728use with textual data.
4729
4730Prior to libpng-1.5.4, the PNG_READ_16_TO_8_ACCURATE_SCALE_SUPPORTED
4731option was off by default, and slightly inaccurate scaling occurred.
4732This option can no longer be turned off, and the choice of accurate
4733or inaccurate 16-to-8 scaling is by using the new png_set_scale_16_to_8()
4734API for accurate scaling or the old png_set_strip_16_to_8() API for simple
4735chopping.
4736
4737Prior to libpng-1.5.4, the png_set_user_limits() function could only be
4738used to reduce the width and height limits from the value of
4739PNG_USER_WIDTH_MAX and PNG_USER_HEIGHT_MAX, although this document said
4740that it could be used to override them. Now this function will reduce or
4741increase the limits.
4742
fff5f7d5
VZ
4743Starting in libpng-1.5.10, the user limits can be set en masse with the
4744configuration option PNG_SAFE_LIMITS_SUPPORTED. If this option is enabled,
4745a set of "safe" limits is applied in pngpriv.h. These can be overridden by
4746application calls to png_set_user_limits(), png_set_user_chunk_cache_max(),
4747and/or png_set_user_malloc_max() that increase or decrease the limits. Also,
4748in libpng-1.5.10 the default width and height limits were increased
4749from 1,000,000 to 0x7ffffff (i.e., made unlimited). Therefore, the
4750limits are now
4751 default safe
4752 png_user_width_max 0x7fffffff 1,000,000
4753 png_user_height_max 0x7fffffff 1,000,000
4754 png_user_chunk_cache_max 0 (unlimited) 128
4755 png_user_chunk_malloc_max 0 (unlimited) 8,000,000
4756
9c0d9ce3
DS
4757B. Changes to the build and configuration of libpng
4758
4759Details of internal changes to the library code can be found in the CHANGES
4760file and in the GIT repository logs. These will be of no concern to the vast
fff5f7d5 4761majority of library users or builders; however, the few who configure libpng
9c0d9ce3
DS
4762to a non-default feature set may need to change how this is done.
4763
4764There should be no need for library builders to alter build scripts if
4765these use the distributed build support - configure or the makefiles -
fff5f7d5 4766however, users of the makefiles may care to update their build scripts
9c0d9ce3
DS
4767to build pnglibconf.h where the corresponding makefile does not do so.
4768
4769Building libpng with a non-default configuration has changed completely.
4770The old method using pngusr.h should still work correctly even though the
4771way pngusr.h is used in the build has been changed; however, library
4772builders will probably want to examine the changes to take advantage of
4773new capabilities and to simplify their build system.
4774
4775B.1 Specific changes to library configuration capabilities
4776
4777The library now supports a complete fixed point implementation and can
4778thus be used on systems that have no floating point support or very
4779limited or slow support. Previously gamma correction, an essential part
4780of complete PNG support, required reasonably fast floating point.
4781
4782As part of this the choice of internal implementation has been made
4783independent of the choice of fixed versus floating point APIs and all the
4784missing fixed point APIs have been implemented.
4785
4786The exact mechanism used to control attributes of API functions has
4787changed. A single set of operating system independent macro definitions
4788is used and operating system specific directives are defined in
4789pnglibconf.h
4790
4791As part of this the mechanism used to choose procedure call standards on
4792those systems that allow a choice has been changed. At present this only
4793affects certain Microsoft (DOS, Windows) and IBM (OS/2) operating systems
4794running on Intel processors. As before, PNGAPI is defined where required
4795to control the exported API functions; however, two new macros, PNGCBAPI
4796and PNGCAPI, are used instead for callback functions (PNGCBAPI) and
4797(PNGCAPI) for functions that must match a C library prototype (currently
4798only png_longjmp_ptr, which must match the C longjmp function.) The new
4799approach is documented in pngconf.h
4800
4801Despite these changes, libpng 1.5.0 only supports the native C function
4802calling standard on those platforms tested so far (__cdecl on Microsoft
4803Windows). This is because the support requirements for alternative
4804calling conventions seem to no longer exist. Developers who find it
4805necessary to set PNG_API_RULE to 1 should advise the mailing list
4806(png-mng-implement) of this and library builders who use Openwatcom and
4807therefore set PNG_API_RULE to 2 should also contact the mailing list.
4808
4809A new test program, pngvalid, is provided in addition to pngtest.
4810pngvalid validates the arithmetic accuracy of the gamma correction
4811calculations and includes a number of validations of the file format.
4812A subset of the full range of tests is run when "make check" is done
4813(in the 'configure' build.) pngvalid also allows total allocated memory
4814usage to be evaluated and performs additional memory overwrite validation.
4815
4816Many changes to individual feature macros have been made. The following
4817are the changes most likely to be noticed by library builders who
4818configure libpng:
4819
48201) All feature macros now have consistent naming:
4821
4822#define PNG_NO_feature turns the feature off
4823#define PNG_feature_SUPPORTED turns the feature on
4824
4825pnglibconf.h contains one line for each feature macro which is either:
4826
4827#define PNG_feature_SUPPORTED
4828
4829if the feature is supported or:
4830
4831/*#undef PNG_feature_SUPPORTED*/
4832
4833if it is not. Library code consistently checks for the 'SUPPORTED' macro.
4834It does not, and libpng applications should not, check for the 'NO' macro
4835which will not normally be defined even if the feature is not supported.
4836The 'NO' macros are only used internally for setting or not setting the
4837corresponding 'SUPPORTED' macros.
4838
4839Compatibility with the old names is provided as follows:
4840
4841PNG_INCH_CONVERSIONS turns on PNG_INCH_CONVERSIONS_SUPPORTED
4842
4843And the following definitions disable the corresponding feature:
4844
4845PNG_SETJMP_NOT_SUPPORTED disables SETJMP
4846PNG_READ_TRANSFORMS_NOT_SUPPORTED disables READ_TRANSFORMS
4847PNG_NO_READ_COMPOSITED_NODIV disables READ_COMPOSITE_NODIV
4848PNG_WRITE_TRANSFORMS_NOT_SUPPORTED disables WRITE_TRANSFORMS
4849PNG_READ_ANCILLARY_CHUNKS_NOT_SUPPORTED disables READ_ANCILLARY_CHUNKS
4850PNG_WRITE_ANCILLARY_CHUNKS_NOT_SUPPORTED disables WRITE_ANCILLARY_CHUNKS
4851
4852Library builders should remove use of the above, inconsistent, names.
4853
48542) Warning and error message formatting was previously conditional on
4855the STDIO feature. The library has been changed to use the
4856CONSOLE_IO feature instead. This means that if CONSOLE_IO is disabled
4857the library no longer uses the printf(3) functions, even though the
4858default read/write implementations use (FILE) style stdio.h functions.
4859
48603) Three feature macros now control the fixed/floating point decisions:
4861
4862PNG_FLOATING_POINT_SUPPORTED enables the floating point APIs
4863
4864PNG_FIXED_POINT_SUPPORTED enables the fixed point APIs; however, in
4865practice these are normally required internally anyway (because the PNG
4866file format is fixed point), therefore in most cases PNG_NO_FIXED_POINT
4867merely stops the function from being exported.
4868
4869PNG_FLOATING_ARITHMETIC_SUPPORTED chooses between the internal floating
4870point implementation or the fixed point one. Typically the fixed point
4871implementation is larger and slower than the floating point implementation
fff5f7d5 4872on a system that supports floating point; however, it may be faster on a
9c0d9ce3
DS
4873system which lacks floating point hardware and therefore uses a software
4874emulation.
4875
48764) Added PNG_{READ,WRITE}_INT_FUNCTIONS_SUPPORTED. This allows the
4877functions to read and write ints to be disabled independently of
4878PNG_USE_READ_MACROS, which allows libpng to be built with the functions
4879even though the default is to use the macros - this allows applications
4880to choose at app buildtime whether or not to use macros (previously
4881impossible because the functions weren't in the default build.)
4882
4883B.2 Changes to the configuration mechanism
4884
4885Prior to libpng-1.5.0 library builders who needed to configure libpng
4886had either to modify the exported pngconf.h header file to add system
4887specific configuration or had to write feature selection macros into
4888pngusr.h and cause this to be included into pngconf.h by defining
4889PNG_USER_CONFIG. The latter mechanism had the disadvantage that an
4890application built without PNG_USER_CONFIG defined would see the
4891unmodified, default, libpng API and thus would probably fail to link.
4892
4893These mechanisms still work in the configure build and in any makefile
4894build that builds pnglibconf.h, although the feature selection macros
4895have changed somewhat as described above. In 1.5.0, however, pngusr.h is
4896processed only once, when the exported header file pnglibconf.h is built.
4897pngconf.h no longer includes pngusr.h, therefore pngusr.h is ignored after the
4898build of pnglibconf.h and it is never included in an application build.
4899
4900The rarely used alternative of adding a list of feature macros to the
fff5f7d5 4901CFLAGS setting in the build also still works; however, the macros will be
9c0d9ce3
DS
4902copied to pnglibconf.h and this may produce macro redefinition warnings
4903when the individual C files are compiled.
4904
4905All configuration now only works if pnglibconf.h is built from
4906scripts/pnglibconf.dfa. This requires the program awk. Brian Kernighan
4907(the original author of awk) maintains C source code of that awk and this
4908and all known later implementations (often called by subtly different
4909names - nawk and gawk for example) are adequate to build pnglibconf.h.
4910The Sun Microsystems (now Oracle) program 'awk' is an earlier version
4911and does not work; this may also apply to other systems that have a
4912functioning awk called 'nawk'.
4913
4914Configuration options are now documented in scripts/pnglibconf.dfa. This
4915file also includes dependency information that ensures a configuration is
4916consistent; that is, if a feature is switched off dependent features are
4917also removed. As a recommended alternative to using feature macros in
4918pngusr.h a system builder may also define equivalent options in pngusr.dfa
4919(or, indeed, any file) and add that to the configuration by setting
4920DFA_XTRA to the file name. The makefiles in contrib/pngminim illustrate
4921how to do this, and a case where pngusr.h is still required.
4922
fff5f7d5
VZ
4923XII. Changes to Libpng from version 1.5.x to 1.6.x
4924
4925A "simplified API" has been added (see documentation in png.h and a simple
4926example in contrib/examples/pngtopng.c). The new publicly visible API
4927includes the following:
4928
4929 macros:
4930 PNG_FORMAT_*
4931 PNG_IMAGE_*
4932 structures:
4933 png_control
4934 png_image
4935 read functions
4936 png_image_begin_read_from_file()
4937 png_image_begin_read_from_stdio()
4938 png_image_begin_read_from_memory()
4939 png_image_finish_read()
4940 png_image_free()
4941 write functions
4942 png_image_write_to_file()
4943 png_image_write_to_stdio()
4944
4945Starting with libpng-1.6.0, you can configure libpng to prefix all exported
4946symbols, using the PNG_PREFIX macro.
4947
4948We no longer include string.h in png.h. The include statement has been moved
4949to pngpriv.h, where it is not accessible by applications. Applications that
4950need access to information in string.h must add an '#include "string.h"'
4951directive. It does not matter whether this is placed prior to or after
4952the '"#include png.h"' directive.
4953
4954The following API are now DEPRECATED:
4955 png_info_init_3()
4956 png_convert_to_rfc1123() which has been replaced
4957 with png_convert_to_rfc1123_buffer()
4958 png_data_freer()
4959 png_malloc_default()
4960 png_free_default()
4961 png_reset_zstream()
4962
4963The following have been removed:
4964 png_get_io_chunk_name(), which has been replaced
4965 with png_get_io_chunk_type(). The new
4966 function returns a 32-bit integer instead of
4967 a string.
4968 The png_sizeof(), png_strlen(), png_memcpy(), png_memcmp(), and
4969 png_memset() macros are no longer used in the libpng sources and
4970 have been removed. These had already been made invisible to applications
4971 (i.e., defined in the private pngpriv.h header file) since libpng-1.5.0.
4972
4973The signatures of many exported functions were changed, such that
4974 png_structp became png_structrp or png_const_structrp
4975 png_infop became png_inforp or png_const_inforp
4976where "rp" indicates a "restricted pointer".
4977
4978Error detection in some chunks has improved; in particular the iCCP chunk
4979reader now does pretty complete validation of the basic format. Some bad
4980profiles that were previously accepted are now rejected, in particular the
4981very old broken Microsoft/HP sRGB profile. The PNG spec requirement that
4982only grayscale profiles may appear in images with color type 0 or 4 and that
4983even if the image only contains gray pixels, only RGB profiles may appear
4984in images with color type 2, 3, or 6, is now enforced. The sRGB chunk
4985is allowed to appear in images with any color type.
4986
4987The library now issues an error if the application attempts to set a
4988transform after it calls png_read_update_info().
4989
4990The library now issues a warning if both background processing and RGB to
4991gray are used when gamma correction happens. As with previous versions of
4992the library the results are numerically very incorrect in this case.
4993
4994There are some minor arithmetic changes in some transforms such as
4995png_set_background(), that might be detected by certain regression tests.
4996
4997Unknown chunk handling has been improved internally, without any API change.
4998This adds more correct option control of the unknown handling, corrects
4999a pre-existing bug where the per-chunk 'keep' setting is ignored, and makes
5000it possible to skip IDAT chunks in the sequential reader.
5001
5002The machine-generated configure files are no longer included in branches
5003libpng16 and later of the GIT repository. They continue to be included
5004in the tarball releases, however.
5005
5006XIII. Detecting libpng
b61cc19c
PC
5007
5008The png_get_io_ptr() function has been present since libpng-0.88, has never
5009changed, and is unaffected by conditional compilation macros. It is the
5010best choice for use in configure scripts for detecting the presence of any
5011libpng version since 0.88. In an autoconf "configure.in" you could use
5012
5013 AC_CHECK_LIB(png, png_get_io_ptr, ...
5014
fff5f7d5 5015XV. Source code repository
b61cc19c
PC
5016
5017Since about February 2009, version 1.2.34, libpng has been under "git" source
5018control. The git repository was built from old libpng-x.y.z.tar.gz files
5019going back to version 0.70. You can access the git repository (read only)
5020at
5021
fff5f7d5 5022 git://git.code.sf.net/p/libpng/code
b61cc19c 5023
fff5f7d5 5024or you can browse it with a web browser by selecting the "code" button at
b61cc19c 5025
fff5f7d5 5026 https://sourceforge.net/projects/libpng
b61cc19c
PC
5027
5028Patches can be sent to glennrp at users.sourceforge.net or to
5029png-mng-implement at lists.sourceforge.net or you can upload them to
5030the libpng bug tracker at
5031
5032 http://libpng.sourceforge.net
5033
9c0d9ce3
DS
5034We also accept patches built from the tar or zip distributions, and
5035simple verbal discriptions of bug fixes, reported either to the
5036SourceForge bug tracker, to the png-mng-implement at lists.sf.net
5037mailing list, or directly to glennrp.
5038
fff5f7d5 5039XV. Coding style
b61cc19c
PC
5040
5041Our coding style is similar to the "Allman" style, with curly
5042braces on separate lines:
5043
5044 if (condition)
5045 {
5046 action;
5047 }
5048
5049 else if (another condition)
5050 {
5051 another action;
5052 }
5053
5054The braces can be omitted from simple one-line actions:
5055
5056 if (condition)
5057 return (0);
5058
5059We use 3-space indentation, except for continued statements which
5060are usually indented the same as the first line of the statement
5061plus four more spaces.
5062
5063For macro definitions we use 2-space indentation, always leaving the "#"
5064in the first column.
5065
5066 #ifndef PNG_NO_FEATURE
5067 # ifndef PNG_FEATURE_SUPPORTED
5068 # define PNG_FEATURE_SUPPORTED
5069 # endif
5070 #endif
5071
5072Comments appear with the leading "/*" at the same indentation as
5073the statement that follows the comment:
5074
5075 /* Single-line comment */
5076 statement;
5077
5078 /* This is a multiple-line
5079 * comment.
5080 */
5081 statement;
5082
5083Very short comments can be placed after the end of the statement
5084to which they pertain:
5085
5086 statement; /* comment */
5087
5088We don't use C++ style ("//") comments. We have, however,
5089used them in the past in some now-abandoned MMX assembler
5090code.
5091
5092Functions and their curly braces are not indented, and
5093exported functions are marked with PNGAPI:
5094
5095 /* This is a public function that is visible to
9c0d9ce3 5096 * application programmers. It does thus-and-so.
b61cc19c
PC
5097 */
5098 void PNGAPI
5099 png_exported_function(png_ptr, png_info, foo)
5100 {
5101 body;
5102 }
5103
5104The prototypes for all exported functions appear in png.h,
5105above the comment that says
5106
5107 /* Maintainer: Put new public prototypes here ... */
5108
5109We mark all non-exported functions with "/* PRIVATE */"":
5110
5111 void /* PRIVATE */
5112 png_non_exported_function(png_ptr, png_info, foo)
5113 {
5114 body;
5115 }
5116
5117The prototypes for non-exported functions (except for those in
5118pngtest) appear in
5119pngpriv.h
5120above the comment that says
5121
fff5f7d5
VZ
5122 /* Maintainer: Put new private prototypes here ^ */
5123
5124We put a space after the "sizeof" operator and we omit the
5125optional parentheses around its argument when the argument
5126is an expression, not a type name, and we always enclose the
5127sizeof operator, with its argument, in parentheses:
5128
5129 (sizeof (png_uint_32))
5130 (sizeof array)
5131
5132Prior to libpng-1.6.0 we used a "png_sizeof()" macro, formatted as
5133though it were a function.
b61cc19c 5134
9c0d9ce3 5135To avoid polluting the global namespace, the names of all exported
fff5f7d5
VZ
5136functions and variables begin with "png_", and all publicly visible C
5137preprocessor macros begin with "PNG". We request that applications that
9c0d9ce3 5138use libpng *not* begin any of their own symbols with either of these strings.
b61cc19c
PC
5139
5140We put a space after each comma and after each semicolon
9c0d9ce3 5141in "for" statements, and we put spaces before and after each
b61cc19c
PC
5142C binary operator and after "for" or "while", and before
5143"?". We don't put a space between a typecast and the expression
5144being cast, nor do we put one between a function name and the
5145left parenthesis that follows it:
5146
5147 for (i = 2; i > 0; --i)
5148 y[i] = a(x) + (int)b;
5149
fff5f7d5
VZ
5150We prefer #ifdef and #ifndef to #if defined() and #if !defined()
5151when there is only one macro being tested. We always use parentheses
5152with "defined".
b61cc19c 5153
9c0d9ce3
DS
5154We prefer to express integers that are used as bit masks in hex format,
5155with an even number of lower-case hex digits (e.g., 0x00, 0xff, 0x0100).
5156
fff5f7d5
VZ
5157We prefer to use underscores in variable names rather than camelCase, except
5158for a few type names that we inherit from zlib.h.
5159
b61cc19c
PC
5160We do not use the TAB character for indentation in the C sources.
5161
5162Lines do not exceed 80 characters.
5163
5164Other rules can be inferred by inspecting the libpng source.
5165
fff5f7d5 5166XVI. Y2K Compliance in libpng
970f6abe 5167
fff5f7d5 5168April 25, 2013
970f6abe
VZ
5169
5170Since the PNG Development group is an ad-hoc body, we can't make
5171an official declaration.
5172
5173This is your unofficial assurance that libpng from version 0.71 and
fff5f7d5 5174upward through 1.6.2 are Y2K compliant. It is my belief that earlier
970f6abe
VZ
5175versions were also Y2K compliant.
5176
fff5f7d5
VZ
5177Libpng only has two year fields. One is a 2-byte unsigned integer
5178that will hold years up to 65535. The other, which is deprecated,
5179holds the date in text format, and will hold years up to 9999.
970f6abe
VZ
5180
5181The integer is
5182 "png_uint_16 year" in png_time_struct.
5183
fff5f7d5
VZ
5184The string is
5185 "char time_buffer[29]" in png_struct. This is no longer used
5186in libpng-1.6.x and will be removed from libpng-1.7.0.
970f6abe
VZ
5187
5188There are seven time-related functions:
5189
5190 png_convert_to_rfc_1123() in png.c
5191 (formerly png_convert_to_rfc_1152() in error)
5192 png_convert_from_struct_tm() in pngwrite.c, called
5193 in pngwrite.c
5194 png_convert_from_time_t() in pngwrite.c
5195 png_get_tIME() in pngget.c
5196 png_handle_tIME() in pngrutil.c, called in pngread.c
5197 png_set_tIME() in pngset.c
5198 png_write_tIME() in pngwutil.c, called in pngwrite.c
5199
5200All appear to handle dates properly in a Y2K environment. The
5201png_convert_from_time_t() function calls gmtime() to convert from system
5202clock time, which returns (year - 1900), which we properly convert to
5203the full 4-digit year. There is a possibility that applications using
5204libpng are not passing 4-digit years into the png_convert_to_rfc_1123()
5205function, or that they are incorrectly passing only a 2-digit year
5206instead of "year - 1900" into the png_convert_from_struct_tm() function,
5207but this is not under our control. The libpng documentation has always
5208stated that it works with 4-digit years, and the APIs have been
5209documented as such.
5210
5211The tIME chunk itself is also Y2K compliant. It uses a 2-byte unsigned
5212integer to hold the year, and can hold years as large as 65535.
5213
5214zlib, upon which libpng depends, is also Y2K compliant. It contains
5215no date-related code.
5216
5217
5218 Glenn Randers-Pehrson
5219 libpng maintainer
5220 PNG Development Group