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