blob: 3f0564a85f35c33a40f9d1a14b48501ff8b3c7a6 [file] [log] [blame]
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001libpng.txt - A description on how to use and modify libpng
Guy Schalnat0d580581995-07-20 02:43:20 -05002
Glenn Randers-Pehrsond60b8fa2006-04-20 21:31:14 -05003 libpng version 1.4.0beta2 - April 21, 2006
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06004 Updated and distributed by Glenn Randers-Pehrson
Glenn Randers-Pehrson5dd2b8e2004-11-24 07:50:16 -06005 <glennrp at users.sourceforge.net>
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -06006 Copyright (c) 1998-2005 Glenn Randers-Pehrson
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06007 For conditions of distribution and use, see copyright
8 notice in png.h.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06009
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -060010 based on:
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060011
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -060012 libpng 1.0 beta 6 version 0.96 May 28, 1997
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -060013 Updated and distributed by Andreas Dilger
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -060014 Copyright (c) 1996, 1997 Andreas Dilger
Guy Schalnate5a37791996-06-05 15:50:50 -050015
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -060016 libpng 1.0 beta 2 - version 0.88 January 26, 1996
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -060017 For conditions of distribution and use, see copyright
18 notice in png.h. Copyright (c) 1995, 1996 Guy Eric
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -060019 Schalnat, Group 42, Inc.
Andreas Dilger47a0c421997-05-16 02:46:07 -050020
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -060021 Updated/rewritten per request in the libpng FAQ
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060022 Copyright (c) 1995, 1996 Frank J. T. Wojcik
23 December 18, 1995 & January 20, 1996
Guy Schalnat69b14481996-01-10 02:56:49 -060024
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -050025I. Introduction
Guy Schalnat0d580581995-07-20 02:43:20 -050026
27This file describes how to use and modify the PNG reference library
Guy Schalnat69b14481996-01-10 02:56:49 -060028(known as libpng) for your own use. There are five sections to this
29file: introduction, structures, reading, writing, and modification and
Guy Schalnat4ee97b01996-01-16 01:51:56 -060030configuration notes for various special platforms. In addition to this
Guy Schalnat69b14481996-01-10 02:56:49 -060031file, example.c is a good starting point for using the library, as
32it is heavily commented and should include everything most people
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -060033will need. We assume that libpng is already installed; see the
34INSTALL file for instructions on how to install libpng.
Guy Schalnat0d580581995-07-20 02:43:20 -050035
Guy Schalnatb2e01bd1996-01-26 01:38:47 -060036Libpng was written as a companion to the PNG specification, as a way
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -060037of reducing the amount of time and effort it takes to support the PNG
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050038file format in application programs.
39
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -050040The PNG specification (second edition), November 2003, is available as
41a W3C Recommendation and as an ISO Standard (ISO/IEC 15948:2003 (E)) at
42<http://www.w3.org/TR/2003/REC-PNG-20031110/
43The W3C and ISO documents have identical technical content.
44
45The PNG-1.2 specification is available at
46<http://www.libpng.org/pub/png/documents/>
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050047
48The PNG-1.0 specification is available
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -050049as RFC 2083 <http://www.libpng.org/pub/png/documents/> and as a
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -060050W3C Recommendation <http://www.w3.org/TR/REC.png.html>. Some
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060051additional chunks are described in the special-purpose public chunks
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -050052documents at <http://www.libpng.org/pub/png/documents/>.
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050053
54Other information
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -060055about PNG, and the latest version of libpng, can be found at the PNG home
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -050056page, <http://www.libpng.org/pub/png/>.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060057
58Most users will not have to modify the library significantly; advanced
59users may want to modify it more. All attempts were made to make it as
60complete as possible, while keeping the code easy to understand.
61Currently, this library only supports C. Support for other languages
62is being considered.
Guy Schalnat0d580581995-07-20 02:43:20 -050063
64Libpng has been designed to handle multiple sessions at one time,
65to be easily modifiable, to be portable to the vast majority of
Andreas Dilger47a0c421997-05-16 02:46:07 -050066machines (ANSI, K&R, 16-, 32-, and 64-bit) available, and to be easy
67to use. The ultimate goal of libpng is to promote the acceptance of
Guy Schalnat0d580581995-07-20 02:43:20 -050068the PNG file format in whatever way possible. While there is still
Andreas Dilger47a0c421997-05-16 02:46:07 -050069work to be done (see the TODO file), libpng should cover the
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -060070majority of the needs of its users.
Guy Schalnat0d580581995-07-20 02:43:20 -050071
72Libpng uses zlib for its compression and decompression of PNG files.
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -060073Further information about zlib, and the latest version of zlib, can
Glenn Randers-Pehrsond56aca72000-11-23 11:51:42 -060074be found at the zlib home page, <http://www.info-zip.org/pub/infozip/zlib/>.
Guy Schalnat0d580581995-07-20 02:43:20 -050075The zlib compression utility is a general purpose utility that is
Guy Schalnat4ee97b01996-01-16 01:51:56 -060076useful for more than PNG files, and can be used without libpng.
Guy Schalnat69b14481996-01-10 02:56:49 -060077See the documentation delivered with zlib for more details.
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -060078You can usually find the source files for the zlib utility wherever you
79find the libpng source files.
Guy Schalnat0d580581995-07-20 02:43:20 -050080
Guy Schalnatb2e01bd1996-01-26 01:38:47 -060081Libpng is thread safe, provided the threads are using different
Guy Schalnat4ee97b01996-01-16 01:51:56 -060082instances of the structures. Each thread should have its own
83png_struct and png_info instances, and thus its own image.
84Libpng does not protect itself against two threads using the
Glenn Randers-Pehrson1ea0ff32001-08-07 22:25:59 -050085same instance of a structure. Note: thread safety may be defeated
86by use of some of the MMX assembler code in pnggccrd.c, which is only
87compiled when the user defines PNG_THREAD_UNSAFE_OK.
Guy Schalnat4ee97b01996-01-16 01:51:56 -060088
Guy Schalnat69b14481996-01-10 02:56:49 -060089II. Structures
Guy Schalnat0d580581995-07-20 02:43:20 -050090
91There are two main structures that are important to libpng, png_struct
92and png_info. The first, png_struct, is an internal structure that
Guy Schalnate5a37791996-06-05 15:50:50 -050093will not, for the most part, be used by a user except as the first
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -060094variable passed to every libpng function call.
Guy Schalnat0d580581995-07-20 02:43:20 -050095
96The png_info structure is designed to provide information about the
Andreas Dilger47a0c421997-05-16 02:46:07 -050097PNG file. At one time, the fields of png_info were intended to be
98directly accessible to the user. However, this tended to cause problems
99with applications using dynamically loaded libraries, and as a result
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500100a set of interface functions for png_info (the png_get_*() and png_set_*()
101functions) was developed. The fields of png_info are still available for
102older applications, but it is suggested that applications use the new
103interfaces if at all possible.
104
105Applications that do make direct access to the members of png_struct (except
106for png_ptr->jmpbuf) must be recompiled whenever the library is updated,
107and applications that make direct access to the members of png_info must
108be recompiled if they were compiled or loaded with libpng version 1.0.6,
109in which the members were in a different order. In version 1.0.7, the
110members of the png_info structure reverted to the old order, as they were
111in versions 0.97c through 1.0.5. Starting with version 2.0.0, both
112structures are going to be hidden, and the contents of the structures will
113only be accessible through the png_get/png_set functions.
Guy Schalnat0d580581995-07-20 02:43:20 -0500114
Andreas Dilger47a0c421997-05-16 02:46:07 -0500115The png.h header file is an invaluable reference for programming with libpng.
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600116And while I'm on the topic, make sure you include the libpng header file:
Guy Schalnat0d580581995-07-20 02:43:20 -0500117
118#include <png.h>
119
Guy Schalnat69b14481996-01-10 02:56:49 -0600120III. Reading
121
Guy Schalnat69b14481996-01-10 02:56:49 -0600122We'll now walk you through the possible functions to call when reading
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600123in a PNG file sequentially, briefly explaining the syntax and purpose
124of each one. See example.c and png.h for more detail. While
125progressive reading is covered in the next section, you will still
126need some of the functions discussed in this section to read a PNG
127file.
128
129Setup
Guy Schalnat6d764711995-12-19 03:22:19 -0600130
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600131You will want to do the I/O initialization(*) before you get into libpng,
132so if it doesn't work, you don't have much to undo. Of course, you
133will also want to insure that you are, in fact, dealing with a PNG
134file. Libpng provides a simple check to see if a file is a PNG file.
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500135To use it, pass in the first 1 to 8 bytes of the file to the function
136png_sig_cmp(), and it will return 0 if the bytes match the corresponding
137bytes of the PNG signature, or nonzero otherwise. Of course, the more bytes
138you pass in, the greater the accuracy of the prediction.
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600139
140If you are intending to keep the file pointer open for use in libpng,
141you must ensure you don't read more than 8 bytes from the beginning
142of the file, and you also have to make a call to png_set_sig_bytes_read()
143with the number of bytes you read from the beginning. Libpng will
144then only check the bytes (if any) that your program didn't read.
Guy Schalnat0d580581995-07-20 02:43:20 -0500145
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600146(*): If you are not using the standard I/O functions, you will need
Guy Schalnat69b14481996-01-10 02:56:49 -0600147to replace them with custom functions. See the discussion under
148Customizing libpng.
149
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600150
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600151 FILE *fp = fopen(file_name, "rb");
152 if (!fp)
153 {
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500154 return (ERROR);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600155 }
156 fread(header, 1, number, fp);
Glenn Randers-Pehrsonc9442291999-01-06 21:50:16 -0600157 is_png = !png_sig_cmp(header, 0, number);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600158 if (!is_png)
159 {
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500160 return (NOT_PNG);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600161 }
162
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600163
Andreas Dilger47a0c421997-05-16 02:46:07 -0500164Next, png_struct and png_info need to be allocated and initialized. In
165order to ensure that the size of these structures is correct even with a
166dynamically linked libpng, there are functions to initialize and
167allocate the structures. We also pass the library version, optional
168pointers to error handling functions, and a pointer to a data struct for
169use by the error functions, if necessary (the pointer and functions can
170be NULL if the default error handlers are to be used). See the section
171on Changes to Libpng below regarding the old initialization functions.
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500172The structure allocation functions quietly return NULL if they fail to
173create the structure, so your application should check for that.
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600174
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600175 png_structp png_ptr = png_create_read_struct
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -0500176 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600177 user_error_fn, user_warning_fn);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600178 if (!png_ptr)
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500179 return (ERROR);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500180
Guy Schalnate5a37791996-06-05 15:50:50 -0500181 png_infop info_ptr = png_create_info_struct(png_ptr);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600182 if (!info_ptr)
183 {
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600184 png_destroy_read_struct(&png_ptr,
185 (png_infopp)NULL, (png_infopp)NULL);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500186 return (ERROR);
Guy Schalnate5a37791996-06-05 15:50:50 -0500187 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500188
Guy Schalnate5a37791996-06-05 15:50:50 -0500189 png_infop end_info = png_create_info_struct(png_ptr);
190 if (!end_info)
191 {
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600192 png_destroy_read_struct(&png_ptr, &info_ptr,
193 (png_infopp)NULL);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500194 return (ERROR);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600195 }
196
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500197If you want to use your own memory allocation routines,
198define PNG_USER_MEM_SUPPORTED and use
199png_create_read_struct_2() instead of png_create_read_struct():
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600200
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500201 png_structp png_ptr = png_create_read_struct_2
202 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
203 user_error_fn, user_warning_fn, (png_voidp)
204 user_mem_ptr, user_malloc_fn, user_free_fn);
205
206The error handling routines passed to png_create_read_struct()
207and the memory alloc/free routines passed to png_create_struct_2()
208are only necessary if you are not using the libpng supplied error
209handling and memory alloc/free functions.
210
211When libpng encounters an error, it expects to longjmp back
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600212to your routine. Therefore, you will need to call setjmp and pass
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600213your png_jmpbuf(png_ptr). If you read the file from different
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600214routines, you will need to update the jmpbuf field every time you enter
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600215a new routine that will call a png_*() function.
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600216
217See your documentation of setjmp/longjmp for your compiler for more
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600218information on setjmp/longjmp. See the discussion on libpng error
219handling in the Customizing Libpng section below for more information
220on the libpng error handling. If an error occurs, and libpng longjmp's
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600221back to your setjmp, you will want to call png_destroy_read_struct() to
222free any memory.
Guy Schalnat0d580581995-07-20 02:43:20 -0500223
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600224 if (setjmp(png_jmpbuf(png_ptr)))
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600225 {
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600226 png_destroy_read_struct(&png_ptr, &info_ptr,
227 &end_info);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600228 fclose(fp);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500229 return (ERROR);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600230 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500231
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600232If you would rather avoid the complexity of setjmp/longjmp issues,
233you can compile libpng with PNG_SETJMP_NOT_SUPPORTED, in which case
234errors will result in a call to PNG_ABORT() which defaults to abort().
235
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600236Now you need to set up the input code. The default for libpng is to
237use the C function fread(). If you use this, you will need to pass a
238valid FILE * in the function png_init_io(). Be sure that the file is
Andreas Dilger47a0c421997-05-16 02:46:07 -0500239opened in binary mode. If you wish to handle reading data in another
240way, you need not call the png_init_io() function, but you must then
241implement the libpng I/O methods discussed in the Customizing Libpng
242section below.
Guy Schalnat0d580581995-07-20 02:43:20 -0500243
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600244 png_init_io(png_ptr, fp);
Guy Schalnat0d580581995-07-20 02:43:20 -0500245
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600246If you had previously opened the file and read any of the signature from
247the beginning in order to see if this was a PNG file, you need to let
248libpng know that there are some bytes missing from the start of the file.
249
250 png_set_sig_bytes(png_ptr, number);
251
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600252Setting up callback code
253
254You can set up a callback function to handle any unknown chunks in the
255input stream. You must supply the function
256
257 read_chunk_callback(png_ptr ptr,
258 png_unknown_chunkp chunk);
259 {
260 /* The unknown chunk structure contains your
261 chunk data: */
262 png_byte name[5];
263 png_byte *data;
264 png_size_t size;
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600265 /* Note that libpng has already taken care of
266 the CRC handling */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600267
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600268 /* put your code here. Return one of the
269 following: */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600270
271 return (-n); /* chunk had an error */
272 return (0); /* did not recognize */
273 return (n); /* success */
274 }
275
276(You can give your function another name that you like instead of
277"read_chunk_callback")
278
279To inform libpng about your function, use
280
281 png_set_read_user_chunk_fn(png_ptr, user_chunk_ptr,
282 read_chunk_callback);
283
284This names not only the callback function, but also a user pointer that
285you can retrieve with
286
287 png_get_user_chunk_ptr(png_ptr);
288
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600289At this point, you can set up a callback function that will be
290called after each row has been read, which you can use to control
291a progress meter or the like. It's demonstrated in pngtest.c.
292You must supply a function
293
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500294 void read_row_callback(png_ptr ptr, png_uint_32 row,
295 int pass);
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600296 {
297 /* put your code here */
298 }
299
300(You can give it another name that you like instead of "read_row_callback")
301
302To inform libpng about your function, use
303
304 png_set_read_status_fn(png_ptr, read_row_callback);
305
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500306Width and height limits
307
308The PNG specification allows the width and height of an image to be as
309large as 2^31-1 (0x7fffffff), or about 2.147 billion rows and columns.
310Since very few applications really need to process such large images,
311we have imposed an arbitrary 1-million limit on rows and columns.
312Larger images will be rejected immediately with a png_error() call. If
313you wish to override this limit, you can use
314
315 png_set_user_limits(png_ptr, width_max, height_max);
316
317to set your own limits, or use width_max = height_max = 0x7fffffffL
318to allow all valid dimensions (libpng may reject some very large images
319anyway because of potential buffer overflow conditions).
320
321You should put this statement after you create the PNG structure and
322before calling png_read_info(), png_read_png(), or png_process_data().
323If you need to retrieve the limits that are being applied, use
324
325 width_max = png_get_user_width_max(png_ptr);
326 height_max = png_get_user_height_max(png_ptr);
327
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600328Unknown-chunk handling
329
330Now you get to set the way the library processes unknown chunks in the
331input PNG stream. Both known and unknown chunks will be read. Normal
332behavior is that known chunks will be parsed into information in
333various info_ptr members; unknown chunks will be discarded. To change
334this, you can call:
335
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500336 png_set_keep_unknown_chunks(png_ptr, keep,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600337 chunk_list, num_chunks);
Glenn Randers-Pehrsond029a752004-08-09 21:50:32 -0500338 keep - 0: do not handle as unknown
339 1: do not keep
340 2: keep only if safe-to-copy
341 3: keep even if unsafe-to-copy
342 You can use these definitions:
343 PNG_HANDLE_CHUNK_AS_DEFAULT 0
344 PNG_HANDLE_CHUNK_NEVER 1
345 PNG_HANDLE_CHUNK_IF_SAFE 2
346 PNG_HANDLE_CHUNK_ALWAYS 3
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600347 chunk_list - list of chunks affected (a byte string,
348 five bytes per chunk, NULL or '\0' if
349 num_chunks is 0)
350 num_chunks - number of chunks affected; if 0, all
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500351 unknown chunks are affected. If nonzero,
352 only the chunks in the list are affected
353
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600354Unknown chunks declared in this way will be saved as raw data onto a
355list of png_unknown_chunk structures. If a chunk that is normally
356known to libpng is named in the list, it will be handled as unknown,
357according to the "keep" directive. If a chunk is named in successive
358instances of png_set_keep_unknown_chunks(), the final instance will
Glenn Randers-Pehrsond029a752004-08-09 21:50:32 -0500359take precedence. The IHDR and IEND chunks should not be named in
360chunk_list; if they are, libpng will process them normally anyway.
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600361
362The high-level read interface
363
364At this point there are two ways to proceed; through the high-level
365read interface, or through a sequence of low-level read operations.
366You can use the high-level interface if (a) you are willing to read
367the entire image into memory, and (b) the input transformations
368you want to do are limited to the following set:
369
370 PNG_TRANSFORM_IDENTITY No transformation
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600371 PNG_TRANSFORM_STRIP_16 Strip 16-bit samples to
372 8 bits
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600373 PNG_TRANSFORM_STRIP_ALPHA Discard the alpha channel
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600374 PNG_TRANSFORM_PACKING Expand 1, 2 and 4-bit
375 samples to bytes
376 PNG_TRANSFORM_PACKSWAP Change order of packed
377 pixels to LSB first
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600378 PNG_TRANSFORM_EXPAND Perform set_expand()
379 PNG_TRANSFORM_INVERT_MONO Invert monochrome images
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600380 PNG_TRANSFORM_SHIFT Normalize pixels to the
381 sBIT depth
382 PNG_TRANSFORM_BGR Flip RGB to BGR, RGBA
383 to BGRA
384 PNG_TRANSFORM_SWAP_ALPHA Flip RGBA to ARGB or GA
385 to AG
386 PNG_TRANSFORM_INVERT_ALPHA Change alpha from opacity
387 to transparency
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600388 PNG_TRANSFORM_SWAP_ENDIAN Byte-swap 16-bit samples
389
390(This excludes setting a background color, doing gamma transformation,
391dithering, and setting filler.) If this is the case, simply do this:
392
393 png_read_png(png_ptr, info_ptr, png_transforms, NULL)
394
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500395where png_transforms is an integer containing the logical OR of
396some set of transformation flags. This call is equivalent to png_read_info(),
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600397followed the set of transformations indicated by the transform mask,
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500398then png_read_image(), and finally png_read_end().
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600399
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500400(The final parameter of this call is not yet used. Someday it might point
401to transformation parameters required by some future input transform.)
402
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -0500403You must use png_transforms and not call any png_set_transform() functions
404when you use png_read_png().
405
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500406After you have called png_read_png(), you can retrieve the image data
407with
408
409 row_pointers = png_get_rows(png_ptr, info_ptr);
410
411where row_pointers is an array of pointers to the pixel data for each row:
412
413 png_bytep row_pointers[height];
414
415If you know your image size and pixel size ahead of time, you can allocate
416row_pointers prior to calling png_read_png() with
417
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500418 if (height > PNG_UINT_32_MAX/png_sizeof(png_byte))
419 png_error (png_ptr,
420 "Image is too tall to process in memory");
421 if (width > PNG_UINT_32_MAX/pixel_size)
422 png_error (png_ptr,
423 "Image is too wide to process in memory");
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600424 row_pointers = png_malloc(png_ptr,
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500425 height*png_sizeof(png_bytep));
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500426 for (int i=0; i<height, i++)
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600427 row_pointers[i]=png_malloc(png_ptr,
428 width*pixel_size);
Glenn Randers-Pehrsond56aca72000-11-23 11:51:42 -0600429 png_set_rows(png_ptr, info_ptr, &row_pointers);
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500430
431Alternatively you could allocate your image in one big block and define
432row_pointers[i] to point into the proper places in your block.
433
434If you use png_set_rows(), the application is responsible for freeing
435row_pointers (and row_pointers[i], if they were separately allocated).
436
437If you don't allocate row_pointers ahead of time, png_read_png() will
438do it, and it'll be free'ed when you call png_destroy_*().
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600439
440The low-level read interface
441
442If you are going the low-level route, you are now ready to read all
443the file information up to the actual image data. You do this with a
444call to png_read_info().
Guy Schalnat0d580581995-07-20 02:43:20 -0500445
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600446 png_read_info(png_ptr, info_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -0500447
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600448This will process all chunks up to but not including the image data.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600449
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600450Querying the info structure
451
452Functions are used to get the information from the info_ptr once it
453has been read. Note that these fields may not be completely filled
454in until png_read_end() has read the chunk data following the image.
Guy Schalnat69b14481996-01-10 02:56:49 -0600455
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600456 png_get_IHDR(png_ptr, info_ptr, &width, &height,
457 &bit_depth, &color_type, &interlace_type,
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -0600458 &compression_type, &filter_method);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500459
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600460 width - holds the width of the image
461 in pixels (up to 2^31).
462 height - holds the height of the image
463 in pixels (up to 2^31).
464 bit_depth - holds the bit depth of one of the
465 image channels. (valid values are
466 1, 2, 4, 8, 16 and depend also on
467 the color_type. See also
468 significant bits (sBIT) below).
469 color_type - describes which color/alpha channels
470 are present.
471 PNG_COLOR_TYPE_GRAY
472 (bit depths 1, 2, 4, 8, 16)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600473 PNG_COLOR_TYPE_GRAY_ALPHA
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600474 (bit depths 8, 16)
475 PNG_COLOR_TYPE_PALETTE
476 (bit depths 1, 2, 4, 8)
477 PNG_COLOR_TYPE_RGB
478 (bit_depths 8, 16)
479 PNG_COLOR_TYPE_RGB_ALPHA
480 (bit_depths 8, 16)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500481
482 PNG_COLOR_MASK_PALETTE
483 PNG_COLOR_MASK_COLOR
484 PNG_COLOR_MASK_ALPHA
485
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -0600486 filter_method - (must be PNG_FILTER_TYPE_BASE
487 for PNG 1.0, and can also be
488 PNG_INTRAPIXEL_DIFFERENCING if
489 the PNG datastream is embedded in
490 a MNG-1.0 datastream)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600491 compression_type - (must be PNG_COMPRESSION_TYPE_BASE
492 for PNG 1.0)
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -0600493 interlace_type - (PNG_INTERLACE_NONE or
494 PNG_INTERLACE_ADAM7)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600495 Any or all of interlace_type, compression_type, of
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600496 filter_method can be NULL if you are
497 not interested in their values.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500498
499 channels = png_get_channels(png_ptr, info_ptr);
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600500 channels - number of channels of info for the
501 color type (valid values are 1 (GRAY,
502 PALETTE), 2 (GRAY_ALPHA), 3 (RGB),
503 4 (RGB_ALPHA or RGB + filler byte))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500504 rowbytes = png_get_rowbytes(png_ptr, info_ptr);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600505 rowbytes - number of bytes needed to hold a row
Andreas Dilger47a0c421997-05-16 02:46:07 -0500506
507 signature = png_get_signature(png_ptr, info_ptr);
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600508 signature - holds the signature read from the
509 file (if any). The data is kept in
510 the same offset it would be if the
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -0600511 whole signature were read (i.e. if an
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600512 application had already read in 4
513 bytes of signature before starting
514 libpng, the remaining 4 bytes would
515 be in signature[4] through signature[7]
516 (see png_set_sig_bytes())).
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600517
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600518
519 width = png_get_image_width(png_ptr,
520 info_ptr);
521 height = png_get_image_height(png_ptr,
522 info_ptr);
523 bit_depth = png_get_bit_depth(png_ptr,
524 info_ptr);
525 color_type = png_get_color_type(png_ptr,
526 info_ptr);
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -0600527 filter_method = png_get_filter_type(png_ptr,
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600528 info_ptr);
529 compression_type = png_get_compression_type(png_ptr,
530 info_ptr);
531 interlace_type = png_get_interlace_type(png_ptr,
532 info_ptr);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600533
Guy Schalnat69b14481996-01-10 02:56:49 -0600534
Andreas Dilger47a0c421997-05-16 02:46:07 -0500535These are also important, but their validity depends on whether the chunk
536has been read. The png_get_valid(png_ptr, info_ptr, PNG_INFO_<chunk>) and
537png_get_<chunk>(png_ptr, info_ptr, ...) functions return non-zero if the
538data has been read, or zero if it is missing. The parameters to the
539png_get_<chunk> are set directly if they are simple data types, or a pointer
540into the info_ptr is returned for any complex types.
Guy Schalnat69b14481996-01-10 02:56:49 -0600541
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600542 png_get_PLTE(png_ptr, info_ptr, &palette,
543 &num_palette);
544 palette - the palette for the file
545 (array of png_color)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600546 num_palette - number of entries in the palette
Andreas Dilger47a0c421997-05-16 02:46:07 -0500547
548 png_get_gAMA(png_ptr, info_ptr, &gamma);
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600549 gamma - the gamma the file is written
550 at (PNG_INFO_gAMA)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500551
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600552 png_get_sRGB(png_ptr, info_ptr, &srgb_intent);
553 srgb_intent - the rendering intent (PNG_INFO_sRGB)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600554 The presence of the sRGB chunk
555 means that the pixel data is in the
556 sRGB color space. This chunk also
557 implies specific values of gAMA and
558 cHRM.
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600559
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600560 png_get_iCCP(png_ptr, info_ptr, &name,
561 &compression_type, &profile, &proflen);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600562 name - The profile name.
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600563 compression - The compression type; always
564 PNG_COMPRESSION_TYPE_BASE for PNG 1.0.
565 You may give NULL to this argument to
566 ignore it.
567 profile - International Color Consortium color
568 profile data. May contain NULs.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600569 proflen - length of profile data in bytes.
570
Andreas Dilger47a0c421997-05-16 02:46:07 -0500571 png_get_sBIT(png_ptr, info_ptr, &sig_bit);
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600572 sig_bit - the number of significant bits for
573 (PNG_INFO_sBIT) each of the gray,
574 red, green, and blue channels,
575 whichever are appropriate for the
576 given color type (png_color_16)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500577
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600578 png_get_tRNS(png_ptr, info_ptr, &trans, &num_trans,
579 &trans_values);
580 trans - array of transparent entries for
581 palette (PNG_INFO_tRNS)
Glenn Randers-Pehrson3d5a5202000-07-01 15:37:28 -0500582 trans_values - graylevel or color sample values of
583 the single transparent color for
584 non-paletted images (PNG_INFO_tRNS)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600585 num_trans - number of transparent entries
586 (PNG_INFO_tRNS)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500587
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600588 png_get_hIST(png_ptr, info_ptr, &hist);
589 (PNG_INFO_hIST)
590 hist - histogram of palette (array of
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500591 png_uint_16)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500592
593 png_get_tIME(png_ptr, info_ptr, &mod_time);
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600594 mod_time - time image was last modified
595 (PNG_VALID_tIME)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500596
597 png_get_bKGD(png_ptr, info_ptr, &background);
Guy Schalnate5a37791996-06-05 15:50:50 -0500598 background - background color (PNG_VALID_bKGD)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600599 valid 16-bit red, green and blue
600 values, regardless of color_type
Andreas Dilger47a0c421997-05-16 02:46:07 -0500601
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600602 num_comments = png_get_text(png_ptr, info_ptr,
603 &text_ptr, &num_text);
604 num_comments - number of comments
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600605 text_ptr - array of png_text holding image
606 comments
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500607 text_ptr[i].compression - type of compression used
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600608 on "text" PNG_TEXT_COMPRESSION_NONE
609 PNG_TEXT_COMPRESSION_zTXt
610 PNG_ITXT_COMPRESSION_NONE
611 PNG_ITXT_COMPRESSION_zTXt
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500612 text_ptr[i].key - keyword for comment. Must contain
613 1-79 characters.
614 text_ptr[i].text - text comments for current
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500615 keyword. Can be empty.
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500616 text_ptr[i].text_length - length of text string,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600617 after decompression, 0 for iTXt
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500618 text_ptr[i].itxt_length - length of itxt string,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600619 after decompression, 0 for tEXt/zTXt
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500620 text_ptr[i].lang - language of comment (empty
621 string for unknown).
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -0600622 text_ptr[i].lang_key - keyword in UTF-8
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500623 (empty string for unknown).
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600624 num_text - number of comments (same as
625 num_comments; you can put NULL here
626 to avoid the duplication)
627 Note while png_set_text() will accept text, language,
628 and translated keywords that can be NULL pointers, the
629 structure returned by png_get_text will always contain
630 regular zero-terminated C strings. They might be
631 empty strings but they will never be NULL pointers.
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500632
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600633 num_spalettes = png_get_sPLT(png_ptr, info_ptr,
634 &palette_ptr);
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500635 palette_ptr - array of palette structures holding
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600636 contents of one or more sPLT chunks
637 read.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600638 num_spalettes - number of sPLT chunks read.
639
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600640 png_get_oFFs(png_ptr, info_ptr, &offset_x, &offset_y,
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600641 &unit_type);
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600642 offset_x - positive offset from the left edge
643 of the screen
644 offset_y - positive offset from the top edge
645 of the screen
Andreas Dilger47a0c421997-05-16 02:46:07 -0500646 unit_type - PNG_OFFSET_PIXEL, PNG_OFFSET_MICROMETER
647
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600648 png_get_pHYs(png_ptr, info_ptr, &res_x, &res_y,
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600649 &unit_type);
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600650 res_x - pixels/unit physical resolution in
651 x direction
652 res_y - pixels/unit physical resolution in
653 x direction
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -0600654 unit_type - PNG_RESOLUTION_UNKNOWN,
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600655 PNG_RESOLUTION_METER
Andreas Dilger47a0c421997-05-16 02:46:07 -0500656
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600657 png_get_sCAL(png_ptr, info_ptr, &unit, &width,
658 &height)
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500659 unit - physical scale units (an integer)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600660 width - width of a pixel in physical scale units
661 height - height of a pixel in physical scale units
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500662 (width and height are doubles)
663
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600664 png_get_sCAL_s(png_ptr, info_ptr, &unit, &width,
665 &height)
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500666 unit - physical scale units (an integer)
667 width - width of a pixel in physical scale units
668 height - height of a pixel in physical scale units
669 (width and height are strings like "2.54")
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600670
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600671 num_unknown_chunks = png_get_unknown_chunks(png_ptr,
672 info_ptr, &unknowns)
673 unknowns - array of png_unknown_chunk
674 structures holding unknown chunks
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600675 unknowns[i].name - name of unknown chunk
676 unknowns[i].data - data of unknown chunk
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500677 unknowns[i].size - size of unknown chunk's data
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600678 unknowns[i].location - position of chunk in file
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600679
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600680 The value of "i" corresponds to the order in which the
681 chunks were read from the PNG file or inserted with the
682 png_set_unknown_chunks() function.
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500683
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600684The data from the pHYs chunk can be retrieved in several convenient
685forms:
686
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -0600687 res_x = png_get_x_pixels_per_meter(png_ptr,
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600688 info_ptr)
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -0600689 res_y = png_get_y_pixels_per_meter(png_ptr,
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600690 info_ptr)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600691 res_x_and_y = png_get_pixels_per_meter(png_ptr,
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600692 info_ptr)
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500693 res_x = png_get_x_pixels_per_inch(png_ptr,
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600694 info_ptr)
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500695 res_y = png_get_y_pixels_per_inch(png_ptr,
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600696 info_ptr)
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500697 res_x_and_y = png_get_pixels_per_inch(png_ptr,
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600698 info_ptr)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600699 aspect_ratio = png_get_pixel_aspect_ratio(png_ptr,
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600700 info_ptr)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600701
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600702 (Each of these returns 0 [signifying "unknown"] if
703 the data is not present or if res_x is 0;
704 res_x_and_y is 0 if res_x != res_y)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600705
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500706The data from the oFFs chunk can be retrieved in several convenient
707forms:
708
709 x_offset = png_get_x_offset_microns(png_ptr, info_ptr);
710 y_offset = png_get_y_offset_microns(png_ptr, info_ptr);
711 x_offset = png_get_x_offset_inches(png_ptr, info_ptr);
712 y_offset = png_get_y_offset_inches(png_ptr, info_ptr);
713
714 (Each of these returns 0 [signifying "unknown" if both
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600715 x and y are 0] if the data is not present or if the
716 chunk is present but the unit is the pixel)
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500717
Andreas Dilger47a0c421997-05-16 02:46:07 -0500718For more information, see the png_info definition in png.h and the
Guy Schalnat0d580581995-07-20 02:43:20 -0500719PNG specification for chunk contents. Be careful with trusting
720rowbytes, as some of the transformations could increase the space
Andreas Dilger47a0c421997-05-16 02:46:07 -0500721needed to hold a row (expand, filler, gray_to_rgb, etc.).
722See png_read_update_info(), below.
Guy Schalnat0d580581995-07-20 02:43:20 -0500723
Andreas Dilger47a0c421997-05-16 02:46:07 -0500724A quick word about text_ptr and num_text. PNG stores comments in
725keyword/text pairs, one pair per chunk, with no limit on the number
726of text chunks, and a 2^31 byte limit on their size. While there are
727suggested keywords, there is no requirement to restrict the use to these
728strings. It is strongly suggested that keywords and text be sensible
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600729to humans (that's the point), so don't use abbreviations. Non-printing
730symbols are not allowed. See the PNG specification for more details.
731There is also no requirement to have text after the keyword.
Guy Schalnat0d580581995-07-20 02:43:20 -0500732
Andreas Dilger47a0c421997-05-16 02:46:07 -0500733Keywords should be limited to 79 Latin-1 characters without leading or
734trailing spaces, but non-consecutive spaces are allowed within the
735keyword. It is possible to have the same keyword any number of times.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600736The text_ptr is an array of png_text structures, each holding a
737pointer to a language string, a pointer to a keyword and a pointer to
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500738a text string. The text string, language code, and translated
739keyword may be empty or NULL pointers. The keyword/text
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600740pairs are put into the array in the order that they are received.
741However, some or all of the text chunks may be after the image, so, to
742make sure you have read all the text chunks, don't mess with these
743until after you read the stuff after the image. This will be
744mentioned again below in the discussion that goes with png_read_end().
Guy Schalnat0d580581995-07-20 02:43:20 -0500745
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600746Input transformations
747
Andreas Dilger47a0c421997-05-16 02:46:07 -0500748After you've read the header information, you can set up the library
749to handle any special transformations of the image data. The various
Guy Schalnat0d580581995-07-20 02:43:20 -0500750ways to transform the data will be described in the order that they
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600751should occur. This is important, as some of these change the color
752type and/or bit depth of the data, and some others only work on
753certain color types and bit depths. Even though each transformation
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -0600754checks to see if it has data that it can do something with, you should
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600755make sure to only enable a transformation if it will be valid for the
756data. For example, don't swap red and blue on grayscale data.
Guy Schalnat0d580581995-07-20 02:43:20 -0500757
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600758The colors used for the background and transparency values should be
759supplied in the same format/depth as the current image data. They
760are stored in the same format/depth as the image data in a bKGD or tRNS
761chunk, so this is what libpng expects for this data. The colors are
762transformed to keep in sync with the image data when an application
Andreas Dilger47a0c421997-05-16 02:46:07 -0500763calls the png_read_update_info() routine (see below).
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600764
Guy Schalnate5a37791996-06-05 15:50:50 -0500765Data will be decoded into the supplied row buffers packed into bytes
766unless the library has been told to transform it into another format.
767For example, 4 bit/pixel paletted or grayscale data will be returned
7682 pixels/byte with the leftmost pixel in the high-order bits of the
769byte, unless png_set_packing() is called. 8-bit RGB data will be stored
Glenn Randers-Pehrson5b779162004-09-04 13:25:08 -0500770in RGB RGB RGB format unless png_set_filler() or png_set_add_alpha()
771is called to insert filler bytes, either before or after each RGB triplet.
77216-bit RGB data will be returned RRGGBB RRGGBB, with the most significant
773byte of the color value first, unless png_set_strip_16() is called to
Glenn Randers-Pehrson16e11662004-11-01 14:13:40 -0600774transform it to regular RGB RGB triplets, or png_set_filler() or
775png_set_add alpha() is called to insert filler bytes, either before or
776after each RRGGBB triplet. Similarly, 8-bit or 16-bit grayscale data can
777be modified with
Glenn Randers-Pehrson5b779162004-09-04 13:25:08 -0500778png_set_filler(), png_set_add_alpha(), or png_set_strip_16().
Guy Schalnate5a37791996-06-05 15:50:50 -0500779
780The following code transforms grayscale images of less than 8 to 8 bits,
781changes paletted images to RGB, and adds a full alpha channel if there is
782transparency information in a tRNS chunk. This is most useful on
783grayscale images with bit depths of 2 or 4 or if there is a multiple-image
784viewing application that wishes to treat all images in the same way.
Guy Schalnat0d580581995-07-20 02:43:20 -0500785
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -0500786 if (color_type == PNG_COLOR_TYPE_PALETTE)
787 png_set_palette_to_rgb(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -0500788
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600789 if (color_type == PNG_COLOR_TYPE_GRAY &&
Glenn Randers-Pehrson1ce08362006-03-08 23:35:59 -0600790 bit_depth < 8) png_set_expand_gray_1_2_4_to_8(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -0500791
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600792 if (png_get_valid(png_ptr, info_ptr,
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500793 PNG_INFO_tRNS)) png_set_tRNS_to_alpha(png_ptr);
794
795These three functions are actually aliases for png_set_expand(), added
796in libpng version 1.0.4, with the function names expanded to improve code
797readability. In some future version they may actually do different
798things.
Guy Schalnat0d580581995-07-20 02:43:20 -0500799
Glenn Randers-Pehrson1ce08362006-03-08 23:35:59 -0600800As of libpng version 1.2.9, png_set_expand_gray_1_2_4_to_8() was
801added. It expands the sample depth without changing tRNS to alpha.
Glenn Randers-Pehrson1ce08362006-03-08 23:35:59 -0600802
Guy Schalnate5a37791996-06-05 15:50:50 -0500803PNG can have files with 16 bits per channel. If you only can handle
8048 bits per channel, this will strip the pixels down to 8 bit.
805
Andreas Dilger47a0c421997-05-16 02:46:07 -0500806 if (bit_depth == 16)
807 png_set_strip_16(png_ptr);
808
809If, for some reason, you don't need the alpha channel on an image,
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600810and you want to remove it rather than combining it with the background
811(but the image author certainly had in mind that you *would* combine
812it with the background, so that's what you should probably do):
Andreas Dilger47a0c421997-05-16 02:46:07 -0500813
814 if (color_type & PNG_COLOR_MASK_ALPHA)
815 png_set_strip_alpha(png_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500816
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600817In PNG files, the alpha channel in an image
818is the level of opacity. If you need the alpha channel in an image to
819be the level of transparency instead of opacity, you can invert the
820alpha channel (or the tRNS chunk data) after it's read, so that 0 is
821fully opaque and 255 (in 8-bit or paletted images) or 65535 (in 16-bit
822images) is fully transparent, with
823
824 png_set_invert_alpha(png_ptr);
825
Guy Schalnate5a37791996-06-05 15:50:50 -0500826PNG files pack pixels of bit depths 1, 2, and 4 into bytes as small as
827they can, resulting in, for example, 8 pixels per byte for 1 bit
828files. This code expands to 1 pixel per byte without changing the
829values of the pixels:
830
Andreas Dilger47a0c421997-05-16 02:46:07 -0500831 if (bit_depth < 8)
Guy Schalnate5a37791996-06-05 15:50:50 -0500832 png_set_packing(png_ptr);
833
Andreas Dilger47a0c421997-05-16 02:46:07 -0500834PNG files have possible bit depths of 1, 2, 4, 8, and 16. All pixels
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600835stored in a PNG image have been "scaled" or "shifted" up to the next
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -0600836higher possible bit depth (e.g. from 5 bits/sample in the range [0,31] to
Andreas Dilger47a0c421997-05-16 02:46:07 -05008378 bits/sample in the range [0, 255]). However, it is also possible to
838convert the PNG pixel data back to the original bit depth of the image.
839This call reduces the pixels back down to the original bit depth:
Guy Schalnate5a37791996-06-05 15:50:50 -0500840
Glenn Randers-Pehrson1ea0ff32001-08-07 22:25:59 -0500841 png_color_8p sig_bit;
Guy Schalnate5a37791996-06-05 15:50:50 -0500842
Andreas Dilger47a0c421997-05-16 02:46:07 -0500843 if (png_get_sBIT(png_ptr, info_ptr, &sig_bit))
844 png_set_shift(png_ptr, sig_bit);
845
846PNG files store 3-color pixels in red, green, blue order. This code
Guy Schalnate5a37791996-06-05 15:50:50 -0500847changes the storage of the pixels to blue, green, red:
848
Andreas Dilger47a0c421997-05-16 02:46:07 -0500849 if (color_type == PNG_COLOR_TYPE_RGB ||
850 color_type == PNG_COLOR_TYPE_RGB_ALPHA)
Guy Schalnate5a37791996-06-05 15:50:50 -0500851 png_set_bgr(png_ptr);
852
Glenn Randers-Pehrson1b8e5672001-08-25 06:46:06 -0500853PNG files store RGB pixels packed into 3 or 6 bytes. This code expands them
854into 4 or 8 bytes for windowing systems that need them in this format:
Guy Schalnate5a37791996-06-05 15:50:50 -0500855
Glenn Randers-Pehrson1b8e5672001-08-25 06:46:06 -0500856 if (color_type == PNG_COLOR_TYPE_RGB)
857 png_set_filler(png_ptr, filler, PNG_FILLER_BEFORE);
Guy Schalnate5a37791996-06-05 15:50:50 -0500858
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500859where "filler" is the 8 or 16-bit number to fill with, and the location is
Guy Schalnate5a37791996-06-05 15:50:50 -0500860either PNG_FILLER_BEFORE or PNG_FILLER_AFTER, depending upon whether
Andreas Dilger47a0c421997-05-16 02:46:07 -0500861you want the filler before the RGB or after. This transformation
Glenn Randers-Pehrson1b8e5672001-08-25 06:46:06 -0500862does not affect images that already have full alpha channels. To add an
863opaque alpha channel, use filler=0xff or 0xffff and PNG_FILLER_AFTER which
864will generate RGBA pixels.
Guy Schalnate5a37791996-06-05 15:50:50 -0500865
Glenn Randers-Pehrson5b779162004-09-04 13:25:08 -0500866Note that png_set_filler() does not change the color type. If you want
867to do that, you can add a true alpha channel with
868
869 if (color_type == PNG_COLOR_TYPE_RGB ||
870 color_type == PNG_COLOR_TYPE_GRAY)
871 png_set_add_alpha(png_ptr, filler, PNG_FILLER_AFTER);
872
873where "filler" contains the alpha value to assign to each pixel.
Glenn Randers-Pehrson16e11662004-11-01 14:13:40 -0600874This function was added in libpng-1.2.7.
Glenn Randers-Pehrson5b779162004-09-04 13:25:08 -0500875
Andreas Dilger47a0c421997-05-16 02:46:07 -0500876If you are reading an image with an alpha channel, and you need the
877data as ARGB instead of the normal PNG format RGBA:
878
879 if (color_type == PNG_COLOR_TYPE_RGB_ALPHA)
880 png_set_swap_alpha(png_ptr);
881
882For some uses, you may want a grayscale image to be represented as
Guy Schalnate5a37791996-06-05 15:50:50 -0500883RGB. This code will do that conversion:
884
Andreas Dilger47a0c421997-05-16 02:46:07 -0500885 if (color_type == PNG_COLOR_TYPE_GRAY ||
886 color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
887 png_set_gray_to_rgb(png_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500888
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600889Conversely, you can convert an RGB or RGBA image to grayscale or grayscale
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600890with alpha.
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600891
892 if (color_type == PNG_COLOR_TYPE_RGB ||
893 color_type == PNG_COLOR_TYPE_RGB_ALPHA)
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600894 png_set_rgb_to_gray_fixed(png_ptr, error_action,
895 int red_weight, int green_weight);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600896
897 error_action = 1: silently do the conversion
898 error_action = 2: issue a warning if the original
899 image has any pixel where
900 red != green or red != blue
901 error_action = 3: issue an error and abort the
902 conversion if the original
903 image has any pixel where
904 red != green or red != blue
905
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600906 red_weight: weight of red component times 100000
907 green_weight: weight of green component times 100000
908 If either weight is negative, default
909 weights (21268, 71514) are used.
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600910
911If you have set error_action = 1 or 2, you can
912later check whether the image really was gray, after processing
913the image rows, with the png_get_rgb_to_gray_status(png_ptr) function.
914It will return a png_byte that is zero if the image was gray or
9151 if there were any non-gray pixels. bKGD and sBIT data
916will be silently converted to grayscale, using the green channel
917data, regardless of the error_action setting.
918
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600919With red_weight+green_weight<=100000,
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600920the normalized graylevel is computed:
921
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600922 int rw = red_weight * 65536;
923 int gw = green_weight * 65536;
924 int bw = 65536 - (rw + gw);
925 gray = (rw*red + gw*green + bw*blue)/65536;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600926
927The default values approximate those recommended in the Charles
928Poynton's Color FAQ, <http://www.inforamp.net/~poynton/>
Glenn Randers-Pehrson5dd2b8e2004-11-24 07:50:16 -0600929Copyright (c) 1998-01-04 Charles Poynton <poynton at inforamp.net>
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600930
931 Y = 0.212671 * R + 0.715160 * G + 0.072169 * B
932
933Libpng approximates this with
934
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600935 Y = 0.21268 * R + 0.7151 * G + 0.07217 * B
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600936
937which can be expressed with integers as
938
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600939 Y = (6969 * R + 23434 * G + 2365 * B)/32768
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600940
941The calculation is done in a linear colorspace, if the image gamma
942is known.
943
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -0600944If you have a grayscale and you are using png_set_expand_depth(),
945png_set_expand(), or png_set_gray_to_rgb to change to truecolor or to
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -0500946a higher bit-depth, you must either supply the background color as a gray
947value at the original file bit-depth (need_expand = 1) or else supply the
948background color as an RGB triplet at the final, expanded bit depth
949(need_expand = 0). Similarly, if you are reading a paletted image, you
950must either supply the background color as a palette index (need_expand = 1)
951or as an RGB triplet that may or may not be in the palette (need_expand = 0).
Guy Schalnat0d580581995-07-20 02:43:20 -0500952
Andreas Dilger47a0c421997-05-16 02:46:07 -0500953 png_color_16 my_background;
954 png_color_16p image_background;
Guy Schalnat0d580581995-07-20 02:43:20 -0500955
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -0500956 if (png_get_bKGD(png_ptr, info_ptr, &image_background))
957 png_set_background(png_ptr, image_background,
958 PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500959 else
960 png_set_background(png_ptr, &my_background,
961 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
962
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -0500963The png_set_background() function tells libpng to composite images
964with alpha or simple transparency against the supplied background
965color. If the PNG file contains a bKGD chunk (PNG_INFO_bKGD valid),
966you may use this color, or supply another color more suitable for
967the current display (e.g., the background color from a web page). You
968need to tell libpng whether the color is in the gamma space of the
969display (PNG_BACKGROUND_GAMMA_SCREEN for colors you supply), the file
970(PNG_BACKGROUND_GAMMA_FILE for colors from the bKGD chunk), or one
971that is neither of these gammas (PNG_BACKGROUND_GAMMA_UNIQUE - I don't
972know why anyone would use this, but it's here).
973
Andreas Dilger47a0c421997-05-16 02:46:07 -0500974To properly display PNG images on any kind of system, the application needs
975to know what the display gamma is. Ideally, the user will know this, and
976the application will allow them to set it. One method of allowing the user
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -0500977to set the display gamma separately for each system is to check for a
978SCREEN_GAMMA or DISPLAY_GAMMA environment variable, which will hopefully be
979correctly set.
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600980
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -0500981Note that display_gamma is the overall gamma correction required to produce
982pleasing results, which depends on the lighting conditions in the surrounding
983environment. In a dim or brightly lit room, no compensation other than
984the physical gamma exponent of the monitor is needed, while in a dark room
985a slightly smaller exponent is better.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500986
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500987 double gamma, screen_gamma;
988
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600989 if (/* We have a user-defined screen
990 gamma value */)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500991 {
992 screen_gamma = user_defined_screen_gamma;
993 }
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600994 /* One way that applications can share the same
995 screen gamma value */
996 else if ((gamma_str = getenv("SCREEN_GAMMA"))
997 != NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500998 {
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500999 screen_gamma = (double)atof(gamma_str);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001000 }
1001 /* If we don't have another value */
Guy Schalnat0d580581995-07-20 02:43:20 -05001002 else
Andreas Dilger47a0c421997-05-16 02:46:07 -05001003 {
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001004 screen_gamma = 2.2; /* A good guess for a
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001005 PC monitor in a bright office or a dim room */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001006 screen_gamma = 2.0; /* A good guess for a
1007 PC monitor in a dark room */
1008 screen_gamma = 1.7 or 1.0; /* A good
1009 guess for Mac systems */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001010 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001011
Andreas Dilger47a0c421997-05-16 02:46:07 -05001012The png_set_gamma() function handles gamma transformations of the data.
1013Pass both the file gamma and the current screen_gamma. If the file does
1014not have a gamma value, you can pass one anyway if you have an idea what
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001015it is (usually 0.45455 is a good guess for GIF images on PCs). Note
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001016that file gammas are inverted from screen gammas. See the discussions
Andreas Dilger47a0c421997-05-16 02:46:07 -05001017on gamma in the PNG specification for an excellent description of what
1018gamma is, and why all applications should support it. It is strongly
1019recommended that PNG viewers support gamma correction.
Guy Schalnat0d580581995-07-20 02:43:20 -05001020
Andreas Dilger47a0c421997-05-16 02:46:07 -05001021 if (png_get_gAMA(png_ptr, info_ptr, &gamma))
1022 png_set_gamma(png_ptr, screen_gamma, gamma);
Guy Schalnate5a37791996-06-05 15:50:50 -05001023 else
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001024 png_set_gamma(png_ptr, screen_gamma, 0.45455);
Guy Schalnat0d580581995-07-20 02:43:20 -05001025
Guy Schalnate5a37791996-06-05 15:50:50 -05001026If you need to reduce an RGB file to a paletted file, or if a paletted
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001027file has more entries then will fit on your screen, png_set_dither()
1028will do that. Note that this is a simple match dither that merely
1029finds the closest color available. This should work fairly well with
1030optimized palettes, and fairly badly with linear color cubes. If you
1031pass a palette that is larger then maximum_colors, the file will
1032reduce the number of colors in the palette so it will fit into
1033maximum_colors. If there is a histogram, it will use it to make
Guy Schalnate5a37791996-06-05 15:50:50 -05001034more intelligent choices when reducing the palette. If there is no
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001035histogram, it may not do as good a job.
Guy Schalnat69b14481996-01-10 02:56:49 -06001036
Andreas Dilger47a0c421997-05-16 02:46:07 -05001037 if (color_type & PNG_COLOR_MASK_COLOR)
Guy Schalnat0d580581995-07-20 02:43:20 -05001038 {
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001039 if (png_get_valid(png_ptr, info_ptr,
1040 PNG_INFO_PLTE))
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001041 {
Glenn Randers-Pehrson865f4f02002-09-15 20:30:38 -05001042 png_uint_16p histogram = NULL;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001043
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001044 png_get_hIST(png_ptr, info_ptr,
1045 &histogram);
1046 png_set_dither(png_ptr, palette, num_palette,
1047 max_screen_colors, histogram, 1);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001048 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001049 else
1050 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001051 png_color std_color_cube[MAX_SCREEN_COLORS] =
Guy Schalnat0d580581995-07-20 02:43:20 -05001052 { ... colors ... };
1053
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001054 png_set_dither(png_ptr, std_color_cube,
1055 MAX_SCREEN_COLORS, MAX_SCREEN_COLORS,
1056 NULL,0);
Guy Schalnat0d580581995-07-20 02:43:20 -05001057 }
1058 }
1059
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001060PNG files describe monochrome as black being zero and white being one.
1061The following code will reverse this (make black be one and white be
1062zero):
Guy Schalnat0d580581995-07-20 02:43:20 -05001063
Glenn Randers-Pehrson1ea0ff32001-08-07 22:25:59 -05001064 if (bit_depth == 1 && color_type == PNG_COLOR_TYPE_GRAY)
1065 png_set_invert_mono(png_ptr);
1066
1067This function can also be used to invert grayscale and gray-alpha images:
1068
1069 if (color_type == PNG_COLOR_TYPE_GRAY ||
1070 color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001071 png_set_invert_mono(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05001072
Guy Schalnat69b14481996-01-10 02:56:49 -06001073PNG files store 16 bit pixels in network byte order (big-endian,
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001074ie. most significant bits first). This code changes the storage to the
1075other way (little-endian, i.e. least significant bits first, the
Guy Schalnat69b14481996-01-10 02:56:49 -06001076way PCs store them):
Guy Schalnat0d580581995-07-20 02:43:20 -05001077
Andreas Dilger47a0c421997-05-16 02:46:07 -05001078 if (bit_depth == 16)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001079 png_set_swap(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05001080
Andreas Dilger47a0c421997-05-16 02:46:07 -05001081If you are using packed-pixel images (1, 2, or 4 bits/pixel), and you
1082need to change the order the pixels are packed into bytes, you can use:
1083
1084 if (bit_depth < 8)
1085 png_set_packswap(png_ptr);
1086
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001087Finally, you can write your own transformation function if none of
1088the existing ones meets your needs. This is done by setting a callback
1089with
1090
1091 png_set_read_user_transform_fn(png_ptr,
1092 read_transform_fn);
1093
1094You must supply the function
1095
1096 void read_transform_fn(png_ptr ptr, row_info_ptr
1097 row_info, png_bytep data)
1098
1099See pngtest.c for a working example. Your function will be called
1100after all of the other transformations have been processed.
1101
1102You can also set up a pointer to a user structure for use by your
1103callback function, and you can inform libpng that your transform
1104function will change the number of channels or bit depth with the
1105function
1106
1107 png_set_user_transform_info(png_ptr, user_ptr,
1108 user_depth, user_channels);
1109
1110The user's application, not libpng, is responsible for allocating and
1111freeing any memory required for the user structure.
1112
1113You can retrieve the pointer via the function
1114png_get_user_transform_ptr(). For example:
1115
1116 voidp read_user_transform_ptr =
1117 png_get_user_transform_ptr(png_ptr);
1118
Guy Schalnat69b14481996-01-10 02:56:49 -06001119The last thing to handle is interlacing; this is covered in detail below,
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001120but you must call the function here if you want libpng to handle expansion
1121of the interlaced image.
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001122
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001123 number_of_passes = png_set_interlace_handling(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05001124
Guy Schalnate5a37791996-06-05 15:50:50 -05001125After setting the transformations, libpng can update your png_info
1126structure to reflect any transformations you've requested with this
Andreas Dilger47a0c421997-05-16 02:46:07 -05001127call. This is most useful to update the info structure's rowbytes
1128field so you can use it to allocate your image memory. This function
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001129will also update your palette with the correct screen_gamma and
Guy Schalnate5a37791996-06-05 15:50:50 -05001130background if these have been given with the calls above.
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001131
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001132 png_read_update_info(png_ptr, info_ptr);
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001133
1134After you call png_read_update_info(), you can allocate any
Guy Schalnate5a37791996-06-05 15:50:50 -05001135memory you need to hold the image. The row data is simply
1136raw byte data for all forms of images. As the actual allocation
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001137varies among applications, no example will be given. If you
Guy Schalnate5a37791996-06-05 15:50:50 -05001138are allocating one large chunk, you will need to build an
1139array of pointers to each row, as it will be needed for some
1140of the functions below.
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001141
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001142Reading image data
1143
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001144After you've allocated memory, you can read the image data.
Guy Schalnat0d580581995-07-20 02:43:20 -05001145The simplest way to do this is in one function call. If you are
1146allocating enough memory to hold the whole image, you can just
1147call png_read_image() and libpng will read in all the image data
1148and put it in the memory area supplied. You will need to pass in
1149an array of pointers to each row.
1150
1151This function automatically handles interlacing, so you don't need
1152to call png_set_interlace_handling() or call this function multiple
1153times, or any of that other stuff necessary with png_read_rows().
1154
1155 png_read_image(png_ptr, row_pointers);
1156
1157where row_pointers is:
1158
Guy Schalnate5a37791996-06-05 15:50:50 -05001159 png_bytep row_pointers[height];
Guy Schalnat0d580581995-07-20 02:43:20 -05001160
1161You can point to void or char or whatever you use for pixels.
1162
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001163If you don't want to read in the whole image at once, you can
Guy Schalnat0d580581995-07-20 02:43:20 -05001164use png_read_rows() instead. If there is no interlacing (check
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001165interlace_type == PNG_INTERLACE_NONE), this is simple:
Guy Schalnat0d580581995-07-20 02:43:20 -05001166
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001167 png_read_rows(png_ptr, row_pointers, NULL,
1168 number_of_rows);
Guy Schalnat0d580581995-07-20 02:43:20 -05001169
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001170where row_pointers is the same as in the png_read_image() call.
Guy Schalnat0d580581995-07-20 02:43:20 -05001171
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001172If you are doing this just one row at a time, you can do this with
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001173a single row_pointer instead of an array of row_pointers:
Guy Schalnat0d580581995-07-20 02:43:20 -05001174
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001175 png_bytep row_pointer = row;
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001176 png_read_row(png_ptr, row_pointer, NULL);
Guy Schalnat0d580581995-07-20 02:43:20 -05001177
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05001178If the file is interlaced (interlace_type != 0 in the IHDR chunk), things
1179get somewhat harder. The only current (PNG Specification version 1.2)
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001180interlacing type for PNG is (interlace_type == PNG_INTERLACE_ADAM7)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001181is a somewhat complicated 2D interlace scheme, known as Adam7, that
Andreas Dilger47a0c421997-05-16 02:46:07 -05001182breaks down an image into seven smaller images of varying size, based
1183on an 8x8 grid.
Guy Schalnat0d580581995-07-20 02:43:20 -05001184
Guy Schalnate5a37791996-06-05 15:50:50 -05001185libpng can fill out those images or it can give them to you "as is".
1186If you want them filled out, there are two ways to do that. The one
1187mentioned in the PNG specification is to expand each pixel to cover
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001188those pixels that have not been read yet (the "rectangle" method).
1189This results in a blocky image for the first pass, which gradually
1190smooths out as more pixels are read. The other method is the "sparkle"
1191method, where pixels are drawn only in their final locations, with the
1192rest of the image remaining whatever colors they were initialized to
1193before the start of the read. The first method usually looks better,
1194but tends to be slower, as there are more pixels to put in the rows.
Guy Schalnate5a37791996-06-05 15:50:50 -05001195
1196If you don't want libpng to handle the interlacing details, just call
1197png_read_rows() seven times to read in all seven images. Each of the
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001198images is a valid image by itself, or they can all be combined on an
Guy Schalnate5a37791996-06-05 15:50:50 -050011998x8 grid to form a single image (although if you intend to combine them
1200you would be far better off using the libpng interlace handling).
1201
1202The first pass will return an image 1/8 as wide as the entire image
1203(every 8th column starting in column 0) and 1/8 as high as the original
1204(every 8th row starting in row 0), the second will be 1/8 as wide
1205(starting in column 4) and 1/8 as high (also starting in row 0). The
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001206third pass will be 1/4 as wide (every 4th pixel starting in column 0) and
Guy Schalnate5a37791996-06-05 15:50:50 -050012071/8 as high (every 8th row starting in row 4), and the fourth pass will
1208be 1/4 as wide and 1/4 as high (every 4th column starting in column 2,
1209and every 4th row starting in row 0). The fifth pass will return an
1210image 1/2 as wide, and 1/4 as high (starting at column 0 and row 2),
1211while the sixth pass will be 1/2 as wide and 1/2 as high as the original
1212(starting in column 1 and row 0). The seventh and final pass will be as
1213wide as the original, and 1/2 as high, containing all of the odd
1214numbered scanlines. Phew!
Guy Schalnat0d580581995-07-20 02:43:20 -05001215
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001216If you want libpng to expand the images, call this before calling
1217png_start_read_image() or png_read_update_info():
Guy Schalnat0d580581995-07-20 02:43:20 -05001218
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001219 if (interlace_type == PNG_INTERLACE_ADAM7)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001220 number_of_passes
1221 = png_set_interlace_handling(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05001222
1223This will return the number of passes needed. Currently, this
1224is seven, but may change if another interlace type is added.
1225This function can be called even if the file is not interlaced,
Guy Schalnate5a37791996-06-05 15:50:50 -05001226where it will return one pass.
Guy Schalnat0d580581995-07-20 02:43:20 -05001227
1228If you are not going to display the image after each pass, but are
1229going to wait until the entire image is read in, use the sparkle
1230effect. This effect is faster and the end result of either method
1231is exactly the same. If you are planning on displaying the image
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001232after each pass, the "rectangle" effect is generally considered the
Guy Schalnat0d580581995-07-20 02:43:20 -05001233better looking one.
1234
1235If you only want the "sparkle" effect, just call png_read_rows() as
1236normal, with the third parameter NULL. Make sure you make pass over
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001237the image number_of_passes times, and you don't change the data in the
Guy Schalnat0d580581995-07-20 02:43:20 -05001238rows between calls. You can change the locations of the data, just
1239not the data. Each pass only writes the pixels appropriate for that
1240pass, and assumes the data from previous passes is still valid.
1241
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001242 png_read_rows(png_ptr, row_pointers, NULL,
1243 number_of_rows);
Guy Schalnat0d580581995-07-20 02:43:20 -05001244
1245If you only want the first effect (the rectangles), do the same as
1246before except pass the row buffer in the third parameter, and leave
1247the second parameter NULL.
1248
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001249 png_read_rows(png_ptr, NULL, row_pointers,
1250 number_of_rows);
Guy Schalnat0d580581995-07-20 02:43:20 -05001251
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001252Finishing a sequential read
1253
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -06001254After you are finished reading the image through the
1255low-level interface, you can finish reading the file. If you are
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001256interested in comments or time, which may be stored either before or
1257after the image data, you should pass the separate png_info struct if
1258you want to keep the comments from before and after the image
1259separate. If you are not interested, you can pass NULL.
Guy Schalnat0d580581995-07-20 02:43:20 -05001260
Guy Schalnate5a37791996-06-05 15:50:50 -05001261 png_read_end(png_ptr, end_info);
Guy Schalnat0d580581995-07-20 02:43:20 -05001262
Guy Schalnate5a37791996-06-05 15:50:50 -05001263When you are done, you can free all memory allocated by libpng like this:
Guy Schalnat0d580581995-07-20 02:43:20 -05001264
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001265 png_destroy_read_struct(&png_ptr, &info_ptr,
1266 &end_info);
Guy Schalnat0d580581995-07-20 02:43:20 -05001267
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001268It is also possible to individually free the info_ptr members that
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001269point to libpng-allocated storage with the following function:
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001270
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001271 png_free_data(png_ptr, info_ptr, mask, seq)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001272 mask - identifies data to be freed, a mask
1273 containing the logical OR of one or
1274 more of
1275 PNG_FREE_PLTE, PNG_FREE_TRNS,
1276 PNG_FREE_HIST, PNG_FREE_ICCP,
1277 PNG_FREE_PCAL, PNG_FREE_ROWS,
1278 PNG_FREE_SCAL, PNG_FREE_SPLT,
1279 PNG_FREE_TEXT, PNG_FREE_UNKN,
1280 or simply PNG_FREE_ALL
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001281 seq - sequence number of item to be freed
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001282 (-1 for all items)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001283
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001284This function may be safely called when the relevant storage has
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -06001285already been freed, or has not yet been allocated, or was allocated
1286by the user and not by libpng, and will in those
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001287cases do nothing. The "seq" parameter is ignored if only one item
1288of the selected data type, such as PLTE, is allowed. If "seq" is not
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001289-1, and multiple items are allowed for the data type identified in
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001290the mask, such as text or sPLT, only the n'th item in the structure
1291is freed, where n is "seq".
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001292
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -05001293The default behavior is only to free data that was allocated internally
1294by libpng. This can be changed, so that libpng will not free the data,
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001295or so that it will free data that was allocated by the user with png_malloc()
1296or png_zalloc() and passed in via a png_set_*() function, with
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -05001297
1298 png_data_freer(png_ptr, info_ptr, freer, mask)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001299 mask - which data elements are affected
1300 same choices as in png_free_data()
1301 freer - one of
1302 PNG_DESTROY_WILL_FREE_DATA
1303 PNG_SET_WILL_FREE_DATA
1304 PNG_USER_WILL_FREE_DATA
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -05001305
1306This function only affects data that has already been allocated.
1307You can call this function after reading the PNG data but before calling
1308any png_set_*() functions, to control whether the user or the png_set_*()
1309function is responsible for freeing any existing data that might be present,
1310and again after the png_set_*() functions to control whether the user
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001311or png_destroy_*() is supposed to free the data. When the user assumes
1312responsibility for libpng-allocated data, the application must use
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001313png_free() to free it, and when the user transfers responsibility to libpng
1314for data that the user has allocated, the user must have used png_malloc()
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -05001315or png_zalloc() to allocate it.
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001316
1317If you allocated your row_pointers in a single block, as suggested above in
1318the description of the high level read interface, you must not transfer
1319responsibility for freeing it to the png_set_rows or png_read_destroy function,
1320because they would also try to free the individual row_pointers[i].
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -05001321
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001322If you allocated text_ptr.text, text_ptr.lang, and text_ptr.translated_keyword
1323separately, do not transfer responsibility for freeing text_ptr to libpng,
1324because when libpng fills a png_text structure it combines these members with
1325the key member, and png_free_data() will free only text_ptr.key. Similarly,
1326if you transfer responsibility for free'ing text_ptr from libpng to your
1327application, your application must not separately free those members.
1328
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001329The png_free_data() function will turn off the "valid" flag for anything
1330it frees. If you need to turn the flag off for a chunk that was freed by your
1331application instead of by libpng, you can use
1332
1333 png_set_invalid(png_ptr, info_ptr, mask);
1334 mask - identifies the chunks to be made invalid,
1335 containing the logical OR of one or
Glenn Randers-Pehrsond56aca72000-11-23 11:51:42 -06001336 more of
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001337 PNG_INFO_gAMA, PNG_INFO_sBIT,
1338 PNG_INFO_cHRM, PNG_INFO_PLTE,
1339 PNG_INFO_tRNS, PNG_INFO_bKGD,
1340 PNG_INFO_hIST, PNG_INFO_pHYs,
1341 PNG_INFO_oFFs, PNG_INFO_tIME,
1342 PNG_INFO_pCAL, PNG_INFO_sRGB,
1343 PNG_INFO_iCCP, PNG_INFO_sPLT,
1344 PNG_INFO_sCAL, PNG_INFO_IDAT
1345
Guy Schalnate5a37791996-06-05 15:50:50 -05001346For a more compact example of reading a PNG image, see the file example.c.
Guy Schalnat0d580581995-07-20 02:43:20 -05001347
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001348Reading PNG files progressively
Guy Schalnat6d764711995-12-19 03:22:19 -06001349
1350The progressive reader is slightly different then the non-progressive
1351reader. Instead of calling png_read_info(), png_read_rows(), and
1352png_read_end(), you make one call to png_process_data(), which calls
1353callbacks when it has the info, a row, or the end of the image. You
1354set up these callbacks with png_set_progressive_read_fn(). You don't
1355have to worry about the input/output functions of libpng, as you are
1356giving the library the data directly in png_process_data(). I will
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001357assume that you have read the section on reading PNG files above,
Guy Schalnat6d764711995-12-19 03:22:19 -06001358so I will only highlight the differences (although I will show
1359all of the code).
1360
1361png_structp png_ptr;
1362png_infop info_ptr;
1363
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001364 /* An example code fragment of how you would
1365 initialize the progressive reader in your
1366 application. */
1367 int
1368 initialize_png_reader()
1369 {
1370 png_ptr = png_create_read_struct
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001371 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001372 user_error_fn, user_warning_fn);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001373 if (!png_ptr)
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001374 return (ERROR);
Guy Schalnate5a37791996-06-05 15:50:50 -05001375 info_ptr = png_create_info_struct(png_ptr);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001376 if (!info_ptr)
1377 {
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001378 png_destroy_read_struct(&png_ptr, (png_infopp)NULL,
1379 (png_infopp)NULL);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001380 return (ERROR);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001381 }
Guy Schalnat6d764711995-12-19 03:22:19 -06001382
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001383 if (setjmp(png_jmpbuf(png_ptr)))
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001384 {
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001385 png_destroy_read_struct(&png_ptr, &info_ptr,
1386 (png_infopp)NULL);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001387 return (ERROR);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001388 }
Guy Schalnat6d764711995-12-19 03:22:19 -06001389
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001390 /* This one's new. You can provide functions
1391 to be called when the header info is valid,
1392 when each row is completed, and when the image
1393 is finished. If you aren't using all functions,
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001394 you can specify NULL parameters. Even when all
1395 three functions are NULL, you need to call
1396 png_set_progressive_read_fn(). You can use
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001397 any struct as the user_ptr (cast to a void pointer
1398 for the function call), and retrieve the pointer
1399 from inside the callbacks using the function
1400
1401 png_get_progressive_ptr(png_ptr);
1402
1403 which will return a void pointer, which you have
1404 to cast appropriately.
Guy Schalnate5a37791996-06-05 15:50:50 -05001405 */
1406 png_set_progressive_read_fn(png_ptr, (void *)user_ptr,
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001407 info_callback, row_callback, end_callback);
Guy Schalnat6d764711995-12-19 03:22:19 -06001408
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001409 return 0;
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001410 }
Guy Schalnat6d764711995-12-19 03:22:19 -06001411
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001412 /* A code fragment that you call as you receive blocks
1413 of data */
1414 int
1415 process_data(png_bytep buffer, png_uint_32 length)
1416 {
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001417 if (setjmp(png_jmpbuf(png_ptr)))
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001418 {
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001419 png_destroy_read_struct(&png_ptr, &info_ptr,
1420 (png_infopp)NULL);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001421 return (ERROR);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001422 }
Guy Schalnat6d764711995-12-19 03:22:19 -06001423
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001424 /* This one's new also. Simply give it a chunk
1425 of data from the file stream (in order, of
1426 course). On machines with segmented memory
1427 models machines, don't give it any more than
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001428 64K. The library seems to run fine with sizes
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001429 of 4K. Although you can give it much less if
1430 necessary (I assume you can give it chunks of
1431 1 byte, I haven't tried less then 256 bytes
1432 yet). When this function returns, you may
1433 want to display any rows that were generated
1434 in the row callback if you don't already do
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001435 so there.
Guy Schalnate5a37791996-06-05 15:50:50 -05001436 */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001437 png_process_data(png_ptr, info_ptr, buffer, length);
1438 return 0;
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001439 }
Guy Schalnat6d764711995-12-19 03:22:19 -06001440
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001441 /* This function is called (as set by
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001442 png_set_progressive_read_fn() above) when enough data
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001443 has been supplied so all of the header has been
1444 read.
Guy Schalnate5a37791996-06-05 15:50:50 -05001445 */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001446 void
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001447 info_callback(png_structp png_ptr, png_infop info)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001448 {
1449 /* Do any setup here, including setting any of
1450 the transformations mentioned in the Reading
1451 PNG files section. For now, you _must_ call
1452 either png_start_read_image() or
1453 png_read_update_info() after all the
1454 transformations are set (even if you don't set
1455 any). You may start getting rows before
1456 png_process_data() returns, so this is your
1457 last chance to prepare for that.
Guy Schalnate5a37791996-06-05 15:50:50 -05001458 */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001459 }
Guy Schalnat6d764711995-12-19 03:22:19 -06001460
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001461 /* This function is called when each row of image
1462 data is complete */
1463 void
1464 row_callback(png_structp png_ptr, png_bytep new_row,
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -05001465 png_uint_32 row_num, int pass)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001466 {
1467 /* If the image is interlaced, and you turned
1468 on the interlace handler, this function will
1469 be called for every row in every pass. Some
1470 of these rows will not be changed from the
1471 previous pass. When the row is not changed,
1472 the new_row variable will be NULL. The rows
1473 and passes are called in order, so you don't
1474 really need the row_num and pass, but I'm
1475 supplying them because it may make your life
1476 easier.
Guy Schalnat6d764711995-12-19 03:22:19 -06001477
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001478 For the non-NULL rows of interlaced images,
1479 you must call png_progressive_combine_row()
1480 passing in the row and the old row. You can
1481 call this function for NULL rows (it will just
1482 return) and for non-interlaced images (it just
1483 does the memcpy for you) if it will make the
1484 code easier. Thus, you can just do this for
1485 all cases:
Guy Schalnate5a37791996-06-05 15:50:50 -05001486 */
Guy Schalnat6d764711995-12-19 03:22:19 -06001487
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001488 png_progressive_combine_row(png_ptr, old_row,
1489 new_row);
Guy Schalnat6d764711995-12-19 03:22:19 -06001490
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001491 /* where old_row is what was displayed for
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -05001492 previously for the row. Note that the first
1493 pass (pass == 0, really) will completely cover
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001494 the old row, so the rows do not have to be
1495 initialized. After the first pass (and only
1496 for interlaced images), you will have to pass
1497 the current row, and the function will combine
1498 the old row and the new row.
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001499 */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001500 }
Guy Schalnat6d764711995-12-19 03:22:19 -06001501
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001502 void
1503 end_callback(png_structp png_ptr, png_infop info)
1504 {
1505 /* This function is called after the whole image
1506 has been read, including any chunks after the
1507 image (up to and including the IEND). You
1508 will usually have the same info chunk as you
1509 had in the header, although some data may have
1510 been added to the comments and time fields.
Guy Schalnat6d764711995-12-19 03:22:19 -06001511
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001512 Most people won't do much here, perhaps setting
1513 a flag that marks the image as finished.
Guy Schalnate5a37791996-06-05 15:50:50 -05001514 */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001515 }
Guy Schalnat6d764711995-12-19 03:22:19 -06001516
1517
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001518
Guy Schalnat69b14481996-01-10 02:56:49 -06001519IV. Writing
Guy Schalnat0d580581995-07-20 02:43:20 -05001520
1521Much of this is very similar to reading. However, everything of
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001522importance is repeated here, so you won't have to constantly look
Guy Schalnat69b14481996-01-10 02:56:49 -06001523back up in the reading section to understand writing.
Guy Schalnat0d580581995-07-20 02:43:20 -05001524
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001525Setup
1526
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001527You will want to do the I/O initialization before you get into libpng,
Guy Schalnate5a37791996-06-05 15:50:50 -05001528so if it doesn't work, you don't have anything to undo. If you are not
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001529using the standard I/O functions, you will need to replace them with
Guy Schalnate5a37791996-06-05 15:50:50 -05001530custom writing functions. See the discussion under Customizing libpng.
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001531
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001532 FILE *fp = fopen(file_name, "wb");
1533 if (!fp)
1534 {
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001535 return (ERROR);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001536 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001537
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001538Next, png_struct and png_info need to be allocated and initialized.
Guy Schalnate5a37791996-06-05 15:50:50 -05001539As these can be both relatively large, you may not want to store these
1540on the stack, unless you have stack space to spare. Of course, you
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001541will want to check if they return NULL. If you are also reading,
1542you won't want to name your read structure and your write structure
1543both "png_ptr"; you can call them anything you like, such as
1544"read_ptr" and "write_ptr". Look at pngtest.c, for example.
Guy Schalnat0d580581995-07-20 02:43:20 -05001545
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001546 png_structp png_ptr = png_create_write_struct
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001547 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001548 user_error_fn, user_warning_fn);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001549 if (!png_ptr)
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001550 return (ERROR);
Guy Schalnate5a37791996-06-05 15:50:50 -05001551
1552 png_infop info_ptr = png_create_info_struct(png_ptr);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001553 if (!info_ptr)
1554 {
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001555 png_destroy_write_struct(&png_ptr,
1556 (png_infopp)NULL);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001557 return (ERROR);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001558 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001559
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001560If you want to use your own memory allocation routines,
1561define PNG_USER_MEM_SUPPORTED and use
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05001562png_create_write_struct_2() instead of png_create_write_struct():
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001563
1564 png_structp png_ptr = png_create_write_struct_2
1565 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
1566 user_error_fn, user_warning_fn, (png_voidp)
1567 user_mem_ptr, user_malloc_fn, user_free_fn);
1568
Guy Schalnat0d580581995-07-20 02:43:20 -05001569After you have these structures, you will need to set up the
1570error handling. When libpng encounters an error, it expects to
Guy Schalnate5a37791996-06-05 15:50:50 -05001571longjmp() back to your routine. Therefore, you will need to call
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001572setjmp() and pass the png_jmpbuf(png_ptr). If you
Guy Schalnat0d580581995-07-20 02:43:20 -05001573write the file from different routines, you will need to update
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001574the png_jmpbuf(png_ptr) every time you enter a new routine that will
1575call a png_*() function. See your documentation of setjmp/longjmp
Guy Schalnat6d764711995-12-19 03:22:19 -06001576for your compiler for more information on setjmp/longjmp. See
Guy Schalnat69b14481996-01-10 02:56:49 -06001577the discussion on libpng error handling in the Customizing Libpng
1578section below for more information on the libpng error handling.
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001579
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001580 if (setjmp(png_jmpbuf(png_ptr)))
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001581 {
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001582 png_destroy_write_struct(&png_ptr, &info_ptr);
1583 fclose(fp);
1584 return (ERROR);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001585 }
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001586 ...
1587 return;
Guy Schalnat0d580581995-07-20 02:43:20 -05001588
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001589If you would rather avoid the complexity of setjmp/longjmp issues,
1590you can compile libpng with PNG_SETJMP_NOT_SUPPORTED, in which case
1591errors will result in a call to PNG_ABORT() which defaults to abort().
1592
Andreas Dilger47a0c421997-05-16 02:46:07 -05001593Now you need to set up the output code. The default for libpng is to
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001594use the C function fwrite(). If you use this, you will need to pass a
1595valid FILE * in the function png_init_io(). Be sure that the file is
1596opened in binary mode. Again, if you wish to handle writing data in
1597another way, see the discussion on libpng I/O handling in the Customizing
1598Libpng section below.
Guy Schalnat0d580581995-07-20 02:43:20 -05001599
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001600 png_init_io(png_ptr, fp);
Guy Schalnat0d580581995-07-20 02:43:20 -05001601
Glenn Randers-Pehrsond60b8fa2006-04-20 21:31:14 -05001602If you are embedding your PNG into a datastream such as MNG, and don't
1603want libpng to write the 8-byte signature, or if you have already
1604written the signature in your application, use
1605
1606 png_set_sig_bytes(png_ptr, 8);
1607
1608to inform libpng that it should not write a signature.
1609
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001610Write callbacks
1611
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001612At this point, you can set up a callback function that will be
1613called after each row has been written, which you can use to control
1614a progress meter or the like. It's demonstrated in pngtest.c.
1615You must supply a function
1616
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001617 void write_row_callback(png_ptr, png_uint_32 row,
1618 int pass);
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001619 {
1620 /* put your code here */
1621 }
1622
1623(You can give it another name that you like instead of "write_row_callback")
1624
1625To inform libpng about your function, use
1626
1627 png_set_write_status_fn(png_ptr, write_row_callback);
1628
Guy Schalnate5a37791996-06-05 15:50:50 -05001629You now have the option of modifying how the compression library will
1630run. The following functions are mainly for testing, but may be useful
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001631in some cases, like if you need to write PNG files extremely fast and
Guy Schalnate5a37791996-06-05 15:50:50 -05001632are willing to give up some compression, or if you want to get the
1633maximum possible compression at the expense of slower writing. If you
1634have no special needs in this area, let the library do what it wants by
1635not calling this function at all, as it has been tuned to deliver a good
1636speed/compression ratio. The second parameter to png_set_filter() is
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -06001637the filter method, for which the only valid values are 0 (as of the
1638July 1999 PNG specification, version 1.2) or 64 (if you are writing
1639a PNG datastream that is to be embedded in a MNG datastream). The third
1640parameter is a flag that indicates which filter type(s) are to be tested
1641for each scanline. See the PNG specification for details on the specific filter
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001642types.
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001643
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001644
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001645 /* turn on or off filtering, and/or choose
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001646 specific filters. You can use either a single
1647 PNG_FILTER_VALUE_NAME or the logical OR of one
1648 or more PNG_FILTER_NAME masks. */
Guy Schalnate5a37791996-06-05 15:50:50 -05001649 png_set_filter(png_ptr, 0,
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001650 PNG_FILTER_NONE | PNG_FILTER_VALUE_NONE |
1651 PNG_FILTER_SUB | PNG_FILTER_VALUE_SUB |
1652 PNG_FILTER_UP | PNG_FILTER_VALUE_UP |
1653 PNG_FILTER_AVE | PNG_FILTER_VALUE_AVE |
1654 PNG_FILTER_PAETH | PNG_FILTER_VALUE_PAETH|
1655 PNG_ALL_FILTERS);
1656
1657If an application
1658wants to start and stop using particular filters during compression,
1659it should start out with all of the filters (to ensure that the previous
1660row of pixels will be stored in case it's needed later), and then add
1661and remove them after the start of compression.
Guy Schalnate5a37791996-06-05 15:50:50 -05001662
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -06001663If you are writing a PNG datastream that is to be embedded in a MNG
1664datastream, the second parameter can be either 0 or 64.
1665
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001666The png_set_compression_*() functions interface to the zlib compression
Guy Schalnate5a37791996-06-05 15:50:50 -05001667library, and should mostly be ignored unless you really know what you are
1668doing. The only generally useful call is png_set_compression_level()
1669which changes how much time zlib spends on trying to compress the image
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001670data. See the Compression Library (zlib.h and algorithm.txt, distributed
1671with zlib) for details on the compression levels.
Guy Schalnate5a37791996-06-05 15:50:50 -05001672
1673 /* set the zlib compression level */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001674 png_set_compression_level(png_ptr,
1675 Z_BEST_COMPRESSION);
Guy Schalnate5a37791996-06-05 15:50:50 -05001676
1677 /* set other zlib parameters */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001678 png_set_compression_mem_level(png_ptr, 8);
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001679 png_set_compression_strategy(png_ptr,
1680 Z_DEFAULT_STRATEGY);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001681 png_set_compression_window_bits(png_ptr, 15);
1682 png_set_compression_method(png_ptr, 8);
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001683 png_set_compression_buffer_size(png_ptr, 8192)
1684
1685extern PNG_EXPORT(void,png_set_zbuf_size)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001686
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001687Setting the contents of info for output
1688
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001689You now need to fill in the png_info structure with all the data you
1690wish to write before the actual image. Note that the only thing you
1691are allowed to write after the image is the text chunks and the time
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001692chunk (as of PNG Specification 1.2, anyway). See png_write_end() and
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001693the latest PNG specification for more information on that. If you
Guy Schalnate5a37791996-06-05 15:50:50 -05001694wish to write them before the image, fill them in now, and flag that
1695data as being valid. If you want to wait until after the data, don't
1696fill them until png_write_end(). For all the fields in png_info and
1697their data types, see png.h. For explanations of what the fields
1698contain, see the PNG specification.
Guy Schalnat69b14481996-01-10 02:56:49 -06001699
1700Some of the more important parts of the png_info are:
1701
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001702 png_set_IHDR(png_ptr, info_ptr, width, height,
1703 bit_depth, color_type, interlace_type,
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -06001704 compression_type, filter_method)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001705 width - holds the width of the image
1706 in pixels (up to 2^31).
1707 height - holds the height of the image
1708 in pixels (up to 2^31).
1709 bit_depth - holds the bit depth of one of the
1710 image channels.
1711 (valid values are 1, 2, 4, 8, 16
1712 and depend also on the
1713 color_type. See also significant
1714 bits (sBIT) below).
1715 color_type - describes which color/alpha
1716 channels are present.
1717 PNG_COLOR_TYPE_GRAY
1718 (bit depths 1, 2, 4, 8, 16)
1719 PNG_COLOR_TYPE_GRAY_ALPHA
1720 (bit depths 8, 16)
1721 PNG_COLOR_TYPE_PALETTE
1722 (bit depths 1, 2, 4, 8)
1723 PNG_COLOR_TYPE_RGB
1724 (bit_depths 8, 16)
1725 PNG_COLOR_TYPE_RGB_ALPHA
1726 (bit_depths 8, 16)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001727
1728 PNG_COLOR_MASK_PALETTE
1729 PNG_COLOR_MASK_COLOR
1730 PNG_COLOR_MASK_ALPHA
1731
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001732 interlace_type - PNG_INTERLACE_NONE or
1733 PNG_INTERLACE_ADAM7
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001734 compression_type - (must be
1735 PNG_COMPRESSION_TYPE_DEFAULT)
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -06001736 filter_method - (must be PNG_FILTER_TYPE_DEFAULT
1737 or, if you are writing a PNG to
1738 be embedded in a MNG datastream,
1739 can also be
1740 PNG_INTRAPIXEL_DIFFERENCING)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001741
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001742 png_set_PLTE(png_ptr, info_ptr, palette,
1743 num_palette);
1744 palette - the palette for the file
1745 (array of png_color)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001746 num_palette - number of entries in the palette
Andreas Dilger47a0c421997-05-16 02:46:07 -05001747
1748 png_set_gAMA(png_ptr, info_ptr, gamma);
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001749 gamma - the gamma the image was created
1750 at (PNG_INFO_gAMA)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001751
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001752 png_set_sRGB(png_ptr, info_ptr, srgb_intent);
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001753 srgb_intent - the rendering intent
1754 (PNG_INFO_sRGB) The presence of
1755 the sRGB chunk means that the pixel
1756 data is in the sRGB color space.
1757 This chunk also implies specific
1758 values of gAMA and cHRM. Rendering
1759 intent is the CSS-1 property that
1760 has been defined by the International
1761 Color Consortium
1762 (http://www.color.org).
1763 It can be one of
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001764 PNG_sRGB_INTENT_SATURATION,
1765 PNG_sRGB_INTENT_PERCEPTUAL,
1766 PNG_sRGB_INTENT_ABSOLUTE, or
1767 PNG_sRGB_INTENT_RELATIVE.
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001768
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001769
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001770 png_set_sRGB_gAMA_and_cHRM(png_ptr, info_ptr,
1771 srgb_intent);
1772 srgb_intent - the rendering intent
1773 (PNG_INFO_sRGB) The presence of the
1774 sRGB chunk means that the pixel
1775 data is in the sRGB color space.
1776 This function also causes gAMA and
1777 cHRM chunks with the specific values
1778 that are consistent with sRGB to be
1779 written.
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001780
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001781 png_set_iCCP(png_ptr, info_ptr, name, compression_type,
1782 profile, proflen);
1783 name - The profile name.
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001784 compression - The compression type; always
1785 PNG_COMPRESSION_TYPE_BASE for PNG 1.0.
1786 You may give NULL to this argument to
1787 ignore it.
1788 profile - International Color Consortium color
1789 profile data. May contain NULs.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001790 proflen - length of profile data in bytes.
1791
Andreas Dilger47a0c421997-05-16 02:46:07 -05001792 png_set_sBIT(png_ptr, info_ptr, sig_bit);
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001793 sig_bit - the number of significant bits for
1794 (PNG_INFO_sBIT) each of the gray, red,
1795 green, and blue channels, whichever are
1796 appropriate for the given color type
1797 (png_color_16)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001798
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001799 png_set_tRNS(png_ptr, info_ptr, trans, num_trans,
1800 trans_values);
1801 trans - array of transparent entries for
1802 palette (PNG_INFO_tRNS)
Glenn Randers-Pehrson3d5a5202000-07-01 15:37:28 -05001803 trans_values - graylevel or color sample values of
1804 the single transparent color for
1805 non-paletted images (PNG_INFO_tRNS)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001806 num_trans - number of transparent entries
1807 (PNG_INFO_tRNS)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001808
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001809 png_set_hIST(png_ptr, info_ptr, hist);
1810 (PNG_INFO_hIST)
1811 hist - histogram of palette (array of
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05001812 png_uint_16)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001813
1814 png_set_tIME(png_ptr, info_ptr, mod_time);
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001815 mod_time - time image was last modified
1816 (PNG_VALID_tIME)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001817
1818 png_set_bKGD(png_ptr, info_ptr, background);
Guy Schalnate5a37791996-06-05 15:50:50 -05001819 background - background color (PNG_VALID_bKGD)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001820
1821 png_set_text(png_ptr, info_ptr, text_ptr, num_text);
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001822 text_ptr - array of png_text holding image
1823 comments
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05001824 text_ptr[i].compression - type of compression used
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001825 on "text" PNG_TEXT_COMPRESSION_NONE
1826 PNG_TEXT_COMPRESSION_zTXt
1827 PNG_ITXT_COMPRESSION_NONE
1828 PNG_ITXT_COMPRESSION_zTXt
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05001829 text_ptr[i].key - keyword for comment. Must contain
1830 1-79 characters.
1831 text_ptr[i].text - text comments for current
1832 keyword. Can be NULL or empty.
1833 text_ptr[i].text_length - length of text string,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001834 after decompression, 0 for iTXt
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05001835 text_ptr[i].itxt_length - length of itxt string,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001836 after decompression, 0 for tEXt/zTXt
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05001837 text_ptr[i].lang - language of comment (NULL or
1838 empty for unknown).
1839 text_ptr[i].translated_keyword - keyword in UTF-8 (NULL
1840 or empty for unknown).
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001841 num_text - number of comments
Andreas Dilger47a0c421997-05-16 02:46:07 -05001842
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001843 png_set_sPLT(png_ptr, info_ptr, &palette_ptr,
1844 num_spalettes);
1845 palette_ptr - array of png_sPLT_struct structures
1846 to be added to the list of palettes
1847 in the info structure.
1848 num_spalettes - number of palette structures to be
1849 added.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001850
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001851 png_set_oFFs(png_ptr, info_ptr, offset_x, offset_y,
1852 unit_type);
1853 offset_x - positive offset from the left
1854 edge of the screen
1855 offset_y - positive offset from the top
1856 edge of the screen
1857 unit_type - PNG_OFFSET_PIXEL, PNG_OFFSET_MICROMETER
Andreas Dilger47a0c421997-05-16 02:46:07 -05001858
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001859 png_set_pHYs(png_ptr, info_ptr, res_x, res_y,
1860 unit_type);
1861 res_x - pixels/unit physical resolution
1862 in x direction
1863 res_y - pixels/unit physical resolution
1864 in y direction
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001865 unit_type - PNG_RESOLUTION_UNKNOWN,
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001866 PNG_RESOLUTION_METER
Guy Schalnat0d580581995-07-20 02:43:20 -05001867
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001868 png_set_sCAL(png_ptr, info_ptr, unit, width, height)
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05001869 unit - physical scale units (an integer)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001870 width - width of a pixel in physical scale units
1871 height - height of a pixel in physical scale units
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05001872 (width and height are doubles)
1873
1874 png_set_sCAL_s(png_ptr, info_ptr, unit, width, height)
1875 unit - physical scale units (an integer)
1876 width - width of a pixel in physical scale units
1877 height - height of a pixel in physical scale units
1878 (width and height are strings like "2.54")
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001879
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001880 png_set_unknown_chunks(png_ptr, info_ptr, &unknowns,
1881 num_unknowns)
1882 unknowns - array of png_unknown_chunk
1883 structures holding unknown chunks
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001884 unknowns[i].name - name of unknown chunk
1885 unknowns[i].data - data of unknown chunk
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05001886 unknowns[i].size - size of unknown chunk's data
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001887 unknowns[i].location - position to write chunk in file
1888 0: do not write chunk
1889 PNG_HAVE_IHDR: before PLTE
1890 PNG_HAVE_PLTE: before IDAT
1891 PNG_AFTER_IDAT: after IDAT
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001892
1893The "location" member is set automatically according to
1894what part of the output file has already been written.
1895You can change its value after calling png_set_unknown_chunks()
1896as demonstrated in pngtest.c. Within each of the "locations",
1897the chunks are sequenced according to their position in the
1898structure (that is, the value of "i", which is the order in which
1899the chunk was either read from the input file or defined with
1900png_set_unknown_chunks).
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001901
Guy Schalnat0d580581995-07-20 02:43:20 -05001902A quick word about text and num_text. text is an array of png_text
1903structures. num_text is the number of valid structures in the array.
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001904Each png_text structure holds a language code, a keyword, a text value,
1905and a compression type.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001906
Guy Schalnat0d580581995-07-20 02:43:20 -05001907The compression types have the same valid numbers as the compression
1908types of the image data. Currently, the only valid number is zero.
1909However, you can store text either compressed or uncompressed, unlike
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001910images, which always have to be compressed. So if you don't want the
Andreas Dilger47a0c421997-05-16 02:46:07 -05001911text compressed, set the compression type to PNG_TEXT_COMPRESSION_NONE.
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001912Because tEXt and zTXt chunks don't have a language field, if you
1913specify PNG_TEXT_COMPRESSION_NONE or PNG_TEXT_COMPRESSION_zTXt
1914any language code or translated keyword will not be written out.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001915
Andreas Dilger47a0c421997-05-16 02:46:07 -05001916Until text gets around 1000 bytes, it is not worth compressing it.
1917After the text has been written out to the file, the compression type
1918is set to PNG_TEXT_COMPRESSION_NONE_WR or PNG_TEXT_COMPRESSION_zTXt_WR,
1919so that it isn't written out again at the end (in case you are calling
1920png_write_end() with the same struct.
Guy Schalnate5a37791996-06-05 15:50:50 -05001921
1922The keywords that are given in the PNG Specification are:
1923
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001924 Title Short (one line) title or
1925 caption for image
1926 Author Name of image's creator
1927 Description Description of image (possibly long)
1928 Copyright Copyright notice
1929 Creation Time Time of original image creation
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001930 (usually RFC 1123 format, see below)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001931 Software Software used to create the image
1932 Disclaimer Legal disclaimer
1933 Warning Warning of nature of content
1934 Source Device used to create the image
1935 Comment Miscellaneous comment; conversion
1936 from other image format
Guy Schalnat0d580581995-07-20 02:43:20 -05001937
1938The keyword-text pairs work like this. Keywords should be short
1939simple descriptions of what the comment is about. Some typical
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001940keywords are found in the PNG specification, as is some recommendations
Guy Schalnat0d580581995-07-20 02:43:20 -05001941on keywords. You can repeat keywords in a file. You can even write
1942some text before the image and some after. For example, you may want
1943to put a description of the image before the image, but leave the
1944disclaimer until after, so viewers working over modem connections
1945don't have to wait for the disclaimer to go over the modem before
1946they start seeing the image. Finally, keywords should be full
Guy Schalnate5a37791996-06-05 15:50:50 -05001947words, not abbreviations. Keywords and text are in the ISO 8859-1
1948(Latin-1) character set (a superset of regular ASCII) and can not
1949contain NUL characters, and should not contain control or other
1950unprintable characters. To make the comments widely readable, stick
1951with basic ASCII, and avoid machine specific character set extensions
1952like the IBM-PC character set. The keyword must be present, but
Guy Schalnat0d580581995-07-20 02:43:20 -05001953you can leave off the text string on non-compressed pairs.
1954Compressed pairs must have a text string, as only the text string
1955is compressed anyway, so the compression would be meaningless.
1956
Guy Schalnat6d764711995-12-19 03:22:19 -06001957PNG supports modification time via the png_time structure. Two
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001958conversion routines are provided, png_convert_from_time_t() for
Guy Schalnat0d580581995-07-20 02:43:20 -05001959time_t and png_convert_from_struct_tm() for struct tm. The
1960time_t routine uses gmtime(). You don't have to use either of
1961these, but if you wish to fill in the png_time structure directly,
1962you should provide the time in universal time (GMT) if possible
Guy Schalnat69b14481996-01-10 02:56:49 -06001963instead of your local time. Note that the year number is the full
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001964year (e.g. 1998, rather than 98 - PNG is year 2000 compliant!), and
Andreas Dilger47a0c421997-05-16 02:46:07 -05001965that months start with 1.
Guy Schalnat0d580581995-07-20 02:43:20 -05001966
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001967If you want to store the time of the original image creation, you should
1968use a plain tEXt chunk with the "Creation Time" keyword. This is
1969necessary because the "creation time" of a PNG image is somewhat vague,
1970depending on whether you mean the PNG file, the time the image was
1971created in a non-PNG format, a still photo from which the image was
1972scanned, or possibly the subject matter itself. In order to facilitate
1973machine-readable dates, it is recommended that the "Creation Time"
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001974tEXt chunk use RFC 1123 format dates (e.g. "22 May 1997 18:07:10 GMT"),
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001975although this isn't a requirement. Unlike the tIME chunk, the
1976"Creation Time" tEXt chunk is not expected to be automatically changed
1977by the software. To facilitate the use of RFC 1123 dates, a function
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001978png_convert_to_rfc1123(png_timep) is provided to convert from PNG
1979time to an RFC 1123 format string.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001980
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001981Writing unknown chunks
1982
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001983You can use the png_set_unknown_chunks function to queue up chunks
1984for writing. You give it a chunk name, raw data, and a size; that's
1985all there is to it. The chunks will be written by the next following
1986png_write_info_before_PLTE, png_write_info, or png_write_end function.
1987Any chunks previously read into the info structure's unknown-chunk
1988list will also be written out in a sequence that satisfies the PNG
1989specification's ordering rules.
1990
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001991The high-level write interface
1992
1993At this point there are two ways to proceed; through the high-level
1994write interface, or through a sequence of low-level write operations.
1995You can use the high-level interface if your image data is present
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -05001996in the info structure. All defined output
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001997transformations are permitted, enabled by the following masks.
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001998
1999 PNG_TRANSFORM_IDENTITY No transformation
2000 PNG_TRANSFORM_PACKING Pack 1, 2 and 4-bit samples
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06002001 PNG_TRANSFORM_PACKSWAP Change order of packed
2002 pixels to LSB first
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002003 PNG_TRANSFORM_INVERT_MONO Invert monochrome images
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06002004 PNG_TRANSFORM_SHIFT Normalize pixels to the
2005 sBIT depth
2006 PNG_TRANSFORM_BGR Flip RGB to BGR, RGBA
2007 to BGRA
2008 PNG_TRANSFORM_SWAP_ALPHA Flip RGBA to ARGB or GA
2009 to AG
2010 PNG_TRANSFORM_INVERT_ALPHA Change alpha from opacity
2011 to transparency
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002012 PNG_TRANSFORM_SWAP_ENDIAN Byte-swap 16-bit samples
2013 PNG_TRANSFORM_STRIP_FILLER Strip out filler bytes.
2014
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05002015If you have valid image data in the info structure (you can use
2016png_set_rows() to put image data in the info structure), simply do this:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002017
2018 png_write_png(png_ptr, info_ptr, png_transforms, NULL)
2019
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002020where png_transforms is an integer containing the logical OR of some set of
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002021transformation flags. This call is equivalent to png_write_info(),
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002022followed the set of transformations indicated by the transform mask,
2023then png_write_image(), and finally png_write_end().
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002024
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002025(The final parameter of this call is not yet used. Someday it might point
2026to transformation parameters required by some future output transform.)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002027
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -05002028You must use png_transforms and not call any png_set_transform() functions
2029when you use png_write_png().
2030
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002031The low-level write interface
2032
2033If you are going the low-level route instead, you are now ready to
2034write all the file information up to the actual image data. You do
2035this with a call to png_write_info().
Guy Schalnat0d580581995-07-20 02:43:20 -05002036
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002037 png_write_info(png_ptr, info_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002038
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002039Note that there is one transformation you may need to do before
2040png_write_info(). In PNG files, the alpha channel in an image is the
2041level of opacity. If your data is supplied as a level of
2042transparency, you can invert the alpha channel before you write it, so
2043that 0 is fully transparent and 255 (in 8-bit or paletted images) or
204465535 (in 16-bit images) is fully opaque, with
2045
2046 png_set_invert_alpha(png_ptr);
2047
2048This must appear before png_write_info() instead of later with the
2049other transformations because in the case of paletted images the tRNS
2050chunk data has to be inverted before the tRNS chunk is written. If
2051your image is not a paletted image, the tRNS data (which in such cases
2052represents a single color to be rendered as transparent) won't need to
2053be changed, and you can safely do this transformation after your
2054png_write_info() call.
2055
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06002056If you need to write a private chunk that you want to appear before
2057the PLTE chunk when PLTE is present, you can write the PNG info in
2058two steps, and insert code to write your own chunk between them:
2059
2060 png_write_info_before_PLTE(png_ptr, info_ptr);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002061 png_set_unknown_chunks(png_ptr, info_ptr, ...);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06002062 png_write_info(png_ptr, info_ptr);
2063
Guy Schalnate5a37791996-06-05 15:50:50 -05002064After you've written the file information, you can set up the library
2065to handle any special transformations of the image data. The various
Guy Schalnat0d580581995-07-20 02:43:20 -05002066ways to transform the data will be described in the order that they
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002067should occur. This is important, as some of these change the color
2068type and/or bit depth of the data, and some others only work on
2069certain color types and bit depths. Even though each transformation
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06002070checks to see if it has data that it can do something with, you should
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002071make sure to only enable a transformation if it will be valid for the
2072data. For example, don't swap red and blue on grayscale data.
Guy Schalnat0d580581995-07-20 02:43:20 -05002073
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002074PNG files store RGB pixels packed into 3 or 6 bytes. This code tells
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -06002075the library to strip input data that has 4 or 8 bytes per pixel down
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06002076to 3 or 6 bytes (or strip 2 or 4-byte grayscale+filler data to 1 or 2
2077bytes per pixel).
Guy Schalnat0d580581995-07-20 02:43:20 -05002078
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002079 png_set_filler(png_ptr, 0, PNG_FILLER_BEFORE);
Guy Schalnat0d580581995-07-20 02:43:20 -05002080
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06002081where the 0 is unused, and the location is either PNG_FILLER_BEFORE or
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05002082PNG_FILLER_AFTER, depending upon whether the filler byte in the pixel
2083is stored XRGB or RGBX.
Guy Schalnat0d580581995-07-20 02:43:20 -05002084
2085PNG files pack pixels of bit depths 1, 2, and 4 into bytes as small as
2086they can, resulting in, for example, 8 pixels per byte for 1 bit files.
Guy Schalnat69b14481996-01-10 02:56:49 -06002087If the data is supplied at 1 pixel per byte, use this code, which will
Guy Schalnate5a37791996-06-05 15:50:50 -05002088correctly pack the pixels into a single byte:
Guy Schalnat0d580581995-07-20 02:43:20 -05002089
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002090 png_set_packing(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002091
2092PNG files reduce possible bit depths to 1, 2, 4, 8, and 16. If your
Guy Schalnate5a37791996-06-05 15:50:50 -05002093data is of another bit depth, you can write an sBIT chunk into the
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05002094file so that decoders can recover the original data if desired.
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002095
Guy Schalnate5a37791996-06-05 15:50:50 -05002096 /* Set the true bit depth of the image data */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002097 if (color_type & PNG_COLOR_MASK_COLOR)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002098 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05002099 sig_bit.red = true_bit_depth;
2100 sig_bit.green = true_bit_depth;
2101 sig_bit.blue = true_bit_depth;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002102 }
2103 else
2104 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05002105 sig_bit.gray = true_bit_depth;
2106 }
2107 if (color_type & PNG_COLOR_MASK_ALPHA)
2108 {
2109 sig_bit.alpha = true_bit_depth;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002110 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002111
Andreas Dilger47a0c421997-05-16 02:46:07 -05002112 png_set_sBIT(png_ptr, info_ptr, &sig_bit);
Guy Schalnat0d580581995-07-20 02:43:20 -05002113
Guy Schalnate5a37791996-06-05 15:50:50 -05002114If the data is stored in the row buffer in a bit depth other than
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06002115one supported by PNG (e.g. 3 bit data in the range 0-7 for a 4-bit PNG),
Guy Schalnate5a37791996-06-05 15:50:50 -05002116this will scale the values to appear to be the correct bit depth as
2117is required by PNG.
2118
Andreas Dilger47a0c421997-05-16 02:46:07 -05002119 png_set_shift(png_ptr, &sig_bit);
Guy Schalnat0d580581995-07-20 02:43:20 -05002120
Guy Schalnat69b14481996-01-10 02:56:49 -06002121PNG files store 16 bit pixels in network byte order (big-endian,
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002122ie. most significant bits first). This code would be used if they are
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06002123supplied the other way (little-endian, i.e. least significant bits
2124first, the way PCs store them):
Guy Schalnat0d580581995-07-20 02:43:20 -05002125
Andreas Dilger47a0c421997-05-16 02:46:07 -05002126 if (bit_depth > 8)
2127 png_set_swap(png_ptr);
2128
2129If you are using packed-pixel images (1, 2, or 4 bits/pixel), and you
2130need to change the order the pixels are packed into bytes, you can use:
2131
2132 if (bit_depth < 8)
2133 png_set_packswap(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002134
Guy Schalnat69b14481996-01-10 02:56:49 -06002135PNG files store 3 color pixels in red, green, blue order. This code
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002136would be used if they are supplied as blue, green, red:
Guy Schalnat0d580581995-07-20 02:43:20 -05002137
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002138 png_set_bgr(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002139
Guy Schalnat69b14481996-01-10 02:56:49 -06002140PNG files describe monochrome as black being zero and white being
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002141one. This code would be used if the pixels are supplied with this reversed
Guy Schalnat69b14481996-01-10 02:56:49 -06002142(black being one and white being zero):
Guy Schalnat0d580581995-07-20 02:43:20 -05002143
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06002144 png_set_invert_mono(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002145
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06002146Finally, you can write your own transformation function if none of
2147the existing ones meets your needs. This is done by setting a callback
2148with
2149
2150 png_set_write_user_transform_fn(png_ptr,
2151 write_transform_fn);
2152
2153You must supply the function
2154
2155 void write_transform_fn(png_ptr ptr, row_info_ptr
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002156 row_info, png_bytep data)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06002157
2158See pngtest.c for a working example. Your function will be called
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05002159before any of the other transformations are processed.
2160
2161You can also set up a pointer to a user structure for use by your
2162callback function.
2163
2164 png_set_user_transform_info(png_ptr, user_ptr, 0, 0);
2165
2166The user_channels and user_depth parameters of this function are ignored
2167when writing; you can set them to zero as shown.
2168
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05002169You can retrieve the pointer via the function png_get_user_transform_ptr().
2170For example:
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05002171
2172 voidp write_user_transform_ptr =
2173 png_get_user_transform_ptr(png_ptr);
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06002174
Guy Schalnate5a37791996-06-05 15:50:50 -05002175It is possible to have libpng flush any pending output, either manually,
2176or automatically after a certain number of lines have been written. To
2177flush the output stream a single time call:
2178
2179 png_write_flush(png_ptr);
2180
2181and to have libpng flush the output stream periodically after a certain
2182number of scanlines have been written, call:
2183
2184 png_set_flush(png_ptr, nrows);
2185
2186Note that the distance between rows is from the last time png_write_flush()
2187was called, or the first row of the image if it has never been called.
2188So if you write 50 lines, and then png_set_flush 25, it will flush the
2189output on the next scanline, and every 25 lines thereafter, unless
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06002190png_write_flush() is called before 25 more lines have been written.
Guy Schalnate5a37791996-06-05 15:50:50 -05002191If nrows is too small (less than about 10 lines for a 640 pixel wide
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06002192RGB image) the image compression may decrease noticeably (although this
Guy Schalnate5a37791996-06-05 15:50:50 -05002193may be acceptable for real-time applications). Infrequent flushing will
2194only degrade the compression performance by a few percent over images
2195that do not use flushing.
2196
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002197Writing the image data
2198
Guy Schalnat0d580581995-07-20 02:43:20 -05002199That's it for the transformations. Now you can write the image data.
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06002200The simplest way to do this is in one function call. If you have the
Guy Schalnat0d580581995-07-20 02:43:20 -05002201whole image in memory, you can just call png_write_image() and libpng
2202will write the image. You will need to pass in an array of pointers to
2203each row. This function automatically handles interlacing, so you don't
2204need to call png_set_interlace_handling() or call this function multiple
2205times, or any of that other stuff necessary with png_write_rows().
2206
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002207 png_write_image(png_ptr, row_pointers);
Guy Schalnat0d580581995-07-20 02:43:20 -05002208
2209where row_pointers is:
2210
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002211 png_byte *row_pointers[height];
Guy Schalnat0d580581995-07-20 02:43:20 -05002212
2213You can point to void or char or whatever you use for pixels.
2214
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002215If you don't want to write the whole image at once, you can
Guy Schalnat0d580581995-07-20 02:43:20 -05002216use png_write_rows() instead. If the file is not interlaced,
2217this is simple:
2218
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06002219 png_write_rows(png_ptr, row_pointers,
2220 number_of_rows);
Guy Schalnat0d580581995-07-20 02:43:20 -05002221
2222row_pointers is the same as in the png_write_image() call.
2223
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002224If you are just writing one row at a time, you can do this with
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06002225a single row_pointer instead of an array of row_pointers:
Guy Schalnat0d580581995-07-20 02:43:20 -05002226
Guy Schalnate5a37791996-06-05 15:50:50 -05002227 png_bytep row_pointer = row;
Guy Schalnat0d580581995-07-20 02:43:20 -05002228
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06002229 png_write_row(png_ptr, row_pointer);
Guy Schalnat0d580581995-07-20 02:43:20 -05002230
Guy Schalnat69b14481996-01-10 02:56:49 -06002231When the file is interlaced, things can get a good deal more
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05002232complicated. The only currently (as of the PNG Specification
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05002233version 1.2, dated July 1999) defined interlacing scheme for PNG files
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06002234is the "Adam7" interlace scheme, that breaks down an
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002235image into seven smaller images of varying size. libpng will build
2236these images for you, or you can do them yourself. If you want to
2237build them yourself, see the PNG specification for details of which
2238pixels to write when.
Guy Schalnat0d580581995-07-20 02:43:20 -05002239
2240If you don't want libpng to handle the interlacing details, just
Guy Schalnate5a37791996-06-05 15:50:50 -05002241use png_set_interlace_handling() and call png_write_rows() the
2242correct number of times to write all seven sub-images.
Guy Schalnat0d580581995-07-20 02:43:20 -05002243
Guy Schalnat69b14481996-01-10 02:56:49 -06002244If you want libpng to build the sub-images, call this before you start
2245writing any rows:
Guy Schalnat0d580581995-07-20 02:43:20 -05002246
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06002247 number_of_passes =
2248 png_set_interlace_handling(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002249
2250This will return the number of passes needed. Currently, this
2251is seven, but may change if another interlace type is added.
2252
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002253Then write the complete image number_of_passes times.
Guy Schalnat0d580581995-07-20 02:43:20 -05002254
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06002255 png_write_rows(png_ptr, row_pointers,
2256 number_of_rows);
Guy Schalnat0d580581995-07-20 02:43:20 -05002257
2258As some of these rows are not used, and thus return immediately,
2259you may want to read about interlacing in the PNG specification,
2260and only update the rows that are actually used.
2261
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002262Finishing a sequential write
2263
Guy Schalnat0d580581995-07-20 02:43:20 -05002264After you are finished writing the image, you should finish writing
2265the file. If you are interested in writing comments or time, you should
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06002266pass an appropriately filled png_info pointer. If you are not interested,
2267you can pass NULL.
Guy Schalnat0d580581995-07-20 02:43:20 -05002268
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002269 png_write_end(png_ptr, info_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002270
2271When you are done, you can free all memory used by libpng like this:
2272
Guy Schalnate5a37791996-06-05 15:50:50 -05002273 png_destroy_write_struct(&png_ptr, &info_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002274
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002275It is also possible to individually free the info_ptr members that
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05002276point to libpng-allocated storage with the following function:
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002277
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06002278 png_free_data(png_ptr, info_ptr, mask, seq)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05002279 mask - identifies data to be freed, a mask
2280 containing the logical OR of one or
2281 more of
2282 PNG_FREE_PLTE, PNG_FREE_TRNS,
2283 PNG_FREE_HIST, PNG_FREE_ICCP,
2284 PNG_FREE_PCAL, PNG_FREE_ROWS,
2285 PNG_FREE_SCAL, PNG_FREE_SPLT,
2286 PNG_FREE_TEXT, PNG_FREE_UNKN,
2287 or simply PNG_FREE_ALL
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06002288 seq - sequence number of item to be freed
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05002289 (-1 for all items)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002290
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05002291This function may be safely called when the relevant storage has
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002292already been freed, or has not yet been allocated, or was allocated
2293by the user and not by libpng, and will in those
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06002294cases do nothing. The "seq" parameter is ignored if only one item
2295of the selected data type, such as PLTE, is allowed. If "seq" is not
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -06002296-1, and multiple items are allowed for the data type identified in
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06002297the mask, such as text or sPLT, only the n'th item in the structure
2298is freed, where n is "seq".
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002299
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002300If you allocated data such as a palette that you passed
2301in to libpng with png_set_*, you must not free it until just before the call to
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06002302png_destroy_write_struct().
Guy Schalnat0d580581995-07-20 02:43:20 -05002303
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -05002304The default behavior is only to free data that was allocated internally
2305by libpng. This can be changed, so that libpng will not free the data,
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002306or so that it will free data that was allocated by the user with png_malloc()
2307or png_zalloc() and passed in via a png_set_*() function, with
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -05002308
2309 png_data_freer(png_ptr, info_ptr, freer, mask)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05002310 mask - which data elements are affected
2311 same choices as in png_free_data()
2312 freer - one of
2313 PNG_DESTROY_WILL_FREE_DATA
2314 PNG_SET_WILL_FREE_DATA
2315 PNG_USER_WILL_FREE_DATA
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -05002316
2317For example, to transfer responsibility for some data from a read structure
2318to a write structure, you could use
2319
2320 png_data_freer(read_ptr, read_info_ptr,
2321 PNG_USER_WILL_FREE_DATA,
2322 PNG_FREE_PLTE|PNG_FREE_tRNS|PNG_FREE_hIST)
2323 png_data_freer(write_ptr, write_info_ptr,
2324 PNG_DESTROY_WILL_FREE_DATA,
2325 PNG_FREE_PLTE|PNG_FREE_tRNS|PNG_FREE_hIST)
2326
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05002327thereby briefly reassigning responsibility for freeing to the user but
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -05002328immediately afterwards reassigning it once more to the write_destroy
2329function. Having done this, it would then be safe to destroy the read
2330structure and continue to use the PLTE, tRNS, and hIST data in the write
2331structure.
2332
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002333This function only affects data that has already been allocated.
2334You can call this function before calling after the png_set_*() functions
2335to control whether the user or png_destroy_*() is supposed to free the data.
2336When the user assumes responsibility for libpng-allocated data, the
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05002337application must use
2338png_free() to free it, and when the user transfers responsibility to libpng
2339for data that the user has allocated, the user must have used png_malloc()
2340or png_zalloc() to allocate it.
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002341
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05002342If you allocated text_ptr.text, text_ptr.lang, and text_ptr.translated_keyword
2343separately, do not transfer responsibility for freeing text_ptr to libpng,
2344because when libpng fills a png_text structure it combines these members with
2345the key member, and png_free_data() will free only text_ptr.key. Similarly,
2346if you transfer responsibility for free'ing text_ptr from libpng to your
2347application, your application must not separately free those members.
Guy Schalnate5a37791996-06-05 15:50:50 -05002348For a more compact example of writing a PNG image, see the file example.c.
Guy Schalnat0d580581995-07-20 02:43:20 -05002349
Guy Schalnat69b14481996-01-10 02:56:49 -06002350V. Modifying/Customizing libpng:
Guy Schalnat0d580581995-07-20 02:43:20 -05002351
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -06002352There are three issues here. The first is changing how libpng does
Guy Schalnat0d580581995-07-20 02:43:20 -05002353standard things like memory allocation, input/output, and error handling.
2354The second deals with more complicated things like adding new chunks,
2355adding new transformations, and generally changing how libpng works.
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -06002356Both of those are compile-time issues; that is, they are generally
2357determined at the time the code is written, and there is rarely a need
2358to provide the user with a means of changing them. The third is a
2359run-time issue: choosing between and/or tuning one or more alternate
2360versions of computationally intensive routines; specifically, optimized
2361assembly-language (and therefore compiler- and platform-dependent)
2362versions.
2363
2364Memory allocation, input/output, and error handling
Guy Schalnat0d580581995-07-20 02:43:20 -05002365
Andreas Dilger47a0c421997-05-16 02:46:07 -05002366All of the memory allocation, input/output, and error handling in libpng
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -06002367goes through callbacks that are user-settable. The default routines are
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05002368in pngmem.c, pngrio.c, pngwio.c, and pngerror.c, respectively. To change
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06002369these functions, call the appropriate png_set_*_fn() function.
Guy Schalnat0d580581995-07-20 02:43:20 -05002370
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -05002371Memory allocation is done through the functions png_malloc()
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002372and png_free(). These currently just call the standard C functions. If
Andreas Dilger47a0c421997-05-16 02:46:07 -05002373your pointers can't access more then 64K at a time, you will want to set
2374MAXSEG_64K in zlib.h. Since it is unlikely that the method of handling
2375memory allocation on a platform will change between applications, these
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002376functions must be modified in the library at compile time. If you prefer
2377to use a different method of allocating and freeing data, you can use
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -05002378png_create_read_struct_2() or png_create_write_struct_2() to register
2379your own functions as described above.
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -05002380These functions also provide a void pointer that can be retrieved via
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002381
2382 mem_ptr=png_get_mem_ptr(png_ptr);
2383
2384Your replacement memory functions must have prototypes as follows:
2385
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06002386 png_voidp malloc_fn(png_structp png_ptr,
Glenn Randers-Pehrsonae498dc2001-11-24 14:53:31 -06002387 png_size_t size);
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002388 void free_fn(png_structp png_ptr, png_voidp ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002389
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -05002390Your malloc_fn() must return NULL in case of failure. The png_malloc()
2391function will normally call png_error() if it receives a NULL from the
2392system memory allocator or from your replacement malloc_fn().
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05002393
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002394Input/Output in libpng is done through png_read() and png_write(),
Andreas Dilger47a0c421997-05-16 02:46:07 -05002395which currently just call fread() and fwrite(). The FILE * is stored in
2396png_struct and is initialized via png_init_io(). If you wish to change
2397the method of I/O, the library supplies callbacks that you can set
2398through the function png_set_read_fn() and png_set_write_fn() at run
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002399time, instead of calling the png_init_io() function. These functions
Andreas Dilger47a0c421997-05-16 02:46:07 -05002400also provide a void pointer that can be retrieved via the function
Guy Schalnat6d764711995-12-19 03:22:19 -06002401png_get_io_ptr(). For example:
Guy Schalnat0d580581995-07-20 02:43:20 -05002402
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05002403 png_set_read_fn(png_structp read_ptr,
2404 voidp read_io_ptr, png_rw_ptr read_data_fn)
Guy Schalnat0f716451995-11-28 11:22:13 -06002405
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05002406 png_set_write_fn(png_structp write_ptr,
2407 voidp write_io_ptr, png_rw_ptr write_data_fn,
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06002408 png_flush_ptr output_flush_fn);
Guy Schalnat0f716451995-11-28 11:22:13 -06002409
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05002410 voidp read_io_ptr = png_get_io_ptr(read_ptr);
2411 voidp write_io_ptr = png_get_io_ptr(write_ptr);
Guy Schalnat6d764711995-12-19 03:22:19 -06002412
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002413The replacement I/O functions must have prototypes as follows:
Guy Schalnat69b14481996-01-10 02:56:49 -06002414
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06002415 void user_read_data(png_structp png_ptr,
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -05002416 png_bytep data, png_size_t length);
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06002417 void user_write_data(png_structp png_ptr,
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -05002418 png_bytep data, png_size_t length);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002419 void user_flush_data(png_structp png_ptr);
Guy Schalnat69b14481996-01-10 02:56:49 -06002420
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002421Supplying NULL for the read, write, or flush functions sets them back
2422to using the default C stream functions. It is an error to read from
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002423a write stream, and vice versa.
Guy Schalnat6d764711995-12-19 03:22:19 -06002424
2425Error handling in libpng is done through png_error() and png_warning().
2426Errors handled through png_error() are fatal, meaning that png_error()
Andreas Dilger47a0c421997-05-16 02:46:07 -05002427should never return to its caller. Currently, this is handled via
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002428setjmp() and longjmp() (unless you have compiled libpng with
2429PNG_SETJMP_NOT_SUPPORTED, in which case it is handled via PNG_ABORT()),
2430but you could change this to do things like exit() if you should wish.
2431
2432On non-fatal errors, png_warning() is called
Guy Schalnat69b14481996-01-10 02:56:49 -06002433to print a warning message, and then control returns to the calling code.
Guy Schalnate5a37791996-06-05 15:50:50 -05002434By default png_error() and png_warning() print a message on stderr via
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -05002435fprintf() unless the library is compiled with PNG_NO_CONSOLE_IO defined
2436(because you don't want the messages) or PNG_NO_STDIO defined (because
2437fprintf() isn't available). If you wish to change the behavior of the error
2438functions, you will need to set up your own message callbacks. These
2439functions are normally supplied at the time that the png_struct is created.
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05002440It is also possible to redirect errors and warnings to your own replacement
2441functions after png_create_*_struct() has been called by calling:
Guy Schalnat69b14481996-01-10 02:56:49 -06002442
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06002443 png_set_error_fn(png_structp png_ptr,
2444 png_voidp error_ptr, png_error_ptr error_fn,
2445 png_error_ptr warning_fn);
Guy Schalnat69b14481996-01-10 02:56:49 -06002446
Guy Schalnate5a37791996-06-05 15:50:50 -05002447 png_voidp error_ptr = png_get_error_ptr(png_ptr);
Guy Schalnat69b14481996-01-10 02:56:49 -06002448
Guy Schalnate5a37791996-06-05 15:50:50 -05002449If NULL is supplied for either error_fn or warning_fn, then the libpng
2450default function will be used, calling fprintf() and/or longjmp() if a
2451problem is encountered. The replacement error functions should have
2452parameters as follows:
Guy Schalnat69b14481996-01-10 02:56:49 -06002453
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06002454 void user_error_fn(png_structp png_ptr,
2455 png_const_charp error_msg);
2456 void user_warning_fn(png_structp png_ptr,
2457 png_const_charp warning_msg);
Guy Schalnat69b14481996-01-10 02:56:49 -06002458
2459The motivation behind using setjmp() and longjmp() is the C++ throw and
2460catch exception handling methods. This makes the code much easier to write,
2461as there is no need to check every return code of every function call.
2462However, there are some uncertainties about the status of local variables
2463after a longjmp, so the user may want to be careful about doing anything after
Andreas Dilger47a0c421997-05-16 02:46:07 -05002464setjmp returns non-zero besides returning itself. Consult your compiler
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05002465documentation for more details. For an alternative approach, you may wish
2466to use the "cexcept" facility (see http://cexcept.sourceforge.net).
Guy Schalnat0f716451995-11-28 11:22:13 -06002467
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002468Custom chunks
2469
2470If you need to read or write custom chunks, you may need to get deeper
2471into the libpng code. The library now has mechanisms for storing
2472and writing chunks of unknown type; you can even declare callbacks
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -06002473for custom chunks. However, this may not be good enough if the
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002474library code itself needs to know about interactions between your
2475chunk and existing `intrinsic' chunks.
2476
2477If you need to write a new intrinsic chunk, first read the PNG
2478specification. Acquire a first level of
2479understanding of how it works. Pay particular attention to the
2480sections that describe chunk names, and look at how other chunks were
2481designed, so you can do things similarly. Second, check out the
2482sections of libpng that read and write chunks. Try to find a chunk
2483that is similar to yours and use it as a template. More details can
2484be found in the comments inside the code. It is best to handle unknown
2485chunks in a generic method, via callback functions, instead of by
2486modifying libpng functions.
Guy Schalnat0d580581995-07-20 02:43:20 -05002487
Guy Schalnate5a37791996-06-05 15:50:50 -05002488If you wish to write your own transformation for the data, look through
2489the part of the code that does the transformations, and check out some of
2490the simpler ones to get an idea of how they work. Try to find a similar
2491transformation to the one you want to add and copy off of it. More details
2492can be found in the comments inside the code itself.
Guy Schalnat0d580581995-07-20 02:43:20 -05002493
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002494Configuring for 16 bit platforms
Guy Schalnat0d580581995-07-20 02:43:20 -05002495
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05002496You will want to look into zconf.h to tell zlib (and thus libpng) that
Guy Schalnate5a37791996-06-05 15:50:50 -05002497it cannot allocate more then 64K at a time. Even if you can, the memory
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06002498won't be accessible. So limit zlib and libpng to 64K by defining MAXSEG_64K.
Guy Schalnat0d580581995-07-20 02:43:20 -05002499
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002500Configuring for DOS
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002501
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002502For DOS users who only have access to the lower 640K, you will
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002503have to limit zlib's memory usage via a png_set_compression_mem_level()
2504call. See zlib.h or zconf.h in the zlib library for more information.
2505
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002506Configuring for Medium Model
Guy Schalnat6d764711995-12-19 03:22:19 -06002507
2508Libpng's support for medium model has been tested on most of the popular
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002509compilers. Make sure MAXSEG_64K gets defined, USE_FAR_KEYWORD gets
Guy Schalnat69b14481996-01-10 02:56:49 -06002510defined, and FAR gets defined to far in pngconf.h, and you should be
Guy Schalnat6d764711995-12-19 03:22:19 -06002511all set. Everything in the library (except for zlib's structure) is
2512expecting far data. You must use the typedefs with the p or pp on
2513the end for pointers (or at least look at them and be careful). Make
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002514note that the rows of data are defined as png_bytepp, which is an
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002515unsigned char far * far *.
Guy Schalnat6d764711995-12-19 03:22:19 -06002516
Guy Schalnat0d580581995-07-20 02:43:20 -05002517Configuring for gui/windowing platforms:
2518
Guy Schalnate5a37791996-06-05 15:50:50 -05002519You will need to write new error and warning functions that use the GUI
2520interface, as described previously, and set them to be the error and
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06002521warning functions at the time that png_create_*_struct() is called,
Guy Schalnate5a37791996-06-05 15:50:50 -05002522in order to have them available during the structure initialization.
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06002523They can be changed later via png_set_error_fn(). On some compilers,
Guy Schalnate5a37791996-06-05 15:50:50 -05002524you may also have to change the memory allocators (png_malloc, etc.).
Guy Schalnat6d764711995-12-19 03:22:19 -06002525
Guy Schalnat0d580581995-07-20 02:43:20 -05002526Configuring for compiler xxx:
2527
Guy Schalnat69b14481996-01-10 02:56:49 -06002528All includes for libpng are in pngconf.h. If you need to add/change/delete
Guy Schalnat0d580581995-07-20 02:43:20 -05002529an include, this is the place to do it. The includes that are not
2530needed outside libpng are protected by the PNG_INTERNAL definition,
2531which is only defined for those routines inside libpng itself. The
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002532files in libpng proper only include png.h, which includes pngconf.h.
2533
2534Configuring zlib:
2535
Guy Schalnate5a37791996-06-05 15:50:50 -05002536There are special functions to configure the compression. Perhaps the
2537most useful one changes the compression level, which currently uses
2538input compression values in the range 0 - 9. The library normally
Andreas Dilger47a0c421997-05-16 02:46:07 -05002539uses the default compression level (Z_DEFAULT_COMPRESSION = 6). Tests
2540have shown that for a large majority of images, compression values in
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002541the range 3-6 compress nearly as well as higher levels, and do so much
2542faster. For online applications it may be desirable to have maximum speed
Guy Schalnate5a37791996-06-05 15:50:50 -05002543(Z_BEST_SPEED = 1). With versions of zlib after v0.99, you can also
2544specify no compression (Z_NO_COMPRESSION = 0), but this would create
2545files larger than just storing the raw bitmap. You can specify the
2546compression level by calling:
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002547
Andreas Dilger47a0c421997-05-16 02:46:07 -05002548 png_set_compression_level(png_ptr, level);
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002549
2550Another useful one is to reduce the memory level used by the library.
2551The memory level defaults to 8, but it can be lowered if you are
2552short on memory (running DOS, for example, where you only have 640K).
Glenn Randers-Pehrson4fb046a2002-04-15 09:25:51 -05002553Note that the memory level does have an effect on compression; among
2554other things, lower levels will result in sections of incompressible
2555data being emitted in smaller stored blocks, with a correspondingly
2556larger relative overhead of up to 15% in the worst case.
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002557
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002558 png_set_compression_mem_level(png_ptr, level);
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002559
Andreas Dilger47a0c421997-05-16 02:46:07 -05002560The other functions are for configuring zlib. They are not recommended
2561for normal use and may result in writing an invalid PNG file. See
2562zlib.h for more information on what these mean.
2563
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06002564 png_set_compression_strategy(png_ptr,
2565 strategy);
2566 png_set_compression_window_bits(png_ptr,
2567 window_bits);
Andreas Dilger47a0c421997-05-16 02:46:07 -05002568 png_set_compression_method(png_ptr, method);
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05002569 png_set_compression_buffer_size(png_ptr, size);
Andreas Dilger47a0c421997-05-16 02:46:07 -05002570
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002571Controlling row filtering
Andreas Dilger47a0c421997-05-16 02:46:07 -05002572
2573If you want to control whether libpng uses filtering or not, which
2574filters are used, and how it goes about picking row filters, you
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06002575can call one of these functions. The selection and configuration
2576of row filters can have a significant impact on the size and
2577encoding speed and a somewhat lesser impact on the decoding speed
2578of an image. Filtering is enabled by default for RGB and grayscale
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002579images (with and without alpha), but not for paletted images nor
2580for any images with bit depths less than 8 bits/pixel.
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06002581
2582The 'method' parameter sets the main filtering method, which is
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05002583currently only '0' in the PNG 1.2 specification. The 'filters'
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06002584parameter sets which filter(s), if any, should be used for each
2585scanline. Possible values are PNG_ALL_FILTERS and PNG_NO_FILTERS
2586to turn filtering on and off, respectively.
2587
Guy Schalnate5a37791996-06-05 15:50:50 -05002588Individual filter types are PNG_FILTER_NONE, PNG_FILTER_SUB,
2589PNG_FILTER_UP, PNG_FILTER_AVG, PNG_FILTER_PAETH, which can be bitwise
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002590ORed together with '|' to specify one or more filters to use.
Glenn Randers-Pehrson4fb046a2002-04-15 09:25:51 -05002591These filters are described in more detail in the PNG specification.
2592If you intend to change the filter type during the course of writing
Guy Schalnate5a37791996-06-05 15:50:50 -05002593the image, you should start with flags set for all of the filters
2594you intend to use so that libpng can initialize its internal
Glenn Randers-Pehrson4fb046a2002-04-15 09:25:51 -05002595structures appropriately for all of the filter types. (Note that this
2596means the first row must always be adaptively filtered, because libpng
2597currently does not allocate the filter buffers until png_write_row()
2598is called for the first time.)
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002599
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06002600 filters = PNG_FILTER_NONE | PNG_FILTER_SUB
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05002601 PNG_FILTER_UP | PNG_FILTER_AVE |
2602 PNG_FILTER_PAETH | PNG_ALL_FILTERS;
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05002603
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06002604 png_set_filter(png_ptr, PNG_FILTER_TYPE_BASE,
2605 filters);
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06002606 The second parameter can also be
2607 PNG_INTRAPIXEL_DIFFERENCING if you are
2608 writing a PNG to be embedded in a MNG
2609 datastream. This parameter must be the
2610 same as the value of filter_method used
2611 in png_set_IHDR().
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002612
Andreas Dilger47a0c421997-05-16 02:46:07 -05002613It is also possible to influence how libpng chooses from among the
Glenn Randers-Pehrson4fb046a2002-04-15 09:25:51 -05002614available filters. This is done in one or both of two ways - by
2615telling it how important it is to keep the same filter for successive
2616rows, and by telling it the relative computational costs of the filters.
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002617
Andreas Dilger47a0c421997-05-16 02:46:07 -05002618 double weights[3] = {1.5, 1.3, 1.1},
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06002619 costs[PNG_FILTER_VALUE_LAST] =
2620 {1.0, 1.3, 1.3, 1.5, 1.7};
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002621
Glenn Randers-Pehrson4fb046a2002-04-15 09:25:51 -05002622 png_set_filter_heuristics(png_ptr,
2623 PNG_FILTER_HEURISTIC_WEIGHTED, 3,
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06002624 weights, costs);
Andreas Dilger47a0c421997-05-16 02:46:07 -05002625
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002626The weights are multiplying factors that indicate to libpng that the
2627row filter should be the same for successive rows unless another row filter
2628is that many times better than the previous filter. In the above example,
2629if the previous 3 filters were SUB, SUB, NONE, the SUB filter could have a
Andreas Dilger47a0c421997-05-16 02:46:07 -05002630"sum of absolute differences" 1.5 x 1.3 times higher than other filters
2631and still be chosen, while the NONE filter could have a sum 1.1 times
2632higher than other filters and still be chosen. Unspecified weights are
2633taken to be 1.0, and the specified weights should probably be declining
2634like those above in order to emphasize recent filters over older filters.
2635
2636The filter costs specify for each filter type a relative decoding cost
2637to be considered when selecting row filters. This means that filters
2638with higher costs are less likely to be chosen over filters with lower
2639costs, unless their "sum of absolute differences" is that much smaller.
2640The costs do not necessarily reflect the exact computational speeds of
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06002641the various filters, since this would unduly influence the final image
Andreas Dilger47a0c421997-05-16 02:46:07 -05002642size.
2643
2644Note that the numbers above were invented purely for this example and
2645are given only to help explain the function usage. Little testing has
2646been done to find optimum values for either the costs or the weights.
Guy Schalnat0d580581995-07-20 02:43:20 -05002647
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002648Removing unwanted object code
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002649
Guy Schalnat69b14481996-01-10 02:56:49 -06002650There are a bunch of #define's in pngconf.h that control what parts of
Andreas Dilger47a0c421997-05-16 02:46:07 -05002651libpng are compiled. All the defines end in _SUPPORTED. If you are
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002652never going to use a capability, you can change the #define to #undef
2653before recompiling libpng and save yourself code and data space, or
2654you can turn off individual capabilities with defines that begin with
2655PNG_NO_.
2656
2657You can also turn all of the transforms and ancillary chunk capabilities
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05002658off en masse with compiler directives that define
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002659PNG_NO_READ[or WRITE]_TRANSFORMS, or PNG_NO_READ[or WRITE]_ANCILLARY_CHUNKS,
2660or all four,
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002661along with directives to turn on any of the capabilities that you do
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002662want. The PNG_NO_READ[or WRITE]_TRANSFORMS directives disable
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06002663the extra transformations but still leave the library fully capable of reading
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002664and writing PNG files with all known public chunks
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002665Use of the PNG_NO_READ[or WRITE]_ANCILLARY_CHUNKS directive
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06002666produces a library that is incapable of reading or writing ancillary chunks.
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06002667If you are not using the progressive reading capability, you can
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002668turn that off with PNG_NO_PROGRESSIVE_READ (don't confuse
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06002669this with the INTERLACING capability, which you'll still have).
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002670
2671All the reading and writing specific code are in separate files, so the
Guy Schalnate5a37791996-06-05 15:50:50 -05002672linker should only grab the files it needs. However, if you want to
2673make sure, or if you are building a stand alone library, all the
2674reading files start with pngr and all the writing files start with
2675pngw. The files that don't match either (like png.c, pngtrans.c, etc.)
2676are used for both reading and writing, and always need to be included.
2677The progressive reader is in pngpread.c
2678
2679If you are creating or distributing a dynamically linked library (a .so
Andreas Dilger47a0c421997-05-16 02:46:07 -05002680or DLL file), you should not remove or disable any parts of the library,
2681as this will cause applications linked with different versions of the
2682library to fail if they call functions not available in your library.
2683The size of the library itself should not be an issue, because only
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002684those sections that are actually used will be loaded into memory.
Guy Schalnate5a37791996-06-05 15:50:50 -05002685
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002686Requesting debug printout
Guy Schalnate5a37791996-06-05 15:50:50 -05002687
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002688The macro definition PNG_DEBUG can be used to request debugging
2689printout. Set it to an integer value in the range 0 to 3. Higher
2690numbers result in increasing amounts of debugging information. The
2691information is printed to the "stderr" file, unless another file
2692name is specified in the PNG_DEBUG_FILE macro definition.
2693
2694When PNG_DEBUG > 0, the following functions (macros) become available:
2695
2696 png_debug(level, message)
2697 png_debug1(level, message, p1)
2698 png_debug2(level, message, p1, p2)
2699
2700in which "level" is compared to PNG_DEBUG to decide whether to print
2701the message, "message" is the formatted string to be printed,
2702and p1 and p2 are parameters that are to be embedded in the string
2703according to printf-style formatting directives. For example,
2704
2705 png_debug1(2, "foo=%d\n", foo);
2706
2707is expanded to
2708
2709 if(PNG_DEBUG > 2)
2710 fprintf(PNG_DEBUG_FILE, "foo=%d\n", foo);
2711
2712When PNG_DEBUG is defined but is zero, the macros aren't defined, but you
2713can still use PNG_DEBUG to control your own debugging:
2714
2715 #ifdef PNG_DEBUG
2716 fprintf(stderr, ...
2717 #endif
2718
2719When PNG_DEBUG = 1, the macros are defined, but only png_debug statements
2720having level = 0 will be printed. There aren't any such statements in
2721this version of libpng, but if you insert some they will be printed.
2722
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -05002723VI. Runtime optimization
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -06002724
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -05002725A new feature in libpng 1.2.0 is the ability to dynamically switch between
2726standard and optimized versions of some routines. Currently these are
2727limited to three computationally intensive tasks when reading PNG files:
2728decoding row filters, expanding interlacing, and combining interlaced or
2729transparent row data with previous row data. Currently the optimized
2730versions are available only for x86 (Intel, AMD, etc.) platforms with
2731MMX support, though this may change in future versions. (For example,
2732the non-MMX assembler optimizations for zlib might become similarly
2733runtime-selectable in future releases, in which case libpng could be
2734extended to support them. Alternatively, the compile-time choice of
2735floating-point versus integer routines for gamma correction might become
2736runtime-selectable.)
2737
2738Because such optimizations tend to be very platform- and compiler-dependent,
2739both in how they are written and in how they perform, the new runtime code
2740in libpng has been written to allow programs to query, enable, and disable
2741either specific optimizations or all such optimizations. For example, to
2742enable all possible optimizations (bearing in mind that some "optimizations"
2743may actually run more slowly in rare cases):
2744
2745 #if defined(PNG_LIBPNG_VER) && (PNG_LIBPNG_VER >= 10200)
2746 png_uint_32 mask, flags;
2747
2748 flags = png_get_asm_flags(png_ptr);
2749 mask = png_get_asm_flagmask(PNG_SELECT_READ | PNG_SELECT_WRITE);
2750 png_set_asm_flags(png_ptr, flags | mask);
2751 #endif
2752
2753To enable only optimizations relevant to reading PNGs, use PNG_SELECT_READ
2754by itself when calling png_get_asm_flagmask(); similarly for optimizing
2755only writing. To disable all optimizations:
2756
2757 #if defined(PNG_LIBPNG_VER) && (PNG_LIBPNG_VER >= 10200)
2758 flags = png_get_asm_flags(png_ptr);
2759 mask = png_get_asm_flagmask(PNG_SELECT_READ | PNG_SELECT_WRITE);
2760 png_set_asm_flags(png_ptr, flags & ~mask);
2761 #endif
2762
2763To enable or disable only MMX-related features, use png_get_mmx_flagmask()
2764in place of png_get_asm_flagmask(). The mmx version takes one additional
2765parameter:
2766
2767 #if defined(PNG_LIBPNG_VER) && (PNG_LIBPNG_VER >= 10200)
2768 int selection = PNG_SELECT_READ | PNG_SELECT_WRITE;
2769 int compilerID;
2770
2771 mask = png_get_mmx_flagmask(selection, &compilerID);
2772 #endif
2773
2774On return, compilerID will indicate which version of the MMX assembler
2775optimizations was compiled. Currently two flavors exist: Microsoft
2776Visual C++ (compilerID == 1) and GNU C (a.k.a. gcc/gas, compilerID == 2).
2777On non-x86 platforms or on systems compiled without MMX optimizations, a
2778value of -1 is used.
2779
2780Note that both png_get_asm_flagmask() and png_get_mmx_flagmask() return
2781all valid, settable optimization bits for the version of the library that's
2782currently in use. In the case of shared (dynamically linked) libraries,
2783this may include optimizations that did not exist at the time the code was
2784written and compiled. It is also possible, of course, to enable only known,
2785specific optimizations; for example:
2786
2787 #if defined(PNG_LIBPNG_VER) && (PNG_LIBPNG_VER >= 10200)
2788 flags = PNG_ASM_FLAG_MMX_READ_COMBINE_ROW \
2789 | PNG_ASM_FLAG_MMX_READ_INTERLACE \
2790 | PNG_ASM_FLAG_MMX_READ_FILTER_SUB \
2791 | PNG_ASM_FLAG_MMX_READ_FILTER_UP \
2792 | PNG_ASM_FLAG_MMX_READ_FILTER_AVG \
2793 | PNG_ASM_FLAG_MMX_READ_FILTER_PAETH ;
2794 png_set_asm_flags(png_ptr, flags);
2795 #endif
2796
2797This method would enable only the MMX read-optimizations available at the
2798time of libpng 1.2.0's release, regardless of whether a later version of
2799the DLL were actually being used. (Also note that these functions did not
2800exist in versions older than 1.2.0, so any attempt to run a dynamically
2801linked app on such an older version would fail.)
2802
2803To determine whether the processor supports MMX instructions at all, use
2804the png_mmx_support() function:
2805
2806 #if defined(PNG_LIBPNG_VER) && (PNG_LIBPNG_VER >= 10200)
2807 mmxsupport = png_mmx_support();
2808 #endif
2809
2810It returns -1 if MMX support is not compiled into libpng, 0 if MMX code
2811is compiled but MMX is not supported by the processor, or 1 if MMX support
2812is fully available. Note that png_mmx_support(), png_get_mmx_flagmask(),
2813and png_get_asm_flagmask() all may be called without allocating and ini-
2814tializing any PNG structures (for example, as part of a usage screen or
2815"about" box).
2816
Glenn Randers-Pehrson10781042001-09-01 07:54:01 -05002817The following code can be used to prevent an application from using the
2818thread_unsafe features, even if libpng was built with PNG_THREAD_UNSAFE_OK
2819defined:
2820
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05002821#if defined(PNG_USE_PNGGCCRD) && defined(PNG_MMX_CODE_SUPPORTED) \
Glenn Randers-Pehrson10781042001-09-01 07:54:01 -05002822 && defined(PNG_THREAD_UNSAFE_OK)
2823 /* Disable thread-unsafe features of pnggccrd */
2824 if (png_access_version() >= 10200)
2825 {
2826 png_uint_32 mmx_disable_mask = 0;
2827 png_uint_32 asm_flags;
2828
2829 mmx_disable_mask |= ( PNG_ASM_FLAG_MMX_READ_COMBINE_ROW \
2830 | PNG_ASM_FLAG_MMX_READ_FILTER_SUB \
2831 | PNG_ASM_FLAG_MMX_READ_FILTER_AVG \
2832 | PNG_ASM_FLAG_MMX_READ_FILTER_PAETH );
2833 asm_flags = png_get_asm_flags(png_ptr);
2834 png_set_asm_flags(png_ptr, asm_flags & ~mmx_disable_mask);
2835 }
2836#endif
2837
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -05002838For more extensive examples of runtime querying, enabling and disabling
2839of optimized features, see contrib/gregbook/readpng2.c in the libpng
2840source-code distribution.
2841
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -05002842VII. MNG support
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -06002843
2844The MNG specification (available at http://www.libpng.org/pub/mng) allows
2845certain extensions to PNG for PNG images that are embedded in MNG datastreams.
2846Libpng can support some of these extensions. To enable them, use the
2847png_permit_mng_features() function:
2848
2849 feature_set = png_permit_mng_features(png_ptr, mask)
2850 mask is a png_uint_32 containing the logical OR of the
2851 features you want to enable. These include
2852 PNG_FLAG_MNG_EMPTY_PLTE
2853 PNG_FLAG_MNG_FILTER_64
2854 PNG_ALL_MNG_FEATURES
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -05002855 feature_set is a png_uint_32 that is the logical AND of
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -06002856 your mask with the set of MNG features that is
2857 supported by the version of libpng that you are using.
2858
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -06002859It is an error to use this function when reading or writing a standalone
2860PNG file with the PNG 8-byte signature. The PNG datastream must be wrapped
Glenn Randers-Pehrsonf05f8032000-12-23 14:27:39 -06002861in a MNG datastream. As a minimum, it must have the MNG 8-byte signature
2862and the MHDR and MEND chunks. Libpng does not provide support for these
2863or any other MNG chunks; your application must provide its own support for
2864them. You may wish to consider using libmng (available at
2865http://www.libmng.com) instead.
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -06002866
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -05002867VIII. Changes to Libpng from version 0.88
Guy Schalnate5a37791996-06-05 15:50:50 -05002868
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002869It should be noted that versions of libpng later than 0.96 are not
2870distributed by the original libpng author, Guy Schalnat, nor by
2871Andreas Dilger, who had taken over from Guy during 1996 and 1997, and
2872distributed versions 0.89 through 0.96, but rather by another member
2873of the original PNG Group, Glenn Randers-Pehrson. Guy and Andreas are
2874still alive and well, but they have moved on to other things.
Andreas Dilger47a0c421997-05-16 02:46:07 -05002875
2876The old libpng functions png_read_init(), png_write_init(),
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -05002877png_info_init(), png_read_destroy(), and png_write_destroy() have been
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002878moved to PNG_INTERNAL in version 0.95 to discourage their use. These
2879functions will be removed from libpng version 2.0.0.
2880
2881The preferred method of creating and initializing the libpng structures is
Andreas Dilger47a0c421997-05-16 02:46:07 -05002882via the png_create_read_struct(), png_create_write_struct(), and
Guy Schalnate5a37791996-06-05 15:50:50 -05002883png_create_info_struct() because they isolate the size of the structures
Andreas Dilger47a0c421997-05-16 02:46:07 -05002884from the application, allow version error checking, and also allow the
2885use of custom error handling routines during the initialization, which
2886the old functions do not. The functions png_read_destroy() and
2887png_write_destroy() do not actually free the memory that libpng
2888allocated for these structs, but just reset the data structures, so they
2889can be used instead of png_destroy_read_struct() and
2890png_destroy_write_struct() if you feel there is too much system overhead
2891allocating and freeing the png_struct for each image read.
Guy Schalnate5a37791996-06-05 15:50:50 -05002892
2893Setting the error callbacks via png_set_message_fn() before
2894png_read_init() as was suggested in libpng-0.88 is no longer supported
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002895because this caused applications that do not use custom error functions
Guy Schalnate5a37791996-06-05 15:50:50 -05002896to fail if the png_ptr was not initialized to zero. It is still possible
2897to set the error callbacks AFTER png_read_init(), or to change them with
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002898png_set_error_fn(), which is essentially the same function, but with a new
2899name to force compilation errors with applications that try to use the old
2900method.
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -06002901
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05002902Starting with version 1.0.7, you can find out which version of the library
2903you are using at run-time:
2904
2905 png_uint_32 libpng_vn = png_access_version_number();
2906
2907The number libpng_vn is constructed from the major version, minor
2908version with leading zero, and release number with leading zero,
2909(e.g., libpng_vn for version 1.0.7 is 10007).
2910
2911You can also check which version of png.h you used when compiling your
2912application:
2913
2914 png_uint_32 application_vn = PNG_LIBPNG_VER;
2915
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -05002916IX. Y2K Compliance in libpng
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -06002917
Glenn Randers-Pehrsond60b8fa2006-04-20 21:31:14 -05002918April 21, 2006
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -06002919
2920Since the PNG Development group is an ad-hoc body, we can't make
2921an official declaration.
2922
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05002923This is your unofficial assurance that libpng from version 0.71 and
Glenn Randers-Pehrsond60b8fa2006-04-20 21:31:14 -05002924upward through 1.4.0beta2 are Y2K compliant. It is my belief that earlier
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05002925versions were also Y2K compliant.
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -06002926
2927Libpng only has three year fields. One is a 2-byte unsigned integer that
2928will hold years up to 65535. The other two hold the date in text
2929format, and will hold years up to 9999.
2930
2931The integer is
2932 "png_uint_16 year" in png_time_struct.
2933
2934The strings are
2935 "png_charp time_buffer" in png_struct and
2936 "near_time_buffer", which is a local character string in png.c.
2937
2938There are seven time-related functions:
2939
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002940 png_convert_to_rfc_1123() in png.c
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -06002941 (formerly png_convert_to_rfc_1152() in error)
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06002942 png_convert_from_struct_tm() in pngwrite.c, called
2943 in pngwrite.c
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -06002944 png_convert_from_time_t() in pngwrite.c
2945 png_get_tIME() in pngget.c
2946 png_handle_tIME() in pngrutil.c, called in pngread.c
2947 png_set_tIME() in pngset.c
2948 png_write_tIME() in pngwutil.c, called in pngwrite.c
2949
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002950All appear to handle dates properly in a Y2K environment. The
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -06002951png_convert_from_time_t() function calls gmtime() to convert from system
2952clock time, which returns (year - 1900), which we properly convert to
2953the full 4-digit year. There is a possibility that applications using
2954libpng are not passing 4-digit years into the png_convert_to_rfc_1123()
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05002955function, or that they are incorrectly passing only a 2-digit year
2956instead of "year - 1900" into the png_convert_from_struct_tm() function,
2957but this is not under our control. The libpng documentation has always
2958stated that it works with 4-digit years, and the APIs have been
2959documented as such.
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -06002960
2961The tIME chunk itself is also Y2K compliant. It uses a 2-byte unsigned
2962integer to hold the year, and can hold years as large as 65535.
2963
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05002964zlib, upon which libpng depends, is also Y2K compliant. It contains
2965no date-related code.
2966
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -06002967
2968 Glenn Randers-Pehrson
2969 libpng maintainer
2970 PNG Development Group