Glenn Randers-Pehrson | 08a3343 | 1998-03-07 06:06:55 -0600 | [diff] [blame] | 1 | |
Glenn Randers-Pehrson | 860ab2b | 1999-10-14 07:43:10 -0500 | [diff] [blame] | 2 | #if 0 /* in case someone actually tries to compile this */ |
| 3 | |
Glenn Randers-Pehrson | b7f9593 | 2006-03-05 20:15:20 -0600 | [diff] [blame] | 4 | /* example.c - an example of using libpng |
Glenn Randers-Pehrson | f0eda4e | 2010-10-15 15:01:57 -0500 | [diff] [blame] | 5 | * Last changed in libpng 1.5.0 [(PENDING RELEASE)] |
Glenn Randers-Pehrson | b7f9593 | 2006-03-05 20:15:20 -0600 | [diff] [blame] | 6 | * This file has been placed in the public domain by the authors. |
Glenn Randers-Pehrson | 64b863c | 2011-01-04 09:57:06 -0600 | [diff] [blame^] | 7 | * Maintained 1998-2011 Glenn Randers-Pehrson |
Glenn Randers-Pehrson | b7f9593 | 2006-03-05 20:15:20 -0600 | [diff] [blame] | 8 | * Maintained 1996, 1997 Andreas Dilger) |
| 9 | * Written 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) |
| 10 | */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 11 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 12 | /* This is an example of how to use libpng to read and write PNG files. |
Glenn Randers-Pehrson | f3abb2c | 2010-10-17 12:51:53 -0500 | [diff] [blame] | 13 | * The file libpng-manual.txt is much more verbose then this. If you have not |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 14 | * read it, do so first. This was designed to be a starting point of an |
Glenn Randers-Pehrson | 520a764 | 2000-03-21 05:13:06 -0600 | [diff] [blame] | 15 | * implementation. This is not officially part of libpng, is hereby placed |
| 16 | * in the public domain, and therefore does not require a copyright notice. |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 17 | * |
| 18 | * This file does not currently compile, because it is missing certain |
| 19 | * parts, like allocating memory to hold an image. You will have to |
| 20 | * supply these parts to get it to compile. For an example of a minimal |
Glenn Randers-Pehrson | 520a764 | 2000-03-21 05:13:06 -0600 | [diff] [blame] | 21 | * working PNG reader/writer, see pngtest.c, included in this distribution; |
| 22 | * see also the programs in the contrib directory. |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 23 | */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 24 | |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 25 | #include "png.h" |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 26 | |
Glenn Randers-Pehrson | 520a764 | 2000-03-21 05:13:06 -0600 | [diff] [blame] | 27 | /* The png_jmpbuf() macro, used in error handling, became available in |
| 28 | * libpng version 1.0.6. If you want to be able to run your code with older |
| 29 | * versions of libpng, you must define the macro yourself (but only if it |
| 30 | * is not already defined by libpng!). |
| 31 | */ |
| 32 | |
| 33 | #ifndef png_jmpbuf |
Glenn Randers-Pehrson | 95ca51b | 2010-02-19 14:09:09 -0600 | [diff] [blame] | 34 | # define png_jmpbuf(png_ptr) ((png_ptr)->png_jmpbuf) |
Glenn Randers-Pehrson | 520a764 | 2000-03-21 05:13:06 -0600 | [diff] [blame] | 35 | #endif |
| 36 | |
Glenn Randers-Pehrson | c944229 | 1999-01-06 21:50:16 -0600 | [diff] [blame] | 37 | /* Check to see if a file is a PNG file using png_sig_cmp(). png_sig_cmp() |
| 38 | * returns zero if the image is a PNG and nonzero if it isn't a PNG. |
| 39 | * |
| 40 | * The function check_if_png() shown here, but not used, returns nonzero (true) |
| 41 | * if the file can be opened and is a PNG, 0 (false) otherwise. |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 42 | * |
| 43 | * If this call is successful, and you are going to keep the file open, |
| 44 | * you should call png_set_sig_bytes(png_ptr, PNG_BYTES_TO_CHECK); once |
| 45 | * you have created the png_ptr, so that libpng knows your application |
| 46 | * has read that many bytes from the start of the file. Make sure you |
| 47 | * don't call png_set_sig_bytes() with more than 8 bytes read or give it |
| 48 | * an incorrect number of bytes read, or you will either have read too |
| 49 | * many bytes (your fault), or you are telling libpng to read the wrong |
| 50 | * number of magic bytes (also your fault). |
| 51 | * |
| 52 | * Many applications already read the first 2 or 4 bytes from the start |
| 53 | * of the image to determine the file type, so it would be easiest just |
Glenn Randers-Pehrson | 0f7202f | 1998-03-08 18:52:15 -0600 | [diff] [blame] | 54 | * to pass the bytes to png_sig_cmp() or even skip that if you know |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 55 | * you have a PNG file, and call png_set_sig_bytes(). |
| 56 | */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 57 | #define PNG_BYTES_TO_CHECK 4 |
| 58 | int check_if_png(char *file_name, FILE **fp) |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 59 | { |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 60 | char buf[PNG_BYTES_TO_CHECK]; |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 61 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 62 | /* Open the prospective PNG file. */ |
Glenn Randers-Pehrson | 68ea243 | 2000-04-01 21:10:05 -0600 | [diff] [blame] | 63 | if ((*fp = fopen(file_name, "rb")) == NULL) |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 64 | return 0; |
| 65 | |
Glenn Randers-Pehrson | c944229 | 1999-01-06 21:50:16 -0600 | [diff] [blame] | 66 | /* Read in some of the signature bytes */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 67 | if (fread(buf, 1, PNG_BYTES_TO_CHECK, *fp) != PNG_BYTES_TO_CHECK) |
| 68 | return 0; |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 69 | |
Glenn Randers-Pehrson | c944229 | 1999-01-06 21:50:16 -0600 | [diff] [blame] | 70 | /* Compare the first PNG_BYTES_TO_CHECK bytes of the signature. |
| 71 | Return nonzero (true) if they match */ |
| 72 | |
Glenn Randers-Pehrson | 145f5c8 | 2008-07-10 09:13:13 -0500 | [diff] [blame] | 73 | return(!png_sig_cmp(buf, (png_size_t)0, PNG_BYTES_TO_CHECK)); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 74 | } |
| 75 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 76 | /* Read a PNG file. You may want to return an error code if the read |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 77 | * fails (depending upon the failure). There are two "prototypes" given |
| 78 | * here - one where we are given the filename, and we need to open the |
| 79 | * file, and the other where we are given an open file (possibly with |
| 80 | * some or all of the magic bytes read - see comments above). |
| 81 | */ |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 82 | #ifdef open_file /* prototype 1 */ |
Andreas Dilger | 02ad0ef | 1997-01-17 01:34:35 -0600 | [diff] [blame] | 83 | void read_png(char *file_name) /* We need to open the file */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 84 | { |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 85 | png_structp png_ptr; |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 86 | png_infop info_ptr; |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 87 | unsigned int sig_read = 0; |
| 88 | png_uint_32 width, height; |
| 89 | int bit_depth, color_type, interlace_type; |
Andreas Dilger | 02ad0ef | 1997-01-17 01:34:35 -0600 | [diff] [blame] | 90 | FILE *fp; |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 91 | |
Andreas Dilger | 02ad0ef | 1997-01-17 01:34:35 -0600 | [diff] [blame] | 92 | if ((fp = fopen(file_name, "rb")) == NULL) |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 93 | return (ERROR); |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 94 | |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 95 | #else no_open_file /* prototype 2 */ |
Glenn Randers-Pehrson | 4bb4d01 | 2009-05-20 12:45:29 -0500 | [diff] [blame] | 96 | void read_png(FILE *fp, unsigned int sig_read) /* File is already open */ |
Andreas Dilger | 02ad0ef | 1997-01-17 01:34:35 -0600 | [diff] [blame] | 97 | { |
| 98 | png_structp png_ptr; |
| 99 | png_infop info_ptr; |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 100 | png_uint_32 width, height; |
| 101 | int bit_depth, color_type, interlace_type; |
Glenn Randers-Pehrson | 4bb4d01 | 2009-05-20 12:45:29 -0500 | [diff] [blame] | 102 | #endif no_open_file /* Only use one prototype! */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 103 | |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 104 | /* Create and initialize the png_struct with the desired error handler |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 105 | * functions. If you want to use the default stderr and longjump method, |
| 106 | * you can supply NULL for the last three parameters. We also supply the |
| 107 | * the compiler header file version, so that we know if the application |
| 108 | * was compiled with a compatible version of the library. REQUIRED |
| 109 | */ |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 110 | png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, |
Glenn Randers-Pehrson | d0dce40 | 1998-05-09 10:02:29 -0500 | [diff] [blame] | 111 | png_voidp user_error_ptr, user_error_fn, user_warning_fn); |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 112 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 113 | if (png_ptr == NULL) |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 114 | { |
| 115 | fclose(fp); |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 116 | return (ERROR); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 117 | } |
| 118 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 119 | /* Allocate/initialize the memory for image information. REQUIRED. */ |
Glenn Randers-Pehrson | 0f7202f | 1998-03-08 18:52:15 -0600 | [diff] [blame] | 120 | info_ptr = png_create_info_struct(png_ptr); |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 121 | if (info_ptr == NULL) |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 122 | { |
| 123 | fclose(fp); |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 124 | png_destroy_read_struct(&png_ptr, NULL, NULL); |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 125 | return (ERROR); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 126 | } |
| 127 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 128 | /* Set error handling if you are using the setjmp/longjmp method (this is |
| 129 | * the normal method of doing things with libpng). REQUIRED unless you |
| 130 | * set up your own error handlers in the png_create_read_struct() earlier. |
| 131 | */ |
Glenn Randers-Pehrson | 520a764 | 2000-03-21 05:13:06 -0600 | [diff] [blame] | 132 | |
| 133 | if (setjmp(png_jmpbuf(png_ptr))) |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 134 | { |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 135 | /* Free all of the memory associated with the png_ptr and info_ptr */ |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 136 | png_destroy_read_struct(&png_ptr, &info_ptr, NULL); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 137 | fclose(fp); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 138 | /* If we get here, we had a problem reading the file */ |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 139 | return (ERROR); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 140 | } |
| 141 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 142 | /* One of the following I/O initialization methods is REQUIRED */ |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 143 | #ifdef streams /* PNG file I/O method 1 */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 144 | /* Set up the input control if you are using standard C streams */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 145 | png_init_io(png_ptr, fp); |
| 146 | |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 147 | #else no_streams /* PNG file I/O method 2 */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 148 | /* If you are using replacement read functions, instead of calling |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 149 | * png_init_io() here you would call: |
| 150 | */ |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 151 | png_set_read_fn(png_ptr, (void *)user_io_ptr, user_read_fn); |
| 152 | /* where user_io_ptr is a structure you want available to the callbacks */ |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 153 | #endif no_streams /* Use only one I/O method! */ |
Guy Schalnat | 69b1448 | 1996-01-10 02:56:49 -0600 | [diff] [blame] | 154 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 155 | /* If we have already read some of the signature */ |
Glenn Randers-Pehrson | 0f7202f | 1998-03-08 18:52:15 -0600 | [diff] [blame] | 156 | png_set_sig_bytes(png_ptr, sig_read); |
Andreas Dilger | 02ad0ef | 1997-01-17 01:34:35 -0600 | [diff] [blame] | 157 | |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 158 | #ifdef hilevel |
| 159 | /* |
| 160 | * If you have enough memory to read in the entire image at once, |
| 161 | * and you need to specify only transforms that can be controlled |
| 162 | * with one of the PNG_TRANSFORM_* bits (this presently excludes |
Glenn Randers-Pehrson | 3cd7cff | 2010-04-16 19:27:08 -0500 | [diff] [blame] | 163 | * quantizing, filling, setting background, and doing gamma |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 164 | * adjustment), then you can read the entire image (including |
| 165 | * pixels) into the info structure with this call: |
| 166 | */ |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 167 | png_read_png(png_ptr, info_ptr, png_transforms, NULL); |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 168 | |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 169 | #else |
| 170 | /* OK, you're doing it the hard way, with the lower-level functions */ |
| 171 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 172 | /* The call to png_read_info() gives us all of the information from the |
| 173 | * PNG file before the first IDAT (image data chunk). REQUIRED |
| 174 | */ |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 175 | png_read_info(png_ptr, info_ptr); |
Guy Schalnat | 69b1448 | 1996-01-10 02:56:49 -0600 | [diff] [blame] | 176 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 177 | png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 178 | &interlace_type, NULL, NULL); |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 179 | |
Glenn Randers-Pehrson glennrp@comcast.net | b1c0d33 | 2009-05-15 20:39:34 -0500 | [diff] [blame] | 180 | /* Set up the data transformations you want. Note that these are all |
| 181 | * optional. Only call them if you want/need them. Many of the |
| 182 | * transformations only work on specific types of images, and many |
| 183 | * are mutually exclusive. |
| 184 | */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 185 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 186 | /* Tell libpng to strip 16 bit/color files down to 8 bits/color */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 187 | png_set_strip_16(png_ptr); |
| 188 | |
Glenn Randers-Pehrson | 4393a9a | 1999-09-17 12:27:26 -0500 | [diff] [blame] | 189 | /* Strip alpha bytes from the input data without combining with the |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 190 | * background (not recommended). |
| 191 | */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 192 | png_set_strip_alpha(png_ptr); |
| 193 | |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 194 | /* Extract multiple pixels with bit depths of 1, 2, and 4 from a single |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 195 | * byte into separate bytes (useful for paletted and grayscale images). |
| 196 | */ |
| 197 | png_set_packing(png_ptr); |
| 198 | |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 199 | /* Change the order of packed pixels to least significant bit first |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 200 | * (not useful if you are using png_set_packing). */ |
| 201 | png_set_packswap(png_ptr); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 202 | |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 203 | /* Expand paletted colors into true RGB triplets */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 204 | if (color_type == PNG_COLOR_TYPE_PALETTE) |
Glenn Randers-Pehrson | f46918d | 2006-06-02 05:31:20 -0500 | [diff] [blame] | 205 | png_set_palette_to_rgb(png_ptr); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 206 | |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 207 | /* Expand grayscale images to the full 8 bits from 1, 2, or 4 bits/pixel */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 208 | if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) |
Glenn Randers-Pehrson | 56f6396 | 2008-10-06 10:16:17 -0500 | [diff] [blame] | 209 | png_set_expand_gray_1_2_4_to_8(png_ptr); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 210 | |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 211 | /* Expand paletted or RGB images with transparency to full alpha channels |
| 212 | * so the data will be available as RGBA quartets. |
| 213 | */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 214 | if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) |
Glenn Randers-Pehrson | b182893 | 2001-06-23 08:03:17 -0500 | [diff] [blame] | 215 | png_set_tRNS_to_alpha(png_ptr); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 216 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 217 | /* Set the background color to draw transparent and alpha images over. |
| 218 | * It is possible to set the red, green, and blue components directly |
| 219 | * for paletted images instead of supplying a palette index. Note that |
| 220 | * even if the PNG file supplies a background, you are not required to |
| 221 | * use it - you should use the (solid) application background if it has one. |
| 222 | */ |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 223 | |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 224 | png_color_16 my_background, *image_background; |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 225 | |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 226 | if (png_get_bKGD(png_ptr, info_ptr, &image_background)) |
| 227 | png_set_background(png_ptr, image_background, |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 228 | PNG_BACKGROUND_GAMMA_FILE, 1, 1.0); |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 229 | else |
| 230 | png_set_background(png_ptr, &my_background, |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 231 | PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 232 | |
Glenn Randers-Pehrson glennrp@comcast.net | b1c0d33 | 2009-05-15 20:39:34 -0500 | [diff] [blame] | 233 | /* Some suggestions as to how to get a screen gamma value |
| 234 | * |
| 235 | * Note that screen gamma is the display_exponent, which includes |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 236 | * the CRT_exponent and any correction for viewing conditions |
| 237 | */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 238 | if (/* We have a user-defined screen gamma value */) |
| 239 | { |
| 240 | screen_gamma = user-defined screen_gamma; |
| 241 | } |
| 242 | /* This is one way that applications share the same screen gamma value */ |
Glenn Randers-Pehrson | c4a2ae6 | 1998-01-16 22:06:18 -0600 | [diff] [blame] | 243 | else if ((gamma_str = getenv("SCREEN_GAMMA")) != NULL) |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 244 | { |
| 245 | screen_gamma = atof(gamma_str); |
| 246 | } |
| 247 | /* If we don't have another value */ |
| 248 | else |
| 249 | { |
Glenn Randers-Pehrson | f0a8fe0 | 2009-04-14 08:28:15 -0500 | [diff] [blame] | 250 | screen_gamma = 2.2; /* A good guess for a PC monitor in a dimly |
Glenn Randers-Pehrson | c4a2ae6 | 1998-01-16 22:06:18 -0600 | [diff] [blame] | 251 | lit room */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 252 | screen_gamma = 1.7 or 1.0; /* A good guess for Mac systems */ |
| 253 | } |
| 254 | |
Glenn Randers-Pehrson | 520a764 | 2000-03-21 05:13:06 -0600 | [diff] [blame] | 255 | /* Tell libpng to handle the gamma conversion for you. The final call |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 256 | * is a good guess for PC generated images, but it should be configurable |
| 257 | * by the user at run time by the user. It is strongly suggested that |
| 258 | * your application support gamma correction. |
| 259 | */ |
Glenn Randers-Pehrson | c4a2ae6 | 1998-01-16 22:06:18 -0600 | [diff] [blame] | 260 | |
| 261 | int intent; |
| 262 | |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 263 | if (png_get_sRGB(png_ptr, info_ptr, &intent)) |
Glenn Randers-Pehrson | 520a764 | 2000-03-21 05:13:06 -0600 | [diff] [blame] | 264 | png_set_gamma(png_ptr, screen_gamma, 0.45455); |
Glenn Randers-Pehrson | 5c6aeb2 | 1998-12-29 11:47:59 -0600 | [diff] [blame] | 265 | else |
| 266 | { |
| 267 | double image_gamma; |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 268 | if (png_get_gAMA(png_ptr, info_ptr, &image_gamma)) |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 269 | png_set_gamma(png_ptr, screen_gamma, image_gamma); |
| 270 | else |
Glenn Randers-Pehrson | 5c6aeb2 | 1998-12-29 11:47:59 -0600 | [diff] [blame] | 271 | png_set_gamma(png_ptr, screen_gamma, 0.45455); |
| 272 | } |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 273 | |
Glenn Randers-Pehrson | 3cd7cff | 2010-04-16 19:27:08 -0500 | [diff] [blame] | 274 | #ifdef PNG_READ_QUANTIZE_SUPPORTED |
| 275 | /* Quantize RGB files down to 8 bit palette or reduce palettes |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 276 | * to the number of colors available on your screen. |
| 277 | */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 278 | if (color_type & PNG_COLOR_MASK_COLOR) |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 279 | { |
Glenn Randers-Pehrson | f05f803 | 2000-12-23 14:27:39 -0600 | [diff] [blame] | 280 | int num_palette; |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 281 | png_colorp palette; |
| 282 | |
| 283 | /* This reduces the image to the application supplied palette */ |
Glenn Randers-Pehrson | 4bb4d01 | 2009-05-20 12:45:29 -0500 | [diff] [blame] | 284 | if (/* We have our own palette */) |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 285 | { |
Glenn Randers-Pehrson | 3cd7cff | 2010-04-16 19:27:08 -0500 | [diff] [blame] | 286 | /* An array of colors to which the image should be quantized */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 287 | png_color std_color_cube[MAX_SCREEN_COLORS]; |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 288 | |
Glenn Randers-Pehrson | 3cd7cff | 2010-04-16 19:27:08 -0500 | [diff] [blame] | 289 | png_set_quantize(png_ptr, std_color_cube, MAX_SCREEN_COLORS, |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 290 | MAX_SCREEN_COLORS, NULL, 0); |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 291 | } |
| 292 | /* This reduces the image to the palette supplied in the file */ |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 293 | else if (png_get_PLTE(png_ptr, info_ptr, &palette, &num_palette)) |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 294 | { |
Glenn Randers-Pehrson | 865f4f0 | 2002-09-15 20:30:38 -0500 | [diff] [blame] | 295 | png_uint_16p histogram = NULL; |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 296 | |
| 297 | png_get_hIST(png_ptr, info_ptr, &histogram); |
| 298 | |
Glenn Randers-Pehrson | 3cd7cff | 2010-04-16 19:27:08 -0500 | [diff] [blame] | 299 | png_set_quantize(png_ptr, palette, num_palette, |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 300 | max_screen_colors, histogram, 0); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 301 | } |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 302 | } |
Glenn Randers-Pehrson | 3cd7cff | 2010-04-16 19:27:08 -0500 | [diff] [blame] | 303 | #endif /* PNG_READ_QUANTIZE_SUPPORTED */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 304 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 305 | /* Invert monochrome files to have 0 as white and 1 as black */ |
Glenn Randers-Pehrson | 46f61e2 | 1998-01-30 21:45:12 -0600 | [diff] [blame] | 306 | png_set_invert_mono(png_ptr); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 307 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 308 | /* If you want to shift the pixel values from the range [0,255] or |
| 309 | * [0,65535] to the original [0,7] or [0,31], or whatever range the |
| 310 | * colors were originally in: |
| 311 | */ |
| 312 | if (png_get_valid(png_ptr, info_ptr, PNG_INFO_sBIT)) |
| 313 | { |
Glenn Randers-Pehrson | 640b7d5 | 2009-05-13 07:33:22 -0500 | [diff] [blame] | 314 | png_color_8p sig_bit_p; |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 315 | |
Glenn Randers-Pehrson | 640b7d5 | 2009-05-13 07:33:22 -0500 | [diff] [blame] | 316 | png_get_sBIT(png_ptr, info_ptr, &sig_bit_p); |
| 317 | png_set_shift(png_ptr, sig_bit_p); |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 318 | } |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 319 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 320 | /* Flip the RGB pixels to BGR (or RGBA to BGRA) */ |
Glenn Randers-Pehrson | 6942d53 | 2000-05-01 09:31:54 -0500 | [diff] [blame] | 321 | if (color_type & PNG_COLOR_MASK_COLOR) |
| 322 | png_set_bgr(png_ptr); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 323 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 324 | /* Swap the RGBA or GA data to ARGB or AG (or BGRA to ABGR) */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 325 | png_set_swap_alpha(png_ptr); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 326 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 327 | /* Swap bytes of 16 bit files to least significant byte first */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 328 | png_set_swap(png_ptr); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 329 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 330 | /* Add filler (or alpha) byte (before/after each RGB triplet) */ |
| 331 | png_set_filler(png_ptr, 0xff, PNG_FILLER_AFTER); |
| 332 | |
| 333 | /* Turn on interlace handling. REQUIRED if you are not using |
| 334 | * png_read_image(). To see how to handle interlacing passes, |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 335 | * see the png_read_row() method below: |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 336 | */ |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 337 | number_passes = png_set_interlace_handling(png_ptr); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 338 | |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 339 | /* Optional call to gamma correct and add the background to the palette |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 340 | * and update info structure. REQUIRED if you are expecting libpng to |
| 341 | * update the palette for you (ie you selected such a transform above). |
| 342 | */ |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 343 | png_read_update_info(png_ptr, info_ptr); |
| 344 | |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 345 | /* Allocate the memory to hold the image using the fields of info_ptr. */ |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 346 | |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 347 | /* The easiest way to read the image: */ |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 348 | png_bytep row_pointers[height]; |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 349 | |
Glenn Randers-Pehrson | 8fb550c | 2009-03-21 08:15:32 -0500 | [diff] [blame] | 350 | /* Clear the pointer array */ |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 351 | for (row = 0; row < height; row++) |
Glenn Randers-Pehrson | 8fb550c | 2009-03-21 08:15:32 -0500 | [diff] [blame] | 352 | row_pointers[row] = NULL; |
| 353 | |
| 354 | for (row = 0; row < height; row++) |
Glenn Randers-Pehrson | 3097f61 | 2001-05-07 14:52:45 -0500 | [diff] [blame] | 355 | row_pointers[row] = png_malloc(png_ptr, png_get_rowbytes(png_ptr, |
| 356 | info_ptr)); |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 357 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 358 | /* Now it's time to read the image. One of these methods is REQUIRED */ |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 359 | #ifdef entire /* Read the entire image in one go */ |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 360 | png_read_image(png_ptr, row_pointers); |
| 361 | |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 362 | #else no_entire /* Read the image one or more scanlines at a time */ |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 363 | /* The other way to read images - deal with interlacing: */ |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 364 | |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 365 | for (pass = 0; pass < number_passes; pass++) |
| 366 | { |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 367 | #ifdef single /* Read the image a single row at a time */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 368 | for (y = 0; y < height; y++) |
| 369 | { |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 370 | png_read_rows(png_ptr, &row_pointers[y], NULL, 1); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 371 | } |
| 372 | |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 373 | #else no_single /* Read the image several rows at a time */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 374 | for (y = 0; y < height; y += number_of_rows) |
| 375 | { |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 376 | #ifdef sparkle /* Read the image using the "sparkle" effect. */ |
Glenn Randers-Pehrson | 145f5c8 | 2008-07-10 09:13:13 -0500 | [diff] [blame] | 377 | png_read_rows(png_ptr, &row_pointers[y], NULL, |
| 378 | number_of_rows); |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 379 | #else no_sparkle /* Read the image using the "rectangle" effect */ |
Glenn Randers-Pehrson | 145f5c8 | 2008-07-10 09:13:13 -0500 | [diff] [blame] | 380 | png_read_rows(png_ptr, NULL, &row_pointers[y], |
| 381 | number_of_rows); |
Glenn Randers-Pehrson | 4bb4d01 | 2009-05-20 12:45:29 -0500 | [diff] [blame] | 382 | #endif no_sparkle /* Use only one of these two methods */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 383 | } |
Glenn Randers-Pehrson | 5c6aeb2 | 1998-12-29 11:47:59 -0600 | [diff] [blame] | 384 | |
Glenn Randers-Pehrson | 4bb4d01 | 2009-05-20 12:45:29 -0500 | [diff] [blame] | 385 | /* If you want to display the image after every pass, do so here */ |
| 386 | #endif no_single /* Use only one of these two methods */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 387 | } |
Glenn Randers-Pehrson | 4bb4d01 | 2009-05-20 12:45:29 -0500 | [diff] [blame] | 388 | #endif no_entire /* Use only one of these two methods */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 389 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 390 | /* Read rest of file, and get additional chunks in info_ptr - REQUIRED */ |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 391 | png_read_end(png_ptr, info_ptr); |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 392 | #endif hilevel |
| 393 | |
| 394 | /* At this point you have read the entire image */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 395 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 396 | /* Clean up after the read, and free any memory allocated - REQUIRED */ |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 397 | png_destroy_read_struct(&png_ptr, &info_ptr, NULL); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 398 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 399 | /* Close the file */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 400 | fclose(fp); |
| 401 | |
Glenn Randers-Pehrson | 4bb4d01 | 2009-05-20 12:45:29 -0500 | [diff] [blame] | 402 | /* That's it */ |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 403 | return (OK); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 404 | } |
| 405 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 406 | /* Progressively read a file */ |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 407 | |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 408 | int |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 409 | initialize_png_reader(png_structp *png_ptr, png_infop *info_ptr) |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 410 | { |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 411 | /* Create and initialize the png_struct with the desired error handler |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 412 | * functions. If you want to use the default stderr and longjump method, |
| 413 | * you can supply NULL for the last three parameters. We also check that |
| 414 | * the library version is compatible in case we are using dynamically |
| 415 | * linked libraries. |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 416 | */ |
| 417 | *png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, |
Glenn Randers-Pehrson | d0dce40 | 1998-05-09 10:02:29 -0500 | [diff] [blame] | 418 | png_voidp user_error_ptr, user_error_fn, user_warning_fn); |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 419 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 420 | if (*png_ptr == NULL) |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 421 | { |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 422 | *info_ptr = NULL; |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 423 | return (ERROR); |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 424 | } |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 425 | |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 426 | *info_ptr = png_create_info_struct(png_ptr); |
| 427 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 428 | if (*info_ptr == NULL) |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 429 | { |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 430 | png_destroy_read_struct(png_ptr, info_ptr, NULL); |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 431 | return (ERROR); |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 432 | } |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 433 | |
Glenn Randers-Pehrson | 520a764 | 2000-03-21 05:13:06 -0600 | [diff] [blame] | 434 | if (setjmp(png_jmpbuf((*png_ptr)))) |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 435 | { |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 436 | png_destroy_read_struct(png_ptr, info_ptr, NULL); |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 437 | return (ERROR); |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 438 | } |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 439 | |
Glenn Randers-Pehrson | 5c6aeb2 | 1998-12-29 11:47:59 -0600 | [diff] [blame] | 440 | /* This one's new. You will need to provide all three |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 441 | * function callbacks, even if you aren't using them all. |
Glenn Randers-Pehrson | 5c6aeb2 | 1998-12-29 11:47:59 -0600 | [diff] [blame] | 442 | * If you aren't using all functions, you can specify NULL |
| 443 | * parameters. Even when all three functions are NULL, |
| 444 | * you need to call png_set_progressive_read_fn(). |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 445 | * These functions shouldn't be dependent on global or |
| 446 | * static variables if you are decoding several images |
| 447 | * simultaneously. You should store stream specific data |
| 448 | * in a separate struct, given as the second parameter, |
| 449 | * and retrieve the pointer from inside the callbacks using |
| 450 | * the function png_get_progressive_ptr(png_ptr). |
| 451 | */ |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 452 | png_set_progressive_read_fn(*png_ptr, (void *)stream_data, |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 453 | info_callback, row_callback, end_callback); |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 454 | |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 455 | return (OK); |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | int |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 459 | process_data(png_structp *png_ptr, png_infop *info_ptr, |
| 460 | png_bytep buffer, png_uint_32 length) |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 461 | { |
Glenn Randers-Pehrson | 520a764 | 2000-03-21 05:13:06 -0600 | [diff] [blame] | 462 | if (setjmp(png_jmpbuf((*png_ptr)))) |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 463 | { |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 464 | /* Free the png_ptr and info_ptr memory on error */ |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 465 | png_destroy_read_struct(png_ptr, info_ptr, NULL); |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 466 | return (ERROR); |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 467 | } |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 468 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 469 | /* This one's new also. Simply give it chunks of data as |
| 470 | * they arrive from the data stream (in order, of course). |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 471 | * On segmented machines, don't give it any more than 64K. |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 472 | * The library seems to run fine with sizes of 4K, although |
| 473 | * you can give it much less if necessary (I assume you can |
| 474 | * give it chunks of 1 byte, but I haven't tried with less |
| 475 | * than 256 bytes yet). When this function returns, you may |
| 476 | * want to display any rows that were generated in the row |
| 477 | * callback, if you aren't already displaying them there. |
| 478 | */ |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 479 | png_process_data(*png_ptr, *info_ptr, buffer, length); |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 480 | return (OK); |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | info_callback(png_structp png_ptr, png_infop info) |
| 484 | { |
Glenn Randers-Pehrson glennrp@comcast.net | b1c0d33 | 2009-05-15 20:39:34 -0500 | [diff] [blame] | 485 | /* Do any setup here, including setting any of the transformations |
| 486 | * mentioned in the Reading PNG files section. For now, you _must_ |
| 487 | * call either png_start_read_image() or png_read_update_info() |
| 488 | * after all the transformations are set (even if you don't set |
| 489 | * any). You may start getting rows before png_process_data() |
| 490 | * returns, so this is your last chance to prepare for that. |
| 491 | */ |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | row_callback(png_structp png_ptr, png_bytep new_row, |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 495 | png_uint_32 row_num, int pass) |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 496 | { |
Glenn Randers-Pehrson glennrp@comcast.net | b1c0d33 | 2009-05-15 20:39:34 -0500 | [diff] [blame] | 497 | /* |
| 498 | * This function is called for every row in the image. If the |
| 499 | * image is interlaced, and you turned on the interlace handler, |
| 500 | * this function will be called for every row in every pass. |
| 501 | * |
| 502 | * In this function you will receive a pointer to new row data from |
| 503 | * libpng called new_row that is to replace a corresponding row (of |
| 504 | * the same data format) in a buffer allocated by your application. |
| 505 | * |
| 506 | * The new row data pointer "new_row" may be NULL, indicating there is |
| 507 | * no new data to be replaced (in cases of interlace loading). |
| 508 | * |
| 509 | * If new_row is not NULL then you need to call |
| 510 | * png_progressive_combine_row() to replace the corresponding row as |
| 511 | * shown below: |
| 512 | */ |
| 513 | |
Glenn Randers-Pehrson | 53c07f5 | 2010-06-18 18:55:55 -0500 | [diff] [blame] | 514 | /* Get pointer to corresponding row in our |
| 515 | * PNG read buffer. |
| 516 | */ |
| 517 | png_bytep old_row = ((png_bytep *)our_data)[row_num]; |
Glenn Randers-Pehrson | 5a0be34 | 2001-10-18 20:55:13 -0500 | [diff] [blame] | 518 | |
Glenn Randers-Pehrson | 53c07f5 | 2010-06-18 18:55:55 -0500 | [diff] [blame] | 519 | /* If both rows are allocated then copy the new row |
| 520 | * data to the corresponding row data. |
| 521 | */ |
| 522 | if ((old_row != NULL) && (new_row != NULL)) |
| 523 | png_progressive_combine_row(png_ptr, old_row, new_row); |
| 524 | |
Glenn Randers-Pehrson glennrp@comcast.net | b1c0d33 | 2009-05-15 20:39:34 -0500 | [diff] [blame] | 525 | /* |
| 526 | * The rows and passes are called in order, so you don't really |
| 527 | * need the row_num and pass, but I'm supplying them because it |
| 528 | * may make your life easier. |
| 529 | * |
| 530 | * For the non-NULL rows of interlaced images, you must call |
| 531 | * png_progressive_combine_row() passing in the new row and the |
| 532 | * old row, as demonstrated above. You can call this function for |
| 533 | * NULL rows (it will just return) and for non-interlaced images |
| 534 | * (it just does the png_memcpy for you) if it will make the code |
| 535 | * easier. Thus, you can just do this for all cases: |
| 536 | */ |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 537 | |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 538 | png_progressive_combine_row(png_ptr, old_row, new_row); |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 539 | |
Glenn Randers-Pehrson glennrp@comcast.net | b1c0d33 | 2009-05-15 20:39:34 -0500 | [diff] [blame] | 540 | /* where old_row is what was displayed for previous rows. Note |
| 541 | * that the first pass (pass == 0 really) will completely cover |
| 542 | * the old row, so the rows do not have to be initialized. After |
| 543 | * the first pass (and only for interlaced images), you will have |
| 544 | * to pass the current row as new_row, and the function will combine |
| 545 | * the old row and the new row. |
| 546 | */ |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 547 | } |
| 548 | |
| 549 | end_callback(png_structp png_ptr, png_infop info) |
| 550 | { |
Glenn Randers-Pehrson glennrp@comcast.net | b1c0d33 | 2009-05-15 20:39:34 -0500 | [diff] [blame] | 551 | /* This function is called when the whole image has been read, |
| 552 | * including any chunks after the image (up to and including |
| 553 | * the IEND). You will usually have the same info chunk as you |
| 554 | * had in the header, although some data may have been added |
| 555 | * to the comments and time fields. |
| 556 | * |
| 557 | * Most people won't do much here, perhaps setting a flag that |
| 558 | * marks the image as finished. |
| 559 | */ |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 560 | } |
| 561 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 562 | /* Write a png file */ |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 563 | void write_png(char *file_name /* , ... other image information ... */) |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 564 | { |
| 565 | FILE *fp; |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 566 | png_structp png_ptr; |
| 567 | png_infop info_ptr; |
Glenn Randers-Pehrson | a77ef62 | 2000-02-18 13:48:52 -0600 | [diff] [blame] | 568 | png_colorp palette; |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 569 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 570 | /* Open the file */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 571 | fp = fopen(file_name, "wb"); |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 572 | if (fp == NULL) |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 573 | return (ERROR); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 574 | |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 575 | /* Create and initialize the png_struct with the desired error handler |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 576 | * functions. If you want to use the default stderr and longjump method, |
| 577 | * you can supply NULL for the last three parameters. We also check that |
| 578 | * the library version is compatible with the one used at compile time, |
| 579 | * in case we are using dynamically linked libraries. REQUIRED. |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 580 | */ |
| 581 | png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, |
Glenn Randers-Pehrson | d0dce40 | 1998-05-09 10:02:29 -0500 | [diff] [blame] | 582 | png_voidp user_error_ptr, user_error_fn, user_warning_fn); |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 583 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 584 | if (png_ptr == NULL) |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 585 | { |
| 586 | fclose(fp); |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 587 | return (ERROR); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 588 | } |
| 589 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 590 | /* Allocate/initialize the image information data. REQUIRED */ |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 591 | info_ptr = png_create_info_struct(png_ptr); |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 592 | if (info_ptr == NULL) |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 593 | { |
| 594 | fclose(fp); |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 595 | png_destroy_write_struct(&png_ptr, NULL); |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 596 | return (ERROR); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 597 | } |
| 598 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 599 | /* Set error handling. REQUIRED if you aren't supplying your own |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 600 | * error handling functions in the png_create_write_struct() call. |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 601 | */ |
Glenn Randers-Pehrson | 520a764 | 2000-03-21 05:13:06 -0600 | [diff] [blame] | 602 | if (setjmp(png_jmpbuf(png_ptr))) |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 603 | { |
Glenn Randers-Pehrson | 8fb550c | 2009-03-21 08:15:32 -0500 | [diff] [blame] | 604 | /* If we get here, we had a problem writing the file */ |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 605 | fclose(fp); |
Glenn Randers-Pehrson | fc4a143 | 2000-05-17 17:39:34 -0500 | [diff] [blame] | 606 | png_destroy_write_struct(&png_ptr, &info_ptr); |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 607 | return (ERROR); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 608 | } |
| 609 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 610 | /* One of the following I/O initialization functions is REQUIRED */ |
Glenn Randers-Pehrson glennrp@comcast.net | b1c0d33 | 2009-05-15 20:39:34 -0500 | [diff] [blame] | 611 | |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 612 | #ifdef streams /* I/O initialization method 1 */ |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 613 | /* Set up the output control if you are using standard C streams */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 614 | png_init_io(png_ptr, fp); |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 615 | |
Glenn Randers-Pehrson | cbe52d8 | 1998-02-28 07:00:24 -0600 | [diff] [blame] | 616 | #else no_streams /* I/O initialization method 2 */ |
Glenn Randers-Pehrson | a5fa5c9 | 2008-09-06 07:06:22 -0500 | [diff] [blame] | 617 | /* If you are using replacement write functions, instead of calling |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 618 | * png_init_io() here you would call |
| 619 | */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 620 | png_set_write_fn(png_ptr, (void *)user_io_ptr, user_write_fn, |
| 621 | user_IO_flush_function); |
| 622 | /* where user_io_ptr is a structure you want available to the callbacks */ |
Glenn Randers-Pehrson | 4bb4d01 | 2009-05-20 12:45:29 -0500 | [diff] [blame] | 623 | #endif no_streams /* Only use one initialization method */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 624 | |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 625 | #ifdef hilevel |
| 626 | /* This is the easy way. Use it if you already have all the |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 627 | * image info living in the structure. You could "|" many |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 628 | * PNG_TRANSFORM flags into the png_transforms integer here. |
| 629 | */ |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 630 | png_write_png(png_ptr, info_ptr, png_transforms, NULL); |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 631 | |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 632 | #else |
| 633 | /* This is the hard way */ |
| 634 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 635 | /* Set the image information here. Width and height are up to 2^31, |
| 636 | * bit_depth is one of 1, 2, 4, 8, or 16, but valid values also depend on |
| 637 | * the color_type selected. color_type is one of PNG_COLOR_TYPE_GRAY, |
| 638 | * PNG_COLOR_TYPE_GRAY_ALPHA, PNG_COLOR_TYPE_PALETTE, PNG_COLOR_TYPE_RGB, |
| 639 | * or PNG_COLOR_TYPE_RGB_ALPHA. interlace is either PNG_INTERLACE_NONE or |
| 640 | * PNG_INTERLACE_ADAM7, and the compression_type and filter_type MUST |
| 641 | * currently be PNG_COMPRESSION_TYPE_BASE and PNG_FILTER_TYPE_BASE. REQUIRED |
| 642 | */ |
| 643 | png_set_IHDR(png_ptr, info_ptr, width, height, bit_depth, PNG_COLOR_TYPE_???, |
| 644 | PNG_INTERLACE_????, PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 645 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 646 | /* Set the palette if there is one. REQUIRED for indexed-color images */ |
Glenn Randers-Pehrson | 3097f61 | 2001-05-07 14:52:45 -0500 | [diff] [blame] | 647 | palette = (png_colorp)png_malloc(png_ptr, PNG_MAX_PALETTE_LENGTH |
Glenn Randers-Pehrson | 145f5c8 | 2008-07-10 09:13:13 -0500 | [diff] [blame] | 648 | * png_sizeof(png_color)); |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 649 | /* ... Set palette colors ... */ |
Glenn Randers-Pehrson | 76e5fd6 | 2000-12-28 07:50:05 -0600 | [diff] [blame] | 650 | png_set_PLTE(png_ptr, info_ptr, palette, PNG_MAX_PALETTE_LENGTH); |
Glenn Randers-Pehrson | a77ef62 | 2000-02-18 13:48:52 -0600 | [diff] [blame] | 651 | /* You must not free palette here, because png_set_PLTE only makes a link to |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 652 | * the palette that you malloced. Wait until you are about to destroy |
| 653 | * the png structure. |
| 654 | */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 655 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 656 | /* Optional significant bit (sBIT) chunk */ |
Glenn Randers-Pehrson | 640b7d5 | 2009-05-13 07:33:22 -0500 | [diff] [blame] | 657 | png_color_8 sig_bit; |
Glenn Randers-Pehrson | f24daf2 | 2010-05-06 09:44:04 -0500 | [diff] [blame] | 658 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 659 | /* If we are dealing with a grayscale image then */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 660 | sig_bit.gray = true_bit_depth; |
Glenn Randers-Pehrson | f24daf2 | 2010-05-06 09:44:04 -0500 | [diff] [blame] | 661 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 662 | /* Otherwise, if we are dealing with a color image then */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 663 | sig_bit.red = true_red_bit_depth; |
| 664 | sig_bit.green = true_green_bit_depth; |
| 665 | sig_bit.blue = true_blue_bit_depth; |
Glenn Randers-Pehrson | f24daf2 | 2010-05-06 09:44:04 -0500 | [diff] [blame] | 666 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 667 | /* If the image has an alpha channel then */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 668 | sig_bit.alpha = true_alpha_bit_depth; |
Glenn Randers-Pehrson | f24daf2 | 2010-05-06 09:44:04 -0500 | [diff] [blame] | 669 | |
Glenn Randers-Pehrson | 640b7d5 | 2009-05-13 07:33:22 -0500 | [diff] [blame] | 670 | png_set_sBIT(png_ptr, info_ptr, &sig_bit); |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 671 | |
Glenn Randers-Pehrson | 5c6aeb2 | 1998-12-29 11:47:59 -0600 | [diff] [blame] | 672 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 673 | /* Optional gamma chunk is strongly suggested if you have any guess |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 674 | * as to the correct gamma of the image. |
| 675 | */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 676 | png_set_gAMA(png_ptr, info_ptr, gamma); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 677 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 678 | /* Optionally write comments into the image */ |
| 679 | text_ptr[0].key = "Title"; |
| 680 | text_ptr[0].text = "Mona Lisa"; |
| 681 | text_ptr[0].compression = PNG_TEXT_COMPRESSION_NONE; |
Glenn Randers-Pehrson | dd78d52 | 2010-03-30 08:34:02 -0500 | [diff] [blame] | 682 | text_ptr[0].itxt_length = 0; |
| 683 | text_ptr[0].lang = NULL; |
| 684 | text_ptr[0].lang_key = NULL; |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 685 | text_ptr[1].key = "Author"; |
| 686 | text_ptr[1].text = "Leonardo DaVinci"; |
| 687 | text_ptr[1].compression = PNG_TEXT_COMPRESSION_NONE; |
Glenn Randers-Pehrson | dd78d52 | 2010-03-30 08:34:02 -0500 | [diff] [blame] | 688 | text_ptr[1].itxt_length = 0; |
| 689 | text_ptr[1].lang = NULL; |
| 690 | text_ptr[1].lang_key = NULL; |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 691 | text_ptr[2].key = "Description"; |
| 692 | text_ptr[2].text = "<long text>"; |
| 693 | text_ptr[2].compression = PNG_TEXT_COMPRESSION_zTXt; |
Glenn Randers-Pehrson | dd78d52 | 2010-03-30 08:34:02 -0500 | [diff] [blame] | 694 | text_ptr[2].itxt_length = 0; |
Glenn Randers-Pehrson | 166c5a3 | 1999-12-10 09:43:02 -0600 | [diff] [blame] | 695 | text_ptr[2].lang = NULL; |
Glenn Randers-Pehrson | dd78d52 | 2010-03-30 08:34:02 -0500 | [diff] [blame] | 696 | text_ptr[2].lang_key = NULL; |
Glenn Randers-Pehrson | 8686fff | 1998-05-21 09:27:50 -0500 | [diff] [blame] | 697 | png_set_text(png_ptr, info_ptr, text_ptr, 3); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 698 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 699 | /* Other optional chunks like cHRM, bKGD, tRNS, tIME, oFFs, pHYs */ |
Glenn Randers-Pehrson | 640b7d5 | 2009-05-13 07:33:22 -0500 | [diff] [blame] | 700 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 701 | /* Note that if sRGB is present the gAMA and cHRM chunks must be ignored |
Glenn Randers-Pehrson | 640b7d5 | 2009-05-13 07:33:22 -0500 | [diff] [blame] | 702 | * on read and, if your application chooses to write them, they must |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 703 | * be written in accordance with the sRGB profile |
| 704 | */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 705 | |
| 706 | /* Write the file header information. REQUIRED */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 707 | png_write_info(png_ptr, info_ptr); |
| 708 | |
Glenn Randers-Pehrson | 5379b24 | 1999-11-27 10:22:33 -0600 | [diff] [blame] | 709 | /* If you want, you can write the info in two steps, in case you need to |
| 710 | * write your private chunk ahead of PLTE: |
| 711 | * |
| 712 | * png_write_info_before_PLTE(write_ptr, write_info_ptr); |
| 713 | * write_my_chunk(); |
| 714 | * png_write_info(png_ptr, info_ptr); |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 715 | * |
Glenn Randers-Pehrson | 8fb550c | 2009-03-21 08:15:32 -0500 | [diff] [blame] | 716 | * However, given the level of known- and unknown-chunk support in 1.2.0 |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 717 | * and up, this should no longer be necessary. |
Glenn Randers-Pehrson | 5379b24 | 1999-11-27 10:22:33 -0600 | [diff] [blame] | 718 | */ |
| 719 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 720 | /* Once we write out the header, the compression type on the text |
| 721 | * chunks gets changed to PNG_TEXT_COMPRESSION_NONE_WR or |
| 722 | * PNG_TEXT_COMPRESSION_zTXt_WR, so it doesn't get written out again |
| 723 | * at the end. |
| 724 | */ |
| 725 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 726 | /* Set up the transformations you want. Note that these are |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 727 | * all optional. Only call them if you want them. |
| 728 | */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 729 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 730 | /* Invert monochrome pixels */ |
Glenn Randers-Pehrson | 46f61e2 | 1998-01-30 21:45:12 -0600 | [diff] [blame] | 731 | png_set_invert_mono(png_ptr); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 732 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 733 | /* Shift the pixels up to a legal bit depth and fill in |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 734 | * as appropriate to correctly scale the image. |
| 735 | */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 736 | png_set_shift(png_ptr, &sig_bit); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 737 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 738 | /* Pack pixels into bytes */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 739 | png_set_packing(png_ptr); |
| 740 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 741 | /* Swap location of alpha bytes from ARGB to RGBA */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 742 | png_set_swap_alpha(png_ptr); |
| 743 | |
| 744 | /* Get rid of filler (OR ALPHA) bytes, pack XRGB/RGBX/ARGB/RGBA into |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 745 | * RGB (4 channels -> 3 channels). The second parameter is not used. |
| 746 | */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 747 | png_set_filler(png_ptr, 0, PNG_FILLER_BEFORE); |
| 748 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 749 | /* Flip BGR pixels to RGB */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 750 | png_set_bgr(png_ptr); |
| 751 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 752 | /* Swap bytes of 16-bit files to most significant byte first */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 753 | png_set_swap(png_ptr); |
| 754 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 755 | /* Swap bits of 1, 2, 4 bit packed pixel formats */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 756 | png_set_packswap(png_ptr); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 757 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 758 | /* Turn on interlace handling if you are not using png_write_image() */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 759 | if (interlacing) |
| 760 | number_passes = png_set_interlace_handling(png_ptr); |
Glenn Randers-Pehrson | f24daf2 | 2010-05-06 09:44:04 -0500 | [diff] [blame] | 761 | |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 762 | else |
| 763 | number_passes = 1; |
| 764 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 765 | /* The easiest way to write the image (you may have a different memory |
| 766 | * layout, however, so choose what fits your needs best). You need to |
| 767 | * use the first method if you aren't handling interlacing yourself. |
| 768 | */ |
Glenn Randers-Pehrson | 8686fff | 1998-05-21 09:27:50 -0500 | [diff] [blame] | 769 | png_uint_32 k, height, width; |
Glenn Randers-Pehrson | a77ef62 | 2000-02-18 13:48:52 -0600 | [diff] [blame] | 770 | png_byte image[height][width*bytes_per_pixel]; |
Glenn Randers-Pehrson | 8686fff | 1998-05-21 09:27:50 -0500 | [diff] [blame] | 771 | png_bytep row_pointers[height]; |
Glenn Randers-Pehrson | 5fea36f | 2004-07-28 08:20:44 -0500 | [diff] [blame] | 772 | |
Glenn Randers-Pehrson | 145f5c8 | 2008-07-10 09:13:13 -0500 | [diff] [blame] | 773 | if (height > PNG_UINT_32_MAX/png_sizeof(png_bytep)) |
Glenn Randers-Pehrson | 67864af | 2004-08-28 23:30:07 -0500 | [diff] [blame] | 774 | png_error (png_ptr, "Image is too tall to process in memory"); |
| 775 | |
Glenn Randers-Pehrson | 8686fff | 1998-05-21 09:27:50 -0500 | [diff] [blame] | 776 | for (k = 0; k < height; k++) |
Glenn Randers-Pehrson | a77ef62 | 2000-02-18 13:48:52 -0600 | [diff] [blame] | 777 | row_pointers[k] = image + k*width*bytes_per_pixel; |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 778 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 779 | /* One of the following output methods is REQUIRED */ |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 780 | |
| 781 | #ifdef entire /* Write out the entire image data in one call */ |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 782 | png_write_image(png_ptr, row_pointers); |
| 783 | |
Glenn Randers-Pehrson | 4bb4d01 | 2009-05-20 12:45:29 -0500 | [diff] [blame] | 784 | /* The other way to write the image - deal with interlacing */ |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 785 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 786 | #else no_entire /* Write out the image data by one or more scanlines */ |
| 787 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 788 | /* The number of passes is either 1 for non-interlaced images, |
| 789 | * or 7 for interlaced images. |
| 790 | */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 791 | for (pass = 0; pass < number_passes; pass++) |
| 792 | { |
| 793 | /* Write a few rows at a time. */ |
Glenn Randers-Pehrson | 8686fff | 1998-05-21 09:27:50 -0500 | [diff] [blame] | 794 | png_write_rows(png_ptr, &row_pointers[first_row], number_of_rows); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 795 | |
| 796 | /* If you are only writing one row at a time, this works */ |
| 797 | for (y = 0; y < height; y++) |
Glenn Randers-Pehrson | 8686fff | 1998-05-21 09:27:50 -0500 | [diff] [blame] | 798 | png_write_rows(png_ptr, &row_pointers[y], 1); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 799 | } |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 800 | #endif no_entire /* Use only one output method */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 801 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 802 | /* You can write optional chunks like tEXt, zTXt, and tIME at the end |
Glenn Randers-Pehrson | f0a8fe0 | 2009-04-14 08:28:15 -0500 | [diff] [blame] | 803 | * as well. Shouldn't be necessary in 1.2.0 and up as all the public |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 804 | * chunks are supported and you can use png_set_unknown_chunks() to |
| 805 | * register unknown chunks into the info structure to be written out. |
Guy Schalnat | e5a3779 | 1996-06-05 15:50:50 -0500 | [diff] [blame] | 806 | */ |
| 807 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 808 | /* It is REQUIRED to call this to finish writing the rest of the file */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 809 | png_write_end(png_ptr, info_ptr); |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 810 | #endif hilevel |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 811 | |
Glenn Randers-Pehrson | a77ef62 | 2000-02-18 13:48:52 -0600 | [diff] [blame] | 812 | /* If you png_malloced a palette, free it here (don't free info_ptr->palette, |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 813 | * as recommended in versions 1.0.5m and earlier of this example; if |
| 814 | * libpng mallocs info_ptr->palette, libpng will free it). If you |
| 815 | * allocated it with malloc() instead of png_malloc(), use free() instead |
| 816 | * of png_free(). |
| 817 | */ |
Glenn Randers-Pehrson | a77ef62 | 2000-02-18 13:48:52 -0600 | [diff] [blame] | 818 | png_free(png_ptr, palette); |
Glenn Randers-Pehrson | 895a9c9 | 2008-07-25 08:51:18 -0500 | [diff] [blame] | 819 | palette = NULL; |
Glenn Randers-Pehrson | a77ef62 | 2000-02-18 13:48:52 -0600 | [diff] [blame] | 820 | |
| 821 | /* Similarly, if you png_malloced any data that you passed in with |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 822 | * png_set_something(), such as a hist or trans array, free it here, |
| 823 | * when you can be sure that libpng is through with it. |
| 824 | */ |
Glenn Randers-Pehrson | a77ef62 | 2000-02-18 13:48:52 -0600 | [diff] [blame] | 825 | png_free(png_ptr, trans); |
Glenn Randers-Pehrson | 895a9c9 | 2008-07-25 08:51:18 -0500 | [diff] [blame] | 826 | trans = NULL; |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 827 | /* Whenever you use png_free() it is a good idea to set the pointer to |
| 828 | * NULL in case your application inadvertently tries to png_free() it |
| 829 | * again. When png_free() sees a NULL it returns without action, thus |
| 830 | * avoiding the double-free security problem. |
| 831 | */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 832 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 833 | /* Clean up after the write, and free any memory allocated */ |
Glenn Randers-Pehrson | fc4a143 | 2000-05-17 17:39:34 -0500 | [diff] [blame] | 834 | png_destroy_write_struct(&png_ptr, &info_ptr); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 835 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 836 | /* Close the file */ |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 837 | fclose(fp); |
| 838 | |
Glenn Randers-Pehrson | 64548de | 2009-05-13 15:23:03 -0500 | [diff] [blame] | 839 | /* That's it */ |
Glenn Randers-Pehrson | 104622b | 2000-05-29 08:58:03 -0500 | [diff] [blame] | 840 | return (OK); |
Guy Schalnat | 0d58058 | 1995-07-20 02:43:20 -0500 | [diff] [blame] | 841 | } |
| 842 | |
Glenn Randers-Pehrson | 860ab2b | 1999-10-14 07:43:10 -0500 | [diff] [blame] | 843 | #endif /* if 0 */ |