blob: 769da73ba83d9c4311535664126d6d427530cd99 [file] [log] [blame]
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001
Andreas Dilger47a0c421997-05-16 02:46:07 -05002/* pngwrite.c - general routines to write a PNG file
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003 *
Glenn Randers-Pehrson13831bc2011-12-21 08:28:28 -06004 * Last changed in libpng 1.6.0 [(PENDING RELEASE)]
Glenn Randers-Pehrson1531bd62012-01-01 14:45:04 -06005 * Copyright (c) 1998-2012 Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05006 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
Glenn Randers-Pehrson3e61d792009-06-24 09:31:28 -05008 *
Glenn Randers-Pehrsonbfbf8652009-06-26 21:46:52 -05009 * This code is released under the libpng license.
Glenn Randers-Pehrsonc332bbc2009-06-25 13:43:50 -050010 * For conditions of distribution and use, see the disclaimer
Glenn Randers-Pehrson037023b2009-06-24 10:27:36 -050011 * and license in png.h
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060012 */
Guy Schalnat0d580581995-07-20 02:43:20 -050013
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -050014#include "pngpriv.h"
John Bowler7875d532011-11-07 22:33:49 -060015#if defined PNG_SIMPLIFIED_WRITE_SUPPORTED && defined PNG_STDIO_SUPPORTED
16# include <errno.h>
17#endif
Guy Schalnat0d580581995-07-20 02:43:20 -050018
Glenn Randers-Pehrsonc3cd22b2010-03-08 21:10:25 -060019#ifdef PNG_WRITE_SUPPORTED
20
Andreas Dilger47a0c421997-05-16 02:46:07 -050021/* Writes all the PNG information. This is the suggested way to use the
22 * library. If you have a new chunk to add, make a function to write it,
23 * and put it in the correct location here. If you want the chunk written
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -050024 * after the image data, put it in png_write_end(). I strongly encourage
Andreas Dilger47a0c421997-05-16 02:46:07 -050025 * you to supply a PNG_INFO_ flag, and check info_ptr->valid before writing
26 * the chunk, as that will keep the code from breaking if you want to just
27 * write a plain PNG file. If you have long comments, I suggest writing
28 * them in png_write_end(), and compressing them.
29 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050030void PNGAPI
John Bowlerb11b31a2012-03-21 07:55:46 -050031png_write_info_before_PLTE(png_structrp png_ptr, png_const_inforp info_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -050032{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -050033 png_debug(1, "in png_write_info_before_PLTE");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -050034
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -060035 if (png_ptr == NULL || info_ptr == NULL)
36 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050037
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -060038 if (!(png_ptr->mode & PNG_WROTE_INFO_BEFORE_PLTE))
39 {
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -050040 /* Write PNG signature */
41 png_write_sig(png_ptr);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050042
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050043#ifdef PNG_MNG_FEATURES_SUPPORTED
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -060044 if ((png_ptr->mode&PNG_HAVE_PNG_SIGNATURE) && \
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -060045 (png_ptr->mng_features_permitted))
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -060046 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050047 png_warning(png_ptr, "MNG features are not allowed in a PNG datastream");
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -050048 png_ptr->mng_features_permitted = 0;
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -060049 }
50#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050051
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -050052 /* Write IHDR information. */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060053 png_write_IHDR(png_ptr, info_ptr->width, info_ptr->height,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -060054 info_ptr->bit_depth, info_ptr->color_type, info_ptr->compression_type,
55 info_ptr->filter_type,
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050056#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -060057 info_ptr->interlace_type);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060058#else
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -060059 0);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060060#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050061 /* The rest of these check to see if the valid field has the appropriate
62 * flag set, and if it does, writes the chunk.
John Bowlerb11b31a2012-03-21 07:55:46 -050063 *
64 * 1.6.0: COLORSPACE support controls the writing of these chunks too, and
65 * the chunks will be written if the WRITE routine is there and information
66 * is available in the COLORSPACE. (See png_colorspace_sync_info in png.c
67 * for where the valid flags get set.)
68 *
69 * Under certain circumstances the colorspace can be invalidated without
70 * syncing the info_struct 'valid' flags; this happens if libpng detects and
71 * error and calls png_error while the color space is being set, yet the
72 * application continues writing the PNG. So check the 'invalid' flag here
73 * too.
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050074 */
John Bowlerb11b31a2012-03-21 07:55:46 -050075#ifdef PNG_GAMMA_SUPPORTED
76# ifdef PNG_WRITE_gAMA_SUPPORTED
77 if (!(info_ptr->colorspace.flags & PNG_COLORSPACE_INVALID) &&
78 (info_ptr->colorspace.flags & PNG_COLORSPACE_FROM_gAMA) &&
79 (info_ptr->valid & PNG_INFO_gAMA))
80 png_write_gAMA_fixed(png_ptr, info_ptr->colorspace.gamma);
81# endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060082#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050083
John Bowlerb11b31a2012-03-21 07:55:46 -050084#ifdef PNG_COLORSPACE_SUPPORTED
John Bowler921648a2012-03-28 23:36:12 -050085 /* Write only one of sRGB or an ICC profile. If a profile was supplied
86 * and it matches one of the known sRGB ones issue a warning.
John Bowlerb11b31a2012-03-21 07:55:46 -050087 */
John Bowler921648a2012-03-28 23:36:12 -050088# ifdef PNG_WRITE_iCCP_SUPPORTED
89 if (!(info_ptr->colorspace.flags & PNG_COLORSPACE_INVALID) &&
90 (info_ptr->valid & PNG_INFO_iCCP))
91 {
92# ifdef PNG_WRITE_sRGB_SUPPORTED
93 if (info_ptr->valid & PNG_INFO_sRGB)
94 png_app_warning(png_ptr,
95 "profile matches sRGB but writing iCCP instead");
96# endif
97
98 png_write_iCCP(png_ptr, info_ptr->iccp_name,
99 info_ptr->iccp_profile);
100 }
101# ifdef PNG_WRITE_sRGB_SUPPORTED
102 else
103# endif
104# endif
105
John Bowlerb11b31a2012-03-21 07:55:46 -0500106# ifdef PNG_WRITE_sRGB_SUPPORTED
107 if (!(info_ptr->colorspace.flags & PNG_COLORSPACE_INVALID) &&
108 (info_ptr->valid & PNG_INFO_sRGB))
109 png_write_sRGB(png_ptr, info_ptr->colorspace.rendering_intent);
John Bowlerb11b31a2012-03-21 07:55:46 -0500110# endif /* WRITE_sRGB */
John Bowlerb11b31a2012-03-21 07:55:46 -0500111#endif /* COLORSPACE */
112
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500113#ifdef PNG_WRITE_sBIT_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600114 if (info_ptr->valid & PNG_INFO_sBIT)
115 png_write_sBIT(png_ptr, &(info_ptr->sig_bit), info_ptr->color_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500116#endif
John Bowlerb11b31a2012-03-21 07:55:46 -0500117
118#ifdef PNG_COLORSPACE_SUPPORTED
119# ifdef PNG_WRITE_cHRM_SUPPORTED
120 if (!(info_ptr->colorspace.flags & PNG_COLORSPACE_INVALID) &&
121 (info_ptr->colorspace.flags & PNG_COLORSPACE_FROM_cHRM) &&
122 (info_ptr->valid & PNG_INFO_cHRM))
123 png_write_cHRM_fixed(png_ptr, &info_ptr->colorspace.end_points_xy);
124# endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600125#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500126
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500127#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600128 if (info_ptr->unknown_chunks_num)
129 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500130 png_unknown_chunk *up;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600131
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500132 png_debug(5, "writing extra chunks");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600133
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500134 for (up = info_ptr->unknown_chunks;
135 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
136 up++)
137 {
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -0500138 int keep = png_handle_as_unknown(png_ptr, up->name);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500139
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500140 if (keep != PNG_HANDLE_CHUNK_NEVER &&
Glenn Randers-Pehrson36fa2a02011-05-11 06:52:37 -0500141 up->location &&
142 !(up->location & PNG_HAVE_PLTE) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600143 !(up->location & PNG_HAVE_IDAT) &&
Glenn Randers-Pehrson36fa2a02011-05-11 06:52:37 -0500144 !(up->location & PNG_AFTER_IDAT) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600145 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
146 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600147 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500148 if (up->size == 0)
149 png_warning(png_ptr, "Writing zero-length unknown chunk");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500150
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600151 png_write_chunk(png_ptr, up->name, up->data, up->size);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600152 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500153 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600154 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500155#endif
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600156 png_ptr->mode |= PNG_WROTE_INFO_BEFORE_PLTE;
157 }
158}
159
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500160void PNGAPI
John Bowlerb11b31a2012-03-21 07:55:46 -0500161png_write_info(png_structrp png_ptr, png_const_inforp info_ptr)
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600162{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600163#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600164 int i;
165#endif
166
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500167 png_debug(1, "in png_write_info");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600168
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600169 if (png_ptr == NULL || info_ptr == NULL)
170 return;
171
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600172 png_write_info_before_PLTE(png_ptr, info_ptr);
173
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600174 if (info_ptr->valid & PNG_INFO_PLTE)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500175 png_write_PLTE(png_ptr, info_ptr->palette,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600176 (png_uint_32)info_ptr->num_palette);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500177
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600178 else if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600179 png_error(png_ptr, "Valid palette required for paletted images");
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600180
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500181#ifdef PNG_WRITE_tRNS_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600182 if (info_ptr->valid & PNG_INFO_tRNS)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500183 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500184#ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500185 /* Invert the alpha channel (in tRNS) */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500186 if ((png_ptr->transformations & PNG_INVERT_ALPHA) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600187 info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500188 {
189 int j;
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -0500190 for (j = 0; j<(int)info_ptr->num_trans; j++)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500191 info_ptr->trans_alpha[j] =
Glenn Randers-Pehrson29034c52010-07-29 17:58:49 -0500192 (png_byte)(255 - info_ptr->trans_alpha[j]);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500193 }
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600194#endif
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500195 png_write_tRNS(png_ptr, info_ptr->trans_alpha, &(info_ptr->trans_color),
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600196 info_ptr->num_trans, info_ptr->color_type);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500197 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500198#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500199#ifdef PNG_WRITE_bKGD_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600200 if (info_ptr->valid & PNG_INFO_bKGD)
201 png_write_bKGD(png_ptr, &(info_ptr->background), info_ptr->color_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500202#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500203
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500204#ifdef PNG_WRITE_hIST_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600205 if (info_ptr->valid & PNG_INFO_hIST)
206 png_write_hIST(png_ptr, info_ptr->hist, info_ptr->num_palette);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500207#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500208
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500209#ifdef PNG_WRITE_oFFs_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600210 if (info_ptr->valid & PNG_INFO_oFFs)
211 png_write_oFFs(png_ptr, info_ptr->x_offset, info_ptr->y_offset,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600212 info_ptr->offset_unit_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500213#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500214
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500215#ifdef PNG_WRITE_pCAL_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500216 if (info_ptr->valid & PNG_INFO_pCAL)
217 png_write_pCAL(png_ptr, info_ptr->pcal_purpose, info_ptr->pcal_X0,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600218 info_ptr->pcal_X1, info_ptr->pcal_type, info_ptr->pcal_nparams,
219 info_ptr->pcal_units, info_ptr->pcal_params);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500220#endif
Glenn Randers-Pehrson59020592009-05-18 10:52:12 -0500221
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500222#ifdef PNG_WRITE_sCAL_SUPPORTED
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500223 if (info_ptr->valid & PNG_INFO_sCAL)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600224 png_write_sCAL_s(png_ptr, (int)info_ptr->scal_unit,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600225 info_ptr->scal_s_width, info_ptr->scal_s_height);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500226#endif /* sCAL */
227
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500228#ifdef PNG_WRITE_pHYs_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500229 if (info_ptr->valid & PNG_INFO_pHYs)
230 png_write_pHYs(png_ptr, info_ptr->x_pixels_per_unit,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600231 info_ptr->y_pixels_per_unit, info_ptr->phys_unit_type);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500232#endif /* pHYs */
233
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500234#ifdef PNG_WRITE_tIME_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600235 if (info_ptr->valid & PNG_INFO_tIME)
Guy Schalnate5a37791996-06-05 15:50:50 -0500236 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600237 png_write_tIME(png_ptr, &(info_ptr->mod_time));
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600238 png_ptr->mode |= PNG_WROTE_tIME;
Guy Schalnate5a37791996-06-05 15:50:50 -0500239 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500240#endif /* tIME */
241
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500242#ifdef PNG_WRITE_sPLT_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600243 if (info_ptr->valid & PNG_INFO_sPLT)
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600244 for (i = 0; i < (int)info_ptr->splt_palettes_num; i++)
245 png_write_sPLT(png_ptr, info_ptr->splt_palettes + i);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500246#endif /* sPLT */
247
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500248#ifdef PNG_WRITE_TEXT_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -0500249 /* Check to see if we need to write text chunks */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500250 for (i = 0; i < info_ptr->num_text; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500251 {
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500252 png_debug2(2, "Writing header text chunk %d, type %d", i,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600253 info_ptr->text[i].compression);
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500254 /* An internationalized chunk? */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600255 if (info_ptr->text[i].compression > 0)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600256 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500257#ifdef PNG_WRITE_iTXt_SUPPORTED
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600258 /* Write international chunk */
259 png_write_iTXt(png_ptr,
260 info_ptr->text[i].compression,
261 info_ptr->text[i].key,
262 info_ptr->text[i].lang,
263 info_ptr->text[i].lang_key,
264 info_ptr->text[i].text);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600265#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600266 png_warning(png_ptr, "Unable to write international text");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600267#endif
268 /* Mark this chunk as written */
269 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
270 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500271
Andreas Dilger47a0c421997-05-16 02:46:07 -0500272 /* If we want a compressed text chunk */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600273 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_zTXt)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500274 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500275#ifdef PNG_WRITE_zTXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500276 /* Write compressed chunk */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500277 png_write_zTXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600278 info_ptr->text[i].text, 0,
279 info_ptr->text[i].compression);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500280#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600281 png_warning(png_ptr, "Unable to write compressed text");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500282#endif
283 /* Mark this chunk as written */
284 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
285 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500286
Andreas Dilger47a0c421997-05-16 02:46:07 -0500287 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
288 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500289#ifdef PNG_WRITE_tEXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500290 /* Write uncompressed chunk */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500291 png_write_tEXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600292 info_ptr->text[i].text,
293 0);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500294 /* Mark this chunk as written */
295 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500296#else
297 /* Can't get here */
298 png_warning(png_ptr, "Unable to write uncompressed text");
299#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500300 }
301 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500302#endif /* tEXt */
303
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500304#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600305 if (info_ptr->unknown_chunks_num)
306 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500307 png_unknown_chunk *up;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600308
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500309 png_debug(5, "writing extra chunks");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600310
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500311 for (up = info_ptr->unknown_chunks;
312 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
313 up++)
314 {
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -0500315 int keep = png_handle_as_unknown(png_ptr, up->name);
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500316 if (keep != PNG_HANDLE_CHUNK_NEVER &&
Glenn Randers-Pehrson36fa2a02011-05-11 06:52:37 -0500317 up->location &&
318 (up->location & PNG_HAVE_PLTE) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600319 !(up->location & PNG_HAVE_IDAT) &&
Glenn Randers-Pehrson36fa2a02011-05-11 06:52:37 -0500320 !(up->location & PNG_AFTER_IDAT) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600321 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
322 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600323 {
324 png_write_chunk(png_ptr, up->name, up->data, up->size);
325 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500326 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600327 }
328#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500329}
Guy Schalnat0d580581995-07-20 02:43:20 -0500330
Andreas Dilger47a0c421997-05-16 02:46:07 -0500331/* Writes the end of the PNG file. If you don't want to write comments or
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600332 * time information, you can pass NULL for info. If you already wrote these
333 * in png_write_info(), do not write them again here. If you have long
334 * comments, I suggest writing them here, and compressing them.
335 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500336void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600337png_write_end(png_structrp png_ptr, png_inforp info_ptr)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500338{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500339 png_debug(1, "in png_write_end");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500340
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600341 if (png_ptr == NULL)
342 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500343
Andreas Dilger47a0c421997-05-16 02:46:07 -0500344 if (!(png_ptr->mode & PNG_HAVE_IDAT))
345 png_error(png_ptr, "No IDATs written into file");
346
Glenn Randers-Pehrsoneeb1bb62012-03-02 22:10:15 -0600347#ifdef PNG_WRITE_CHECK_FOR_INVALID_INDEX_SUPPORTED
348 if (png_ptr->num_palette_max > png_ptr->num_palette)
Glenn Randers-Pehrson945cb1f2012-03-10 08:48:04 -0600349 png_benign_error(png_ptr, "Wrote palette index exceeding num_palette");
Glenn Randers-Pehrsoneeb1bb62012-03-02 22:10:15 -0600350#endif
351
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500352 /* See if user wants us to write information chunks */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500353 if (info_ptr != NULL)
354 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500355#ifdef PNG_WRITE_TEXT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500356 int i; /* local index variable */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600357#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500358#ifdef PNG_WRITE_tIME_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500359 /* Check to see if user has supplied a time chunk */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600360 if ((info_ptr->valid & PNG_INFO_tIME) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600361 !(png_ptr->mode & PNG_WROTE_tIME))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500362 png_write_tIME(png_ptr, &(info_ptr->mod_time));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500363
Andreas Dilger47a0c421997-05-16 02:46:07 -0500364#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500365#ifdef PNG_WRITE_TEXT_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500366 /* Loop through comment chunks */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600367 for (i = 0; i < info_ptr->num_text; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500368 {
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500369 png_debug2(2, "Writing trailer text chunk %d, type %d", i,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500370 info_ptr->text[i].compression);
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500371 /* An internationalized chunk? */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600372 if (info_ptr->text[i].compression > 0)
373 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500374#ifdef PNG_WRITE_iTXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500375 /* Write international chunk */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500376 png_write_iTXt(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600377 info_ptr->text[i].compression,
378 info_ptr->text[i].key,
379 info_ptr->text[i].lang,
380 info_ptr->text[i].lang_key,
381 info_ptr->text[i].text);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600382#else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500383 png_warning(png_ptr, "Unable to write international text");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600384#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500385 /* Mark this chunk as written */
386 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600387 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500388
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600389 else if (info_ptr->text[i].compression >= PNG_TEXT_COMPRESSION_zTXt)
Guy Schalnat0d580581995-07-20 02:43:20 -0500390 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500391#ifdef PNG_WRITE_zTXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500392 /* Write compressed chunk */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600393 png_write_zTXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600394 info_ptr->text[i].text, 0,
395 info_ptr->text[i].compression);
Guy Schalnate5a37791996-06-05 15:50:50 -0500396#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600397 png_warning(png_ptr, "Unable to write compressed text");
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500398#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500399 /* Mark this chunk as written */
400 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500401 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500402
Andreas Dilger47a0c421997-05-16 02:46:07 -0500403 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
Guy Schalnat0d580581995-07-20 02:43:20 -0500404 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500405#ifdef PNG_WRITE_tEXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500406 /* Write uncompressed chunk */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600407 png_write_tEXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600408 info_ptr->text[i].text, 0);
Guy Schalnate5a37791996-06-05 15:50:50 -0500409#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600410 png_warning(png_ptr, "Unable to write uncompressed text");
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500411#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500412
Andreas Dilger47a0c421997-05-16 02:46:07 -0500413 /* Mark this chunk as written */
414 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500415 }
416 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600417#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500418#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600419 if (info_ptr->unknown_chunks_num)
420 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500421 png_unknown_chunk *up;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600422
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500423 png_debug(5, "writing extra chunks");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600424
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500425 for (up = info_ptr->unknown_chunks;
426 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
427 up++)
428 {
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -0500429 int keep = png_handle_as_unknown(png_ptr, up->name);
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500430 if (keep != PNG_HANDLE_CHUNK_NEVER &&
Glenn Randers-Pehrson36fa2a02011-05-11 06:52:37 -0500431 up->location &&
432 (up->location & PNG_AFTER_IDAT) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600433 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
434 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600435 {
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600436 png_write_chunk(png_ptr, up->name, up->data, up->size);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600437 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500438 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600439 }
440#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500441 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500442
443 png_ptr->mode |= PNG_AFTER_IDAT;
444
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500445 /* Write end of PNG file */
Guy Schalnat0d580581995-07-20 02:43:20 -0500446 png_write_IEND(png_ptr);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500447 /* This flush, added in libpng-1.0.8, removed from libpng-1.0.9beta03,
448 * and restored again in libpng-1.2.30, may cause some applications that
449 * do not set png_ptr->output_flush_fn to crash. If your application
Glenn Randers-Pehrsonedcd6e12009-11-20 20:28:29 -0600450 * experiences a problem, please try building libpng with
451 * PNG_WRITE_FLUSH_AFTER_IEND_SUPPORTED defined, and report the event to
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500452 * png-mng-implement at lists.sf.net .
453 */
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500454#ifdef PNG_WRITE_FLUSH_SUPPORTED
Glenn Randers-Pehrsonedcd6e12009-11-20 20:28:29 -0600455# ifdef PNG_WRITE_FLUSH_AFTER_IEND_SUPPORTED
Glenn Randers-Pehrson32fc5ce2000-07-24 06:34:14 -0500456 png_flush(png_ptr);
Glenn Randers-Pehrsonedcd6e12009-11-20 20:28:29 -0600457# endif
Glenn Randers-Pehrsondbed41f2008-08-19 18:20:52 -0500458#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500459}
460
Glenn Randers-Pehrson65d235a2009-11-02 11:32:30 -0600461#ifdef PNG_CONVERT_tIME_SUPPORTED
Glenn Randers-Pehrson99106de2009-11-01 16:26:14 -0600462/* "tm" structure is not supported on WindowsCE */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500463void PNGAPI
John Bowlerbaeb6d12011-11-26 18:21:02 -0600464png_convert_from_struct_tm(png_timep ptime, PNG_CONST struct tm * ttime)
Guy Schalnat0d580581995-07-20 02:43:20 -0500465{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500466 png_debug(1, "in png_convert_from_struct_tm");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500467
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600468 ptime->year = (png_uint_16)(1900 + ttime->tm_year);
469 ptime->month = (png_byte)(ttime->tm_mon + 1);
470 ptime->day = (png_byte)ttime->tm_mday;
471 ptime->hour = (png_byte)ttime->tm_hour;
472 ptime->minute = (png_byte)ttime->tm_min;
473 ptime->second = (png_byte)ttime->tm_sec;
Guy Schalnat0d580581995-07-20 02:43:20 -0500474}
475
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500476void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600477png_convert_from_time_t(png_timep ptime, time_t ttime)
Guy Schalnat0d580581995-07-20 02:43:20 -0500478{
479 struct tm *tbuf;
480
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500481 png_debug(1, "in png_convert_from_time_t");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500482
Guy Schalnat0d580581995-07-20 02:43:20 -0500483 tbuf = gmtime(&ttime);
484 png_convert_from_struct_tm(ptime, tbuf);
485}
Guy Schalnat6d764711995-12-19 03:22:19 -0600486#endif
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500487
Andreas Dilger47a0c421997-05-16 02:46:07 -0500488/* Initialize png_ptr structure, and allocate any memory needed */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500489PNG_FUNCTION(png_structp,PNGAPI
490png_create_write_struct,(png_const_charp user_png_ver, png_voidp error_ptr,
491 png_error_ptr error_fn, png_error_ptr warn_fn),PNG_ALLOCATED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500492{
John Bowlerd332c672011-12-21 17:36:12 -0600493#ifndef PNG_USER_MEM_SUPPORTED
John Bowler5d567862011-12-24 09:12:00 -0600494 png_structrp png_ptr = png_create_png_struct(user_png_ver, error_ptr,
John Bowlerd332c672011-12-21 17:36:12 -0600495 error_fn, warn_fn, NULL, NULL, NULL);
496#else
497 return png_create_write_struct_2(user_png_ver, error_ptr, error_fn,
498 warn_fn, NULL, NULL, NULL);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500499}
500
501/* Alternate initialize png_ptr structure, and allocate any memory needed */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500502PNG_FUNCTION(png_structp,PNGAPI
503png_create_write_struct_2,(png_const_charp user_png_ver, png_voidp error_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600504 png_error_ptr error_fn, png_error_ptr warn_fn, png_voidp mem_ptr,
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500505 png_malloc_ptr malloc_fn, png_free_ptr free_fn),PNG_ALLOCATED)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500506{
John Bowler5d567862011-12-24 09:12:00 -0600507 png_structrp png_ptr = png_create_png_struct(user_png_ver, error_ptr,
John Bowlerd332c672011-12-21 17:36:12 -0600508 error_fn, warn_fn, mem_ptr, malloc_fn, free_fn);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500509#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500510
John Bowler42a2b552012-03-05 20:57:40 -0600511 /* Set the zlib control values to defaults; they can be overridden by the
512 * application after the struct has been created.
513 */
John Bowlerb5d00512012-03-09 09:15:18 -0600514 png_ptr->zbuffer_size = PNG_ZBUF_SIZE;
515
John Bowler42a2b552012-03-05 20:57:40 -0600516 png_ptr->zlib_strategy = Z_FILTERED; /* may be overridden if no filters */
517 png_ptr->zlib_level = Z_DEFAULT_COMPRESSION;
518 png_ptr->zlib_mem_level = 8;
519 png_ptr->zlib_window_bits = 15;
520 png_ptr->zlib_method = 8;
521
522#ifdef PNG_WRITE_COMPRESSED_TEXT_SUPPORTED
523 png_ptr->zlib_text_strategy = Z_DEFAULT_STRATEGY;
524 png_ptr->zlib_text_level = Z_DEFAULT_COMPRESSION;
525 png_ptr->zlib_text_mem_level = 8;
526 png_ptr->zlib_text_window_bits = 15;
527 png_ptr->zlib_text_method = 8;
528#endif /* PNG_WRITE_COMPRESSED_TEXT_SUPPORTED */
529
John Bowleraa816c42012-03-16 07:39:49 -0500530 /* This is a highly dubious configuration option; by default it is off, but
531 * it may be appropriate for private builds that are testing extensions not
532 * conformant to the current specification, or of applications that must not
533 * fail to write at all costs!
534 */
535# ifdef PNG_BENIGN_WRITE_ERRORS_SUPPORTED
536 png_ptr->flags |= PNG_FLAG_BENIGN_ERRORS_WARN;
John Bowler921648a2012-03-28 23:36:12 -0500537 /* In stable builds only warn if an application error can be completely
538 * handled.
539 */
540# endif
541
542 /* App warnings are warnings in release (or release candidate) builds but
543 * are errors during development.
544 */
545# if PNG_LIBPNG_BUILD_BASE_TYPE >= PNG_LIBPNG_BUILD_RC
546 png_ptr->flags |= PNG_FLAG_APP_WARNINGS_WARN;
John Bowleraa816c42012-03-16 07:39:49 -0500547# endif
548
John Bowlerd332c672011-12-21 17:36:12 -0600549 if (png_ptr != NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500550 {
John Bowlerd332c672011-12-21 17:36:12 -0600551 /* TODO: delay this, it can be done in png_init_io() (if the app doesn't
552 * do it itself) avoiding setting the default function if it is not
553 * required.
554 */
555 png_set_write_fn(png_ptr, NULL, NULL, NULL);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500556 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500557
John Bowlerd332c672011-12-21 17:36:12 -0600558 return png_ptr;
Guy Schalnate5a37791996-06-05 15:50:50 -0500559}
560
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500561
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600562/* Write a few rows of image data. If the image is interlaced,
563 * either you will have to write the 7 sub images, or, if you
564 * have called png_set_interlace_handling(), you will have to
565 * "write" the image seven times.
566 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500567void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600568png_write_rows(png_structrp png_ptr, png_bytepp row,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600569 png_uint_32 num_rows)
Guy Schalnat0d580581995-07-20 02:43:20 -0500570{
571 png_uint_32 i; /* row counter */
Guy Schalnat6d764711995-12-19 03:22:19 -0600572 png_bytepp rp; /* row pointer */
Guy Schalnat0d580581995-07-20 02:43:20 -0500573
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500574 png_debug(1, "in png_write_rows");
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600575
576 if (png_ptr == NULL)
577 return;
578
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500579 /* Loop through the rows */
Guy Schalnat0d580581995-07-20 02:43:20 -0500580 for (i = 0, rp = row; i < num_rows; i++, rp++)
581 {
582 png_write_row(png_ptr, *rp);
583 }
584}
585
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600586/* Write the image. You only need to call this function once, even
587 * if you are writing an interlaced image.
588 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500589void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600590png_write_image(png_structrp png_ptr, png_bytepp image)
Guy Schalnat0d580581995-07-20 02:43:20 -0500591{
592 png_uint_32 i; /* row index */
593 int pass, num_pass; /* pass variables */
Guy Schalnat6d764711995-12-19 03:22:19 -0600594 png_bytepp rp; /* points to current row */
Guy Schalnat0d580581995-07-20 02:43:20 -0500595
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600596 if (png_ptr == NULL)
597 return;
598
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500599 png_debug(1, "in png_write_image");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500600
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500601#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500602 /* Initialize interlace handling. If image is not interlaced,
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500603 * this will set pass to 1
604 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500605 num_pass = png_set_interlace_handling(png_ptr);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600606#else
607 num_pass = 1;
608#endif
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500609 /* Loop through passes */
Guy Schalnat0d580581995-07-20 02:43:20 -0500610 for (pass = 0; pass < num_pass; pass++)
611 {
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500612 /* Loop through image */
Guy Schalnat0d580581995-07-20 02:43:20 -0500613 for (i = 0, rp = image; i < png_ptr->height; i++, rp++)
614 {
615 png_write_row(png_ptr, *rp);
616 }
617 }
618}
619
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500620/* Called by user to write a row of image data */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500621void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600622png_write_row(png_structrp png_ptr, png_const_bytep row)
Guy Schalnat0d580581995-07-20 02:43:20 -0500623{
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500624 /* 1.5.6: moved from png_struct to be a local structure: */
625 png_row_info row_info;
626
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600627 if (png_ptr == NULL)
628 return;
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500629
Glenn Randers-Pehrson632a84e2010-03-09 22:28:33 -0600630 png_debug2(1, "in png_write_row (row %u, pass %d)",
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600631 png_ptr->row_number, png_ptr->pass);
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600632
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500633 /* Initialize transformations and other stuff if first time */
Guy Schalnat6d764711995-12-19 03:22:19 -0600634 if (png_ptr->row_number == 0 && png_ptr->pass == 0)
Guy Schalnat0d580581995-07-20 02:43:20 -0500635 {
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500636 /* Make sure we wrote the header info */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500637 if (!(png_ptr->mode & PNG_WROTE_INFO_BEFORE_PLTE))
638 png_error(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600639 "png_write_info was never called before png_write_row");
Glenn Randers-Pehrson5cded0b2001-11-07 07:10:08 -0600640
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500641 /* Check for transforms that have been set but were defined out */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500642#if !defined(PNG_WRITE_INVERT_SUPPORTED) && defined(PNG_READ_INVERT_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500643 if (png_ptr->transformations & PNG_INVERT_MONO)
644 png_warning(png_ptr, "PNG_WRITE_INVERT_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500645#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500646
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500647#if !defined(PNG_WRITE_FILLER_SUPPORTED) && defined(PNG_READ_FILLER_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500648 if (png_ptr->transformations & PNG_FILLER)
649 png_warning(png_ptr, "PNG_WRITE_FILLER_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500650#endif
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600651#if !defined(PNG_WRITE_PACKSWAP_SUPPORTED) && \
652 defined(PNG_READ_PACKSWAP_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500653 if (png_ptr->transformations & PNG_PACKSWAP)
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600654 png_warning(png_ptr,
655 "PNG_WRITE_PACKSWAP_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500656#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500657
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500658#if !defined(PNG_WRITE_PACK_SUPPORTED) && defined(PNG_READ_PACK_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500659 if (png_ptr->transformations & PNG_PACK)
660 png_warning(png_ptr, "PNG_WRITE_PACK_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500661#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500662
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500663#if !defined(PNG_WRITE_SHIFT_SUPPORTED) && defined(PNG_READ_SHIFT_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500664 if (png_ptr->transformations & PNG_SHIFT)
665 png_warning(png_ptr, "PNG_WRITE_SHIFT_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500666#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500667
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500668#if !defined(PNG_WRITE_BGR_SUPPORTED) && defined(PNG_READ_BGR_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500669 if (png_ptr->transformations & PNG_BGR)
670 png_warning(png_ptr, "PNG_WRITE_BGR_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500671#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500672
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500673#if !defined(PNG_WRITE_SWAP_SUPPORTED) && defined(PNG_READ_SWAP_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500674 if (png_ptr->transformations & PNG_SWAP_BYTES)
675 png_warning(png_ptr, "PNG_WRITE_SWAP_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500676#endif
677
Guy Schalnat0d580581995-07-20 02:43:20 -0500678 png_write_start_row(png_ptr);
679 }
680
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500681#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500682 /* If interlaced and not interested in row, return */
Guy Schalnat0d580581995-07-20 02:43:20 -0500683 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
684 {
685 switch (png_ptr->pass)
686 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600687 case 0:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600688 if (png_ptr->row_number & 0x07)
Guy Schalnat0d580581995-07-20 02:43:20 -0500689 {
690 png_write_finish_row(png_ptr);
691 return;
692 }
693 break;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500694
Guy Schalnat0d580581995-07-20 02:43:20 -0500695 case 1:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600696 if ((png_ptr->row_number & 0x07) || png_ptr->width < 5)
Guy Schalnat0d580581995-07-20 02:43:20 -0500697 {
698 png_write_finish_row(png_ptr);
699 return;
700 }
701 break;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500702
Guy Schalnat0d580581995-07-20 02:43:20 -0500703 case 2:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600704 if ((png_ptr->row_number & 0x07) != 4)
Guy Schalnat0d580581995-07-20 02:43:20 -0500705 {
706 png_write_finish_row(png_ptr);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600707 return;
Guy Schalnat0d580581995-07-20 02:43:20 -0500708 }
709 break;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500710
Guy Schalnat0d580581995-07-20 02:43:20 -0500711 case 3:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600712 if ((png_ptr->row_number & 0x03) || png_ptr->width < 3)
Guy Schalnat0d580581995-07-20 02:43:20 -0500713 {
714 png_write_finish_row(png_ptr);
715 return;
716 }
717 break;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500718
Guy Schalnat0d580581995-07-20 02:43:20 -0500719 case 4:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600720 if ((png_ptr->row_number & 0x03) != 2)
Guy Schalnat0d580581995-07-20 02:43:20 -0500721 {
722 png_write_finish_row(png_ptr);
723 return;
724 }
725 break;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500726
Guy Schalnat0d580581995-07-20 02:43:20 -0500727 case 5:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600728 if ((png_ptr->row_number & 0x01) || png_ptr->width < 2)
Guy Schalnat0d580581995-07-20 02:43:20 -0500729 {
730 png_write_finish_row(png_ptr);
731 return;
732 }
733 break;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500734
Guy Schalnat0d580581995-07-20 02:43:20 -0500735 case 6:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600736 if (!(png_ptr->row_number & 0x01))
Guy Schalnat0d580581995-07-20 02:43:20 -0500737 {
738 png_write_finish_row(png_ptr);
739 return;
740 }
741 break;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500742
743 default: /* error: ignore it */
744 break;
Guy Schalnat0d580581995-07-20 02:43:20 -0500745 }
746 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600747#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500748
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500749 /* Set up row info for transformations */
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500750 row_info.color_type = png_ptr->color_type;
751 row_info.width = png_ptr->usr_width;
752 row_info.channels = png_ptr->usr_channels;
753 row_info.bit_depth = png_ptr->usr_bit_depth;
754 row_info.pixel_depth = (png_byte)(row_info.bit_depth * row_info.channels);
755 row_info.rowbytes = PNG_ROWBYTES(row_info.pixel_depth, row_info.width);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600756
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500757 png_debug1(3, "row_info->color_type = %d", row_info.color_type);
758 png_debug1(3, "row_info->width = %u", row_info.width);
759 png_debug1(3, "row_info->channels = %d", row_info.channels);
760 png_debug1(3, "row_info->bit_depth = %d", row_info.bit_depth);
761 png_debug1(3, "row_info->pixel_depth = %d", row_info.pixel_depth);
762 png_debug1(3, "row_info->rowbytes = %lu", (unsigned long)row_info.rowbytes);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500763
764 /* Copy user's row into buffer, leaving room for filter byte. */
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500765 png_memcpy(png_ptr->row_buf + 1, row, row_info.rowbytes);
Guy Schalnat0d580581995-07-20 02:43:20 -0500766
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500767#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500768 /* Handle interlacing */
Guy Schalnat0d580581995-07-20 02:43:20 -0500769 if (png_ptr->interlaced && png_ptr->pass < 6 &&
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500770 (png_ptr->transformations & PNG_INTERLACE))
Guy Schalnat0d580581995-07-20 02:43:20 -0500771 {
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500772 png_do_write_interlace(&row_info, png_ptr->row_buf + 1, png_ptr->pass);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500773 /* This should always get caught above, but still ... */
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500774 if (!(row_info.width))
Guy Schalnat0d580581995-07-20 02:43:20 -0500775 {
776 png_write_finish_row(png_ptr);
777 return;
778 }
779 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600780#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500781
John Bowler4a12f4a2011-04-17 18:34:22 -0500782#ifdef PNG_WRITE_TRANSFORMS_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500783 /* Handle other transformations */
Guy Schalnat0d580581995-07-20 02:43:20 -0500784 if (png_ptr->transformations)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500785 png_do_write_transformations(png_ptr, &row_info);
John Bowler4a12f4a2011-04-17 18:34:22 -0500786#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500787
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500788 /* At this point the row_info pixel depth must match the 'transformed' depth,
789 * which is also the output depth.
790 */
791 if (row_info.pixel_depth != png_ptr->pixel_depth ||
792 row_info.pixel_depth != png_ptr->transformed_pixel_depth)
793 png_error(png_ptr, "internal write transform logic error");
794
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500795#ifdef PNG_MNG_FEATURES_SUPPORTED
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -0600796 /* Write filter_method 64 (intrapixel differencing) only if
797 * 1. Libpng was compiled with PNG_MNG_FEATURES_SUPPORTED and
798 * 2. Libpng did not write a PNG signature (this filter_method is only
799 * used in PNG datastreams that are embedded in MNG datastreams) and
800 * 3. The application called png_permit_mng_features with a mask that
801 * included PNG_FLAG_MNG_FILTER_64 and
802 * 4. The filter_method is 64 and
803 * 5. The color_type is RGB or RGBA
804 */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500805 if ((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500806 (png_ptr->filter_type == PNG_INTRAPIXEL_DIFFERENCING))
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -0600807 {
808 /* Intrapixel differencing */
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500809 png_do_write_intrapixel(&row_info, png_ptr->row_buf + 1);
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -0600810 }
811#endif
812
Glenn Randers-Pehrson363ae652012-03-01 21:39:29 -0600813/* Added at libpng-1.5.10 */
814#ifdef PNG_WRITE_CHECK_FOR_INVALID_INDEX_SUPPORTED
John Bowlerdee75772012-03-01 18:55:54 -0600815 /* Check for out-of-range palette index */
Glenn Randers-Pehrsoneeb1bb62012-03-02 22:10:15 -0600816 if(row_info.color_type == PNG_COLOR_TYPE_PALETTE)
817 png_do_check_palette_indexes(png_ptr, &row_info);
John Bowlerdee75772012-03-01 18:55:54 -0600818#endif
819
Andreas Dilger47a0c421997-05-16 02:46:07 -0500820 /* Find a filter if necessary, filter the row and write it out. */
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500821 png_write_find_filter(png_ptr, &row_info);
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600822
823 if (png_ptr->write_row_fn != NULL)
824 (*(png_ptr->write_row_fn))(png_ptr, png_ptr->row_number, png_ptr->pass);
Guy Schalnat0d580581995-07-20 02:43:20 -0500825}
826
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500827#ifdef PNG_WRITE_FLUSH_SUPPORTED
Guy Schalnat0f716451995-11-28 11:22:13 -0600828/* Set the automatic flush interval or 0 to turn flushing off */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500829void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600830png_set_flush(png_structrp png_ptr, int nrows)
Guy Schalnat0f716451995-11-28 11:22:13 -0600831{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500832 png_debug(1, "in png_set_flush");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500833
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600834 if (png_ptr == NULL)
835 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500836
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600837 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
Guy Schalnat0f716451995-11-28 11:22:13 -0600838}
839
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500840/* Flush the current output buffers now */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500841void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600842png_write_flush(png_structrp png_ptr)
Guy Schalnat0f716451995-11-28 11:22:13 -0600843{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500844 png_debug(1, "in png_write_flush");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500845
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600846 if (png_ptr == NULL)
847 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500848
Guy Schalnate5a37791996-06-05 15:50:50 -0500849 /* We have already written out all of the data */
850 if (png_ptr->row_number >= png_ptr->num_rows)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500851 return;
Guy Schalnat0f716451995-11-28 11:22:13 -0600852
John Bowlerb5d00512012-03-09 09:15:18 -0600853 png_compress_IDAT(png_ptr, NULL, 0, Z_SYNC_FLUSH);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600854 png_ptr->flush_rows = 0;
855 png_flush(png_ptr);
Guy Schalnat0f716451995-11-28 11:22:13 -0600856}
857#endif /* PNG_WRITE_FLUSH_SUPPORTED */
858
John Bowlerd332c672011-12-21 17:36:12 -0600859#ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
John Bowler5d567862011-12-24 09:12:00 -0600860static void png_reset_filter_heuristics(png_structrp png_ptr); /* forward decl */
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500861#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600862
John Bowlerd332c672011-12-21 17:36:12 -0600863/* Free any memory used in png_ptr struct without freeing the struct itself. */
864static void
John Bowler5d567862011-12-24 09:12:00 -0600865png_write_destroy(png_structrp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500866{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500867 png_debug(1, "in png_write_destroy");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500868
869 /* Free any memory zlib uses */
John Bowler42a2b552012-03-05 20:57:40 -0600870 if (png_ptr->flags & PNG_FLAG_ZSTREAM_INITIALIZED)
John Bowlerc5bef942011-05-05 17:35:39 -0500871 deflateEnd(&png_ptr->zstream);
Guy Schalnate5a37791996-06-05 15:50:50 -0500872
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500873 /* Free our memory. png_free checks NULL for us. */
John Bowlerb5d00512012-03-09 09:15:18 -0600874 png_free_buffer_list(png_ptr, &png_ptr->zbuffer_list);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600875 png_free(png_ptr, png_ptr->row_buf);
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500876#ifdef PNG_WRITE_FILTER_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600877 png_free(png_ptr, png_ptr->prev_row);
878 png_free(png_ptr, png_ptr->sub_row);
879 png_free(png_ptr, png_ptr->up_row);
880 png_free(png_ptr, png_ptr->avg_row);
881 png_free(png_ptr, png_ptr->paeth_row);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500882#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600883
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500884#ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500885 /* Use this to save a little code space, it doesn't free the filter_costs */
886 png_reset_filter_heuristics(png_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500887 png_free(png_ptr, png_ptr->filter_costs);
888 png_free(png_ptr, png_ptr->inv_filter_costs);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600889#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500890
John Bowlerd332c672011-12-21 17:36:12 -0600891#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
892 png_free(png_ptr, png_ptr->chunk_list);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600893#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500894
John Bowlerd332c672011-12-21 17:36:12 -0600895 /* The error handling and memory handling information is left intact at this
896 * point: the jmp_buf may still have to be freed. See png_destroy_png_struct
897 * for how this happens.
898 */
899}
Guy Schalnate5a37791996-06-05 15:50:50 -0500900
John Bowlerd332c672011-12-21 17:36:12 -0600901/* Free all memory used by the write.
902 * In libpng 1.6.0 this API changed quietly to no longer accept a NULL value for
903 * *png_ptr_ptr. Prior to 1.6.0 it would accept such a value and it would free
904 * the passed in info_structs but it would quietly fail to free any of the data
905 * inside them. In 1.6.0 it quietly does nothing (it has to be quiet because it
906 * has no png_ptr.)
907 */
908void PNGAPI
909png_destroy_write_struct(png_structpp png_ptr_ptr, png_infopp info_ptr_ptr)
910{
911 png_debug(1, "in png_destroy_write_struct");
Guy Schalnate5a37791996-06-05 15:50:50 -0500912
John Bowlerd332c672011-12-21 17:36:12 -0600913 if (png_ptr_ptr != NULL)
914 {
John Bowler5d567862011-12-24 09:12:00 -0600915 png_structrp png_ptr = *png_ptr_ptr;
Guy Schalnate5a37791996-06-05 15:50:50 -0500916
John Bowlerd332c672011-12-21 17:36:12 -0600917 if (png_ptr != NULL) /* added in libpng 1.6.0 */
918 {
919 png_destroy_info_struct(png_ptr, info_ptr_ptr);
920
921 *png_ptr_ptr = NULL;
922 png_write_destroy(png_ptr);
923 png_destroy_png_struct(png_ptr);
924 }
925 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500926}
Guy Schalnate5a37791996-06-05 15:50:50 -0500927
Andreas Dilger47a0c421997-05-16 02:46:07 -0500928/* Allow the application to select one or more row filters to use. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500929void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600930png_set_filter(png_structrp png_ptr, int method, int filters)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500931{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500932 png_debug(1, "in png_set_filter");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500933
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600934 if (png_ptr == NULL)
935 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500936
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500937#ifdef PNG_MNG_FEATURES_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500938 if ((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600939 (method == PNG_INTRAPIXEL_DIFFERENCING))
940 method = PNG_FILTER_TYPE_BASE;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500941
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -0600942#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500943 if (method == PNG_FILTER_TYPE_BASE)
Guy Schalnate5a37791996-06-05 15:50:50 -0500944 {
945 switch (filters & (PNG_ALL_FILTERS | 0x07))
946 {
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500947#ifdef PNG_WRITE_FILTER_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -0500948 case 5:
949 case 6:
Andreas Dilger47a0c421997-05-16 02:46:07 -0500950 case 7: png_warning(png_ptr, "Unknown row filter for method 0");
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500951#endif /* PNG_WRITE_FILTER_SUPPORTED */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500952 case PNG_FILTER_VALUE_NONE:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600953 png_ptr->do_filter = PNG_FILTER_NONE; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500954
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500955#ifdef PNG_WRITE_FILTER_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500956 case PNG_FILTER_VALUE_SUB:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600957 png_ptr->do_filter = PNG_FILTER_SUB; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500958
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500959 case PNG_FILTER_VALUE_UP:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600960 png_ptr->do_filter = PNG_FILTER_UP; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500961
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500962 case PNG_FILTER_VALUE_AVG:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600963 png_ptr->do_filter = PNG_FILTER_AVG; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500964
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500965 case PNG_FILTER_VALUE_PAETH:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600966 png_ptr->do_filter = PNG_FILTER_PAETH; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500967
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600968 default:
969 png_ptr->do_filter = (png_byte)filters; break;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500970#else
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600971 default:
972 png_warning(png_ptr, "Unknown row filter for method 0");
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500973#endif /* PNG_WRITE_FILTER_SUPPORTED */
Guy Schalnate5a37791996-06-05 15:50:50 -0500974 }
975
Andreas Dilger47a0c421997-05-16 02:46:07 -0500976 /* If we have allocated the row_buf, this means we have already started
977 * with the image and we should have allocated all of the filter buffers
978 * that have been selected. If prev_row isn't already allocated, then
979 * it is too late to start using the filters that need it, since we
980 * will be missing the data in the previous row. If an application
981 * wants to start and stop using particular filters during compression,
982 * it should start out with all of the filters, and then add and
983 * remove them after the start of compression.
Guy Schalnate5a37791996-06-05 15:50:50 -0500984 */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500985 if (png_ptr->row_buf != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500986 {
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500987#ifdef PNG_WRITE_FILTER_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600988 if ((png_ptr->do_filter & PNG_FILTER_SUB) && png_ptr->sub_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500989 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500990 png_ptr->sub_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600991 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500992 png_ptr->sub_row[0] = PNG_FILTER_VALUE_SUB;
Guy Schalnate5a37791996-06-05 15:50:50 -0500993 }
994
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600995 if ((png_ptr->do_filter & PNG_FILTER_UP) && png_ptr->up_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500996 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500997 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500998 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500999 png_warning(png_ptr, "Can't add Up filter after starting");
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001000 png_ptr->do_filter = (png_byte)(png_ptr->do_filter &
1001 ~PNG_FILTER_UP);
Guy Schalnate5a37791996-06-05 15:50:50 -05001002 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001003
Guy Schalnate5a37791996-06-05 15:50:50 -05001004 else
1005 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001006 png_ptr->up_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001007 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001008 png_ptr->up_row[0] = PNG_FILTER_VALUE_UP;
Guy Schalnate5a37791996-06-05 15:50:50 -05001009 }
1010 }
1011
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001012 if ((png_ptr->do_filter & PNG_FILTER_AVG) && png_ptr->avg_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001013 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001014 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001015 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001016 png_warning(png_ptr, "Can't add Average filter after starting");
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001017 png_ptr->do_filter = (png_byte)(png_ptr->do_filter &
1018 ~PNG_FILTER_AVG);
Guy Schalnate5a37791996-06-05 15:50:50 -05001019 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001020
Guy Schalnate5a37791996-06-05 15:50:50 -05001021 else
1022 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001023 png_ptr->avg_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001024 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001025 png_ptr->avg_row[0] = PNG_FILTER_VALUE_AVG;
Guy Schalnate5a37791996-06-05 15:50:50 -05001026 }
1027 }
1028
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001029 if ((png_ptr->do_filter & PNG_FILTER_PAETH) &&
Andreas Dilger47a0c421997-05-16 02:46:07 -05001030 png_ptr->paeth_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001031 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001032 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001033 {
1034 png_warning(png_ptr, "Can't add Paeth filter after starting");
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05001035 png_ptr->do_filter &= (png_byte)(~PNG_FILTER_PAETH);
Guy Schalnate5a37791996-06-05 15:50:50 -05001036 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001037
Guy Schalnate5a37791996-06-05 15:50:50 -05001038 else
1039 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001040 png_ptr->paeth_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001041 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001042 png_ptr->paeth_row[0] = PNG_FILTER_VALUE_PAETH;
Guy Schalnate5a37791996-06-05 15:50:50 -05001043 }
1044 }
1045
1046 if (png_ptr->do_filter == PNG_NO_FILTERS)
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001047#endif /* PNG_WRITE_FILTER_SUPPORTED */
Guy Schalnate5a37791996-06-05 15:50:50 -05001048 png_ptr->do_filter = PNG_FILTER_NONE;
1049 }
1050 }
1051 else
Andreas Dilger47a0c421997-05-16 02:46:07 -05001052 png_error(png_ptr, "Unknown custom filter method");
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001053}
1054
Andreas Dilger47a0c421997-05-16 02:46:07 -05001055/* This allows us to influence the way in which libpng chooses the "best"
1056 * filter for the current scanline. While the "minimum-sum-of-absolute-
1057 * differences metric is relatively fast and effective, there is some
1058 * question as to whether it can be improved upon by trying to keep the
1059 * filtered data going to zlib more consistent, hopefully resulting in
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001060 * better compression.
1061 */
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001062#ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED /* GRR 970116 */
Glenn Randers-Pehrson47dc5f72011-03-30 09:59:02 -05001063/* Convenience reset API. */
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001064static void
John Bowler5d567862011-12-24 09:12:00 -06001065png_reset_filter_heuristics(png_structrp png_ptr)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001066{
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001067 /* Clear out any old values in the 'weights' - this must be done because if
1068 * the app calls set_filter_heuristics multiple times with different
1069 * 'num_weights' values we would otherwise potentially have wrong sized
1070 * arrays.
1071 */
1072 png_ptr->num_prev_filters = 0;
1073 png_ptr->heuristic_method = PNG_FILTER_HEURISTIC_UNWEIGHTED;
1074 if (png_ptr->prev_filters != NULL)
1075 {
1076 png_bytep old = png_ptr->prev_filters;
1077 png_ptr->prev_filters = NULL;
1078 png_free(png_ptr, old);
1079 }
1080 if (png_ptr->filter_weights != NULL)
1081 {
1082 png_uint_16p old = png_ptr->filter_weights;
1083 png_ptr->filter_weights = NULL;
1084 png_free(png_ptr, old);
1085 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001086
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001087 if (png_ptr->inv_filter_weights != NULL)
1088 {
1089 png_uint_16p old = png_ptr->inv_filter_weights;
1090 png_ptr->inv_filter_weights = NULL;
1091 png_free(png_ptr, old);
1092 }
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001093
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001094 /* Leave the filter_costs - this array is fixed size. */
1095}
1096
1097static int
John Bowler5d567862011-12-24 09:12:00 -06001098png_init_filter_heuristics(png_structrp png_ptr, int heuristic_method,
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001099 int num_weights)
1100{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001101 if (png_ptr == NULL)
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001102 return 0;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001103
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001104 /* Clear out the arrays */
1105 png_reset_filter_heuristics(png_ptr);
1106
1107 /* Check arguments; the 'reset' function makes the correct settings for the
1108 * unweighted case, but we must handle the weight case by initializing the
1109 * arrays for the caller.
1110 */
1111 if (heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001112 {
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001113 int i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001114
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001115 if (num_weights > 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001116 {
1117 png_ptr->prev_filters = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001118 (png_uint_32)(png_sizeof(png_byte) * num_weights));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001119
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001120 /* To make sure that the weighting starts out fairly */
1121 for (i = 0; i < num_weights; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001122 {
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001123 png_ptr->prev_filters[i] = 255;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001124 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001125
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001126 png_ptr->filter_weights = (png_uint_16p)png_malloc(png_ptr,
1127 (png_uint_32)(png_sizeof(png_uint_16) * num_weights));
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001128
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001129 png_ptr->inv_filter_weights = (png_uint_16p)png_malloc(png_ptr,
1130 (png_uint_32)(png_sizeof(png_uint_16) * num_weights));
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001131
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001132 for (i = 0; i < num_weights; i++)
1133 {
1134 png_ptr->inv_filter_weights[i] =
1135 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
1136 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001137
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001138 /* Safe to set this now */
1139 png_ptr->num_prev_filters = (png_byte)num_weights;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001140 }
1141
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001142 /* If, in the future, there are other filter methods, this would
1143 * need to be based on png_ptr->filter.
1144 */
1145 if (png_ptr->filter_costs == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001146 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001147 png_ptr->filter_costs = (png_uint_16p)png_malloc(png_ptr,
1148 (png_uint_32)(png_sizeof(png_uint_16) * PNG_FILTER_VALUE_LAST));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001149
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001150 png_ptr->inv_filter_costs = (png_uint_16p)png_malloc(png_ptr,
1151 (png_uint_32)(png_sizeof(png_uint_16) * PNG_FILTER_VALUE_LAST));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001152 }
1153
Andreas Dilger47a0c421997-05-16 02:46:07 -05001154 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++)
1155 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001156 png_ptr->inv_filter_costs[i] =
1157 png_ptr->filter_costs[i] = PNG_COST_FACTOR;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001158 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001159
1160 /* All the arrays are inited, safe to set this: */
1161 png_ptr->heuristic_method = PNG_FILTER_HEURISTIC_WEIGHTED;
1162
1163 /* Return the 'ok' code. */
1164 return 1;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001165 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001166 else if (heuristic_method == PNG_FILTER_HEURISTIC_DEFAULT ||
1167 heuristic_method == PNG_FILTER_HEURISTIC_UNWEIGHTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001168 {
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001169 return 1;
1170 }
1171 else
1172 {
1173 png_warning(png_ptr, "Unknown filter heuristic method");
1174 return 0;
1175 }
1176}
1177
1178/* Provide floating and fixed point APIs */
1179#ifdef PNG_FLOATING_POINT_SUPPORTED
1180void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001181png_set_filter_heuristics(png_structrp png_ptr, int heuristic_method,
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001182 int num_weights, png_const_doublep filter_weights,
1183 png_const_doublep filter_costs)
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001184{
1185 png_debug(1, "in png_set_filter_heuristics");
1186
1187 /* The internal API allocates all the arrays and ensures that the elements of
1188 * those arrays are set to the default value.
1189 */
1190 if (!png_init_filter_heuristics(png_ptr, heuristic_method, num_weights))
1191 return;
1192
1193 /* If using the weighted method copy in the weights. */
1194 if (heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1195 {
1196 int i;
1197 for (i = 0; i < num_weights; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001198 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001199 if (filter_weights[i] <= 0.0)
1200 {
1201 png_ptr->inv_filter_weights[i] =
1202 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
1203 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001204
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001205 else
1206 {
1207 png_ptr->inv_filter_weights[i] =
1208 (png_uint_16)(PNG_WEIGHT_FACTOR*filter_weights[i]+.5);
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001209
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001210 png_ptr->filter_weights[i] =
1211 (png_uint_16)(PNG_WEIGHT_FACTOR/filter_weights[i]+.5);
1212 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001213 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001214
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001215 /* Here is where we set the relative costs of the different filters. We
1216 * should take the desired compression level into account when setting
1217 * the costs, so that Paeth, for instance, has a high relative cost at low
1218 * compression levels, while it has a lower relative cost at higher
1219 * compression settings. The filter types are in order of increasing
1220 * relative cost, so it would be possible to do this with an algorithm.
1221 */
1222 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++) if (filter_costs[i] >= 1.0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001223 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001224 png_ptr->inv_filter_costs[i] =
1225 (png_uint_16)(PNG_COST_FACTOR / filter_costs[i] + .5);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001226
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001227 png_ptr->filter_costs[i] =
1228 (png_uint_16)(PNG_COST_FACTOR * filter_costs[i] + .5);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001229 }
1230 }
1231}
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001232#endif /* FLOATING_POINT */
1233
1234#ifdef PNG_FIXED_POINT_SUPPORTED
1235void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001236png_set_filter_heuristics_fixed(png_structrp png_ptr, int heuristic_method,
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001237 int num_weights, png_const_fixed_point_p filter_weights,
1238 png_const_fixed_point_p filter_costs)
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001239{
1240 png_debug(1, "in png_set_filter_heuristics_fixed");
1241
1242 /* The internal API allocates all the arrays and ensures that the elements of
1243 * those arrays are set to the default value.
1244 */
1245 if (!png_init_filter_heuristics(png_ptr, heuristic_method, num_weights))
1246 return;
1247
1248 /* If using the weighted method copy in the weights. */
1249 if (heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1250 {
1251 int i;
1252 for (i = 0; i < num_weights; i++)
1253 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001254 if (filter_weights[i] <= 0)
1255 {
1256 png_ptr->inv_filter_weights[i] =
1257 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
1258 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001259
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001260 else
1261 {
1262 png_ptr->inv_filter_weights[i] = (png_uint_16)
1263 ((PNG_WEIGHT_FACTOR*filter_weights[i]+PNG_FP_HALF)/PNG_FP_1);
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001264
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001265 png_ptr->filter_weights[i] = (png_uint_16)((PNG_WEIGHT_FACTOR*
1266 PNG_FP_1+(filter_weights[i]/2))/filter_weights[i]);
1267 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001268 }
1269
1270 /* Here is where we set the relative costs of the different filters. We
1271 * should take the desired compression level into account when setting
1272 * the costs, so that Paeth, for instance, has a high relative cost at low
1273 * compression levels, while it has a lower relative cost at higher
1274 * compression settings. The filter types are in order of increasing
1275 * relative cost, so it would be possible to do this with an algorithm.
1276 */
1277 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++)
1278 if (filter_costs[i] >= PNG_FP_1)
1279 {
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001280 png_uint_32 tmp;
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001281
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001282 /* Use a 32 bit unsigned temporary here because otherwise the
1283 * intermediate value will be a 32 bit *signed* integer (ANSI rules)
1284 * and this will get the wrong answer on division.
1285 */
1286 tmp = PNG_COST_FACTOR*PNG_FP_1 + (filter_costs[i]/2);
1287 tmp /= filter_costs[i];
1288
1289 png_ptr->inv_filter_costs[i] = (png_uint_16)tmp;
1290
1291 tmp = PNG_COST_FACTOR * filter_costs[i] + PNG_FP_HALF;
1292 tmp /= PNG_FP_1;
1293
1294 png_ptr->filter_costs[i] = (png_uint_16)tmp;
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001295 }
1296 }
1297}
1298#endif /* FIXED_POINT */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001299#endif /* PNG_WRITE_WEIGHTED_FILTER_SUPPORTED */
1300
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001301void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001302png_set_compression_level(png_structrp png_ptr, int level)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001303{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001304 png_debug(1, "in png_set_compression_level");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001305
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001306 if (png_ptr == NULL)
1307 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001308
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001309 png_ptr->zlib_level = level;
1310}
1311
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001312void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001313png_set_compression_mem_level(png_structrp png_ptr, int mem_level)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001314{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001315 png_debug(1, "in png_set_compression_mem_level");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001316
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001317 if (png_ptr == NULL)
1318 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001319
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001320 png_ptr->zlib_mem_level = mem_level;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001321}
1322
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001323void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001324png_set_compression_strategy(png_structrp png_ptr, int strategy)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001325{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001326 png_debug(1, "in png_set_compression_strategy");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001327
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001328 if (png_ptr == NULL)
1329 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001330
John Bowler42a2b552012-03-05 20:57:40 -06001331 /* The flag setting here prevents the libpng dynamic selection of strategy.
1332 */
Guy Schalnate5a37791996-06-05 15:50:50 -05001333 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_STRATEGY;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001334 png_ptr->zlib_strategy = strategy;
1335}
1336
Glenn Randers-Pehrsonaf855e42011-05-07 10:52:49 -05001337/* If PNG_WRITE_OPTIMIZE_CMF_SUPPORTED is defined, libpng will use a
1338 * smaller value of window_bits if it can do so safely.
1339 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001340void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001341png_set_compression_window_bits(png_structrp png_ptr, int window_bits)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001342{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001343 if (png_ptr == NULL)
1344 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001345
John Bowler42a2b552012-03-05 20:57:40 -06001346 /* Prior to 1.6.0 this would warn but then set the window_bits value, this
1347 * meant that negative window bits values could be selected which would cause
1348 * libpng to write a non-standard PNG file with raw deflate or gzip
1349 * compressed IDAT or ancilliary chunks. Such files can be read and there is
1350 * no warning on read, so this seems like a very bad idea.
1351 */
Guy Schalnate5a37791996-06-05 15:50:50 -05001352 if (window_bits > 15)
John Bowler42a2b552012-03-05 20:57:40 -06001353 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001354 png_warning(png_ptr, "Only compression windows <= 32k supported by PNG");
John Bowler42a2b552012-03-05 20:57:40 -06001355 window_bits = 15;
1356 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001357
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001358 else if (window_bits < 8)
John Bowler42a2b552012-03-05 20:57:40 -06001359 {
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001360 png_warning(png_ptr, "Only compression windows >= 256 supported by PNG");
John Bowler42a2b552012-03-05 20:57:40 -06001361 window_bits = 8;
1362 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001363
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001364 png_ptr->zlib_window_bits = window_bits;
1365}
1366
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001367void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001368png_set_compression_method(png_structrp png_ptr, int method)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001369{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001370 png_debug(1, "in png_set_compression_method");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001371
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001372 if (png_ptr == NULL)
1373 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001374
John Bowler42a2b552012-03-05 20:57:40 -06001375 /* This would produce an invalid PNG file if it worked, but it doesn't and
1376 * deflate will fault it, so it is harmless to just warn here.
1377 */
Guy Schalnate5a37791996-06-05 15:50:50 -05001378 if (method != 8)
1379 png_warning(png_ptr, "Only compression method 8 is supported by PNG");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001380
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001381 png_ptr->zlib_method = method;
Guy Schalnat0d580581995-07-20 02:43:20 -05001382}
1383
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001384/* The following were added to libpng-1.5.4 */
John Bowlerb2bee332011-06-10 23:24:58 -05001385#ifdef PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001386void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001387png_set_text_compression_level(png_structrp png_ptr, int level)
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001388{
1389 png_debug(1, "in png_set_text_compression_level");
1390
1391 if (png_ptr == NULL)
1392 return;
1393
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001394 png_ptr->zlib_text_level = level;
1395}
1396
1397void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001398png_set_text_compression_mem_level(png_structrp png_ptr, int mem_level)
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001399{
1400 png_debug(1, "in png_set_text_compression_mem_level");
1401
1402 if (png_ptr == NULL)
1403 return;
1404
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001405 png_ptr->zlib_text_mem_level = mem_level;
1406}
1407
1408void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001409png_set_text_compression_strategy(png_structrp png_ptr, int strategy)
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001410{
1411 png_debug(1, "in png_set_text_compression_strategy");
1412
1413 if (png_ptr == NULL)
1414 return;
1415
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001416 png_ptr->zlib_text_strategy = strategy;
1417}
1418
Glenn Randers-Pehrsonaf855e42011-05-07 10:52:49 -05001419/* If PNG_WRITE_OPTIMIZE_CMF_SUPPORTED is defined, libpng will use a
1420 * smaller value of window_bits if it can do so safely.
1421 */
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001422void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001423png_set_text_compression_window_bits(png_structrp png_ptr, int window_bits)
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001424{
1425 if (png_ptr == NULL)
1426 return;
1427
1428 if (window_bits > 15)
John Bowler42a2b552012-03-05 20:57:40 -06001429 {
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001430 png_warning(png_ptr, "Only compression windows <= 32k supported by PNG");
John Bowler42a2b552012-03-05 20:57:40 -06001431 window_bits = 15;
1432 }
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001433
1434 else if (window_bits < 8)
John Bowler42a2b552012-03-05 20:57:40 -06001435 {
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001436 png_warning(png_ptr, "Only compression windows >= 256 supported by PNG");
John Bowler42a2b552012-03-05 20:57:40 -06001437 window_bits = 8;
1438 }
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001439
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001440 png_ptr->zlib_text_window_bits = window_bits;
1441}
1442
1443void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001444png_set_text_compression_method(png_structrp png_ptr, int method)
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001445{
1446 png_debug(1, "in png_set_text_compression_method");
1447
1448 if (png_ptr == NULL)
1449 return;
1450
1451 if (method != 8)
1452 png_warning(png_ptr, "Only compression method 8 is supported by PNG");
1453
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001454 png_ptr->zlib_text_method = method;
1455}
John Bowlerb2bee332011-06-10 23:24:58 -05001456#endif /* PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED */
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001457/* end of API added to libpng-1.5.4 */
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001458
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001459void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001460png_set_write_status_fn(png_structrp png_ptr, png_write_status_ptr write_row_fn)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001461{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001462 if (png_ptr == NULL)
1463 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001464
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001465 png_ptr->write_row_fn = write_row_fn;
1466}
1467
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001468#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001469void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001470png_set_write_user_transform_fn(png_structrp png_ptr, png_user_transform_ptr
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001471 write_user_transform_fn)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001472{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001473 png_debug(1, "in png_set_write_user_transform_fn");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001474
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001475 if (png_ptr == NULL)
1476 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001477
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001478 png_ptr->transformations |= PNG_USER_TRANSFORM;
1479 png_ptr->write_user_transform_fn = write_user_transform_fn;
1480}
1481#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001482
1483
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001484#ifdef PNG_INFO_IMAGE_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001485void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001486png_write_png(png_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001487 int transforms, voidp params)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001488{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001489 if (png_ptr == NULL || info_ptr == NULL)
1490 return;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001491
1492 /* Write the file header information. */
1493 png_write_info(png_ptr, info_ptr);
1494
1495 /* ------ these transformations don't touch the info structure ------- */
1496
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001497#ifdef PNG_WRITE_INVERT_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001498 /* Invert monochrome pixels */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001499 if (transforms & PNG_TRANSFORM_INVERT_MONO)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001500 png_set_invert_mono(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001501#endif
1502
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001503#ifdef PNG_WRITE_SHIFT_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001504 /* Shift the pixels up to a legal bit depth and fill in
1505 * as appropriate to correctly scale the image.
1506 */
1507 if ((transforms & PNG_TRANSFORM_SHIFT)
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001508 && (info_ptr->valid & PNG_INFO_sBIT))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001509 png_set_shift(png_ptr, &info_ptr->sig_bit);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001510#endif
1511
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001512#ifdef PNG_WRITE_PACK_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001513 /* Pack pixels into bytes */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001514 if (transforms & PNG_TRANSFORM_PACKING)
1515 png_set_packing(png_ptr);
1516#endif
1517
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001518#ifdef PNG_WRITE_SWAP_ALPHA_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001519 /* Swap location of alpha bytes from ARGB to RGBA */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001520 if (transforms & PNG_TRANSFORM_SWAP_ALPHA)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001521 png_set_swap_alpha(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001522#endif
1523
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001524#ifdef PNG_WRITE_FILLER_SUPPORTED
Glenn Randers-Pehrson47539062011-05-05 07:32:30 -05001525 /* Pack XRGB/RGBX/ARGB/RGBA into RGB (4 channels -> 3 channels) */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001526 if (transforms & PNG_TRANSFORM_STRIP_FILLER_AFTER)
Glenn Randers-Pehrson1eb14e92008-12-10 07:14:45 -06001527 png_set_filler(png_ptr, 0, PNG_FILLER_AFTER);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001528
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001529 else if (transforms & PNG_TRANSFORM_STRIP_FILLER_BEFORE)
Glenn Randers-Pehrson1eb14e92008-12-10 07:14:45 -06001530 png_set_filler(png_ptr, 0, PNG_FILLER_BEFORE);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001531#endif
1532
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001533#ifdef PNG_WRITE_BGR_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001534 /* Flip BGR pixels to RGB */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001535 if (transforms & PNG_TRANSFORM_BGR)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001536 png_set_bgr(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001537#endif
1538
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001539#ifdef PNG_WRITE_SWAP_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001540 /* Swap bytes of 16-bit files to most significant byte first */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001541 if (transforms & PNG_TRANSFORM_SWAP_ENDIAN)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001542 png_set_swap(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001543#endif
1544
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001545#ifdef PNG_WRITE_PACKSWAP_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001546 /* Swap bits of 1, 2, 4 bit packed pixel formats */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001547 if (transforms & PNG_TRANSFORM_PACKSWAP)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001548 png_set_packswap(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001549#endif
1550
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001551#ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED
Glenn Randers-Pehrson6878eb62009-06-29 16:45:53 -05001552 /* Invert the alpha channel from opacity to transparency */
1553 if (transforms & PNG_TRANSFORM_INVERT_ALPHA)
1554 png_set_invert_alpha(png_ptr);
1555#endif
1556
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001557 /* ----------------------- end of transformations ------------------- */
1558
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001559 /* Write the bits */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001560 if (info_ptr->valid & PNG_INFO_IDAT)
1561 png_write_image(png_ptr, info_ptr->row_pointers);
1562
1563 /* It is REQUIRED to call this to finish writing the rest of the file */
1564 png_write_end(png_ptr, info_ptr);
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001565
Glenn Randers-Pehrsond546f432010-12-04 20:41:36 -06001566 PNG_UNUSED(transforms) /* Quiet compiler warnings */
1567 PNG_UNUSED(params)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001568}
1569#endif
John Bowler7875d532011-11-07 22:33:49 -06001570
1571
1572#ifdef PNG_SIMPLIFIED_WRITE_SUPPORTED
1573#ifdef PNG_STDIO_SUPPORTED /* currently required for png_image_write_* */
1574/* Initialize the write structure - general purpose utility. */
1575static int
1576png_image_write_init(png_imagep image)
1577{
1578 png_structp png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, image,
1579 png_safe_error, png_safe_warning);
1580
1581 if (png_ptr != NULL)
1582 {
1583 png_infop info_ptr = png_create_info_struct(png_ptr);
1584
1585 if (info_ptr != NULL)
1586 {
John Bowler4fa96a42011-11-16 16:39:16 -06001587 png_controlp control = png_voidcast(png_controlp,
1588 png_malloc_warn(png_ptr, sizeof *control));
John Bowler7875d532011-11-07 22:33:49 -06001589
1590 if (control != NULL)
1591 {
John Bowlerbaeb6d12011-11-26 18:21:02 -06001592 png_memset(control, 0, sizeof *control);
John Bowler7875d532011-11-07 22:33:49 -06001593
1594 control->png_ptr = png_ptr;
1595 control->info_ptr = info_ptr;
1596 control->for_write = 1;
1597
1598 image->opaque = control;
1599 return 1;
1600 }
1601
1602 /* Error clean up */
1603 png_destroy_info_struct(png_ptr, &info_ptr);
1604 }
1605
1606 png_destroy_write_struct(&png_ptr, NULL);
1607 }
1608
1609 return png_image_error(image, "png_image_read: out of memory");
1610}
1611
1612/* Arguments to png_image_write_main: */
1613typedef struct
1614{
1615 /* Arguments: */
1616 png_imagep image;
1617 png_const_voidp buffer;
1618 png_int_32 row_stride;
John Bowler5bc90382012-01-23 22:43:22 -06001619 png_const_voidp colormap;
John Bowler7875d532011-11-07 22:33:49 -06001620 int convert_to_8bit;
1621 /* Local variables: */
1622 png_const_voidp first_row;
1623 ptrdiff_t row_bytes;
1624 png_voidp local_row;
1625} png_image_write_control;
1626
Glenn Randers-Pehrsonefc4b692011-11-07 23:31:34 -06001627/* Write png_uint_16 input to a 16-bit PNG; the png_ptr has already been set to
1628 * do any necessary byte swapping. The component order is defined by the
John Bowler7875d532011-11-07 22:33:49 -06001629 * png_image format value.
1630 */
1631static int
1632png_write_image_16bit(png_voidp argument)
1633{
John Bowler4fa96a42011-11-16 16:39:16 -06001634 png_image_write_control *display = png_voidcast(png_image_write_control*,
1635 argument);
John Bowler7875d532011-11-07 22:33:49 -06001636 png_imagep image = display->image;
John Bowler5d567862011-12-24 09:12:00 -06001637 png_structrp png_ptr = image->opaque->png_ptr;
John Bowler7875d532011-11-07 22:33:49 -06001638
John Bowler4fa96a42011-11-16 16:39:16 -06001639 png_const_uint_16p input_row = png_voidcast(png_const_uint_16p,
1640 display->first_row);
1641 png_uint_16p output_row = png_voidcast(png_uint_16p, display->local_row);
John Bowler7875d532011-11-07 22:33:49 -06001642 png_uint_16p row_end;
John Bowler1c25b9b2012-02-29 10:49:28 -06001643 const int channels = (image->format & PNG_FORMAT_FLAG_COLOR) ? 3 : 1;
John Bowler7875d532011-11-07 22:33:49 -06001644 int aindex = 0;
1645 png_uint_32 y = image->height;
1646
1647 if (image->format & PNG_FORMAT_FLAG_ALPHA)
1648 {
1649 if (image->format & PNG_FORMAT_FLAG_AFIRST)
1650 {
1651 aindex = -1;
1652 ++input_row; /* To point to the first component */
1653 ++output_row;
1654 }
1655
1656 else
1657 aindex = channels;
1658 }
1659
1660 else
1661 png_error(png_ptr, "png_write_image: internal call error");
1662
1663 /* Work out the output row end and count over this, note that the increment
1664 * above to 'row' means that row_end can actually be beyond the end of the
Glenn Randers-Pehrsonefc4b692011-11-07 23:31:34 -06001665 * row; this is correct.
John Bowler7875d532011-11-07 22:33:49 -06001666 */
1667 row_end = output_row + image->width * (channels+1);
1668
1669 while (y-- > 0)
1670 {
1671 png_const_uint_16p in_ptr = input_row;
1672 png_uint_16p out_ptr = output_row;
1673
1674 while (out_ptr < row_end)
1675 {
John Bowler1c25b9b2012-02-29 10:49:28 -06001676 const png_uint_16 alpha = in_ptr[aindex];
John Bowler7875d532011-11-07 22:33:49 -06001677 png_uint_32 reciprocal = 0;
1678 int c;
1679
1680 out_ptr[aindex] = alpha;
1681
1682 /* Calculate a reciprocal. The correct calculation is simply
Glenn Randers-Pehrsonefc4b692011-11-07 23:31:34 -06001683 * component/alpha*65535 << 15. (I.e. 15 bits of precision); this
John Bowler7875d532011-11-07 22:33:49 -06001684 * allows correct rounding by adding .5 before the shift. 'reciprocal'
1685 * is only initialized when required.
1686 */
1687 if (alpha > 0 && alpha < 65535)
1688 reciprocal = ((0xffff<<15)+(alpha>>1))/alpha;
1689
1690 c = channels;
1691 do /* always at least one channel */
1692 {
1693 png_uint_16 component = *in_ptr++;
1694
1695 /* The following gives 65535 for an alpha of 0, which is fine,
1696 * otherwise if 0/0 is represented as some other value there is more
1697 * likely to be a discontinuity which will probably damage
1698 * compression when moving from a fully transparent area to a
1699 * nearly transparent one. (The assumption here is that opaque
1700 * areas tend not to be 0 intensity.)
1701 */
1702 if (component >= alpha)
1703 component = 65535;
1704
1705 /* component<alpha, so component/alpha is less than one and
1706 * component*reciprocal is less than 2^31.
1707 */
1708 else if (component > 0 && alpha < 65535)
1709 {
1710 png_uint_32 calc = component * reciprocal;
1711 calc += 16384; /* round to nearest */
1712 component = (png_uint_16)(calc >> 15);
1713 }
1714
1715 *out_ptr++ = component;
1716 }
1717 while (--c > 0);
1718
1719 /* Skip to next component (skip the intervening alpha channel) */
1720 ++in_ptr;
1721 ++out_ptr;
1722 }
1723
John Bowler4fa96a42011-11-16 16:39:16 -06001724 png_write_row(png_ptr, png_voidcast(png_const_bytep, display->local_row));
John Bowler7875d532011-11-07 22:33:49 -06001725 input_row += display->row_bytes/(sizeof (png_uint_16));
1726 }
1727
1728 return 1;
1729}
1730
1731/* Given 16-bit input (1 to 4 channels) write 8-bit output. If an alpha channel
1732 * is present it must be removed from the components, the components are then
1733 * written in sRGB encoding. No components are added or removed.
John Bowler5bc90382012-01-23 22:43:22 -06001734 *
1735 * Calculate an alpha reciprocal to reverse pre-multiplication. As above the
1736 * calculation can be done to 15 bits of accuracy; however, the output needs to
1737 * be scaled in the range 0..255*65535, so include that scaling here.
John Bowler7875d532011-11-07 22:33:49 -06001738 */
John Bowler5bc90382012-01-23 22:43:22 -06001739#define UNP_RECIPROCAL(alpha) ((((0xffff*0xff)<<7)+(alpha>>1))/alpha)
1740
1741static png_byte
1742png_unpremultiply(png_uint_32 component, png_uint_32 alpha,
1743 png_uint_32 reciprocal/*from the above macro*/)
1744{
1745 /* The following gives 1.0 for an alpha of 0, which is fine, otherwise if 0/0
1746 * is represented as some other value there is more likely to be a
1747 * discontinuity which will probably damage compression when moving from a
1748 * fully transparent area to a nearly transparent one. (The assumption here
1749 * is that opaque areas tend not to be 0 intensity.)
1750 *
1751 * There is a rounding problem here; if alpha is less than 128 it will end up
1752 * as 0 when scaled to 8 bits. To avoid introducing spurious colors into the
1753 * output change for this too.
1754 */
1755 if (component >= alpha || alpha < 128)
1756 return 255;
1757
1758 /* component<alpha, so component/alpha is less than one and
1759 * component*reciprocal is less than 2^31.
1760 */
1761 else if (component > 0)
1762 {
1763 /* The test is that alpha/257 (rounded) is less than 255, the first value
1764 * that becomes 255 is 65407.
1765 * NOTE: this must agree with the PNG_DIV257 macro (which must, therefore,
1766 * be exact!) [Could also test reciprocal != 0]
1767 */
1768 if (alpha < 65407)
1769 {
1770 component *= reciprocal;
1771 component += 64; /* round to nearest */
1772 component >>= 7;
1773 }
1774
1775 else
1776 component *= 255;
1777
1778 /* Convert the component to sRGB. */
1779 return (png_byte)PNG_sRGB_FROM_LINEAR(component);
1780 }
1781
1782 else
1783 return 0;
1784}
1785
John Bowler7875d532011-11-07 22:33:49 -06001786static int
1787png_write_image_8bit(png_voidp argument)
1788{
John Bowler4fa96a42011-11-16 16:39:16 -06001789 png_image_write_control *display = png_voidcast(png_image_write_control*,
1790 argument);
John Bowler7875d532011-11-07 22:33:49 -06001791 png_imagep image = display->image;
John Bowler5d567862011-12-24 09:12:00 -06001792 png_structrp png_ptr = image->opaque->png_ptr;
John Bowler7875d532011-11-07 22:33:49 -06001793
John Bowler4fa96a42011-11-16 16:39:16 -06001794 png_const_uint_16p input_row = png_voidcast(png_const_uint_16p,
1795 display->first_row);
1796 png_bytep output_row = png_voidcast(png_bytep, display->local_row);
John Bowler7875d532011-11-07 22:33:49 -06001797 png_uint_32 y = image->height;
John Bowler1c25b9b2012-02-29 10:49:28 -06001798 const int channels = (image->format & PNG_FORMAT_FLAG_COLOR) ? 3 : 1;
John Bowler7875d532011-11-07 22:33:49 -06001799
1800 if (image->format & PNG_FORMAT_FLAG_ALPHA)
1801 {
1802 png_bytep row_end;
1803 int aindex;
1804
1805 if (image->format & PNG_FORMAT_FLAG_AFIRST)
1806 {
1807 aindex = -1;
1808 ++input_row; /* To point to the first component */
1809 ++output_row;
1810 }
1811
1812 else
1813 aindex = channels;
1814
1815 /* Use row_end in place of a loop counter: */
1816 row_end = output_row + image->width * (channels+1);
1817
1818 while (y-- > 0)
1819 {
1820 png_const_uint_16p in_ptr = input_row;
1821 png_bytep out_ptr = output_row;
1822
John Bowler1c25b9b2012-02-29 10:49:28 -06001823 while (out_ptr < row_end)
John Bowler7875d532011-11-07 22:33:49 -06001824 {
1825 png_uint_16 alpha = in_ptr[aindex];
John Bowler5bc90382012-01-23 22:43:22 -06001826 png_byte alphabyte = (png_byte)PNG_DIV257(alpha);
John Bowler7875d532011-11-07 22:33:49 -06001827 png_uint_32 reciprocal = 0;
1828 int c;
1829
John Bowler5bc90382012-01-23 22:43:22 -06001830 /* Scale and write the alpha channel. */
1831 out_ptr[aindex] = alphabyte;
John Bowler7875d532011-11-07 22:33:49 -06001832
John Bowler5bc90382012-01-23 22:43:22 -06001833 if (alphabyte > 0 && alphabyte < 255)
1834 reciprocal = UNP_RECIPROCAL(alpha);
John Bowler7875d532011-11-07 22:33:49 -06001835
1836 c = channels;
1837 do /* always at least one channel */
John Bowler5bc90382012-01-23 22:43:22 -06001838 *out_ptr++ = png_unpremultiply(*in_ptr++, alpha, reciprocal);
John Bowler7875d532011-11-07 22:33:49 -06001839 while (--c > 0);
1840
1841 /* Skip to next component (skip the intervening alpha channel) */
1842 ++in_ptr;
1843 ++out_ptr;
1844 } /* while out_ptr < row_end */
John Bowler3615d032011-11-08 10:38:09 -06001845
John Bowler4fa96a42011-11-16 16:39:16 -06001846 png_write_row(png_ptr, png_voidcast(png_const_bytep,
1847 display->local_row));
John Bowler3615d032011-11-08 10:38:09 -06001848 input_row += display->row_bytes/(sizeof (png_uint_16));
John Bowler7875d532011-11-07 22:33:49 -06001849 } /* while y */
1850 }
1851
1852 else
1853 {
1854 /* No alpha channel, so the row_end really is the end of the row and it
1855 * is sufficient to loop over the components one by one.
1856 */
1857 png_bytep row_end = output_row + image->width * channels;
1858
1859 while (y-- > 0)
1860 {
1861 png_const_uint_16p in_ptr = input_row;
1862 png_bytep out_ptr = output_row;
1863
1864 while (out_ptr < row_end)
1865 {
1866 png_uint_32 component = *in_ptr++;
1867
1868 component *= 255;
1869 *out_ptr++ = (png_byte)PNG_sRGB_FROM_LINEAR(component);
1870 }
1871
1872 png_write_row(png_ptr, output_row);
1873 input_row += display->row_bytes/(sizeof (png_uint_16));
1874 }
1875 }
1876
1877 return 1;
1878}
1879
John Bowler5bc90382012-01-23 22:43:22 -06001880static void
1881png_image_set_PLTE(png_image_write_control *display)
1882{
1883 const png_imagep image = display->image;
1884 const void *cmap = display->colormap;
1885 const int entries = image->colormap_entries > 256 ? 256 :
1886 (int)image->colormap_entries;
1887
1888 /* NOTE: the caller must check for cmap != NULL and entries != 0 */
1889 const png_uint_32 format = image->format;
1890 const int channels = PNG_IMAGE_SAMPLE_CHANNELS(format);
1891
1892# ifdef PNG_FORMAT_BGR_SUPPORTED
1893 const int afirst = (format & PNG_FORMAT_FLAG_AFIRST) != 0 &&
1894 (format & PNG_FORMAT_FLAG_ALPHA) != 0;
1895# else
1896# define afirst 0
1897# endif
1898
1899# ifdef PNG_FORMAT_BGR_SUPPORTED
1900 const int bgr = (format & PNG_FORMAT_FLAG_BGR) ? 2 : 0;
1901# else
1902# define bgr 0
1903# endif
1904
1905 int i, num_trans;
1906 png_color palette[256];
1907 png_byte tRNS[256];
1908
1909 memset(tRNS, 255, sizeof tRNS);
1910 memset(palette, 0, sizeof palette);
1911
1912 for (i=num_trans=0; i<entries; ++i)
1913 {
1914 /* This gets automatically converted to sRGB with reversal of the
1915 * pre-multiplication if the color-map has an alpha channel.
1916 */
1917 if (format & PNG_FORMAT_FLAG_LINEAR)
1918 {
1919 png_const_uint_16p entry = png_voidcast(png_const_uint_16p, cmap);
John Bowler6f237b62012-03-02 13:13:15 -06001920
John Bowler5bc90382012-01-23 22:43:22 -06001921 entry += i * channels;
1922
1923 if (channels & 1) /* no alpha */
1924 {
1925 if (channels >= 3) /* RGB */
1926 {
1927 palette[i].blue = (png_byte)PNG_sRGB_FROM_LINEAR(255 *
1928 entry[(2 ^ bgr)]);
1929 palette[i].green = (png_byte)PNG_sRGB_FROM_LINEAR(255 *
1930 entry[1]);
1931 palette[i].red = (png_byte)PNG_sRGB_FROM_LINEAR(255 *
1932 entry[bgr]);
1933 }
1934
1935 else /* Gray */
1936 palette[i].blue = palette[i].red = palette[i].green =
1937 (png_byte)PNG_sRGB_FROM_LINEAR(255 * *entry);
1938 }
1939
1940 else /* alpha */
1941 {
1942 png_uint_16 alpha = entry[afirst ? 0 : channels-1];
1943 png_byte alphabyte = (png_byte)PNG_DIV257(alpha);
1944 png_uint_32 reciprocal = 0;
1945
1946 /* Calculate a reciprocal, as in the png_write_image_8bit code above
1947 * this is designed to produce a value scaled to 255*65535 when
1948 * divided by 128 (i.e. asr 7).
1949 */
1950 if (alphabyte > 0 && alphabyte < 255)
1951 reciprocal = (((0xffff*0xff)<<7)+(alpha>>1))/alpha;
1952
1953 tRNS[i] = alphabyte;
1954 if (alphabyte < 255)
1955 num_trans = i+1;
1956
1957 if (channels >= 3) /* RGB */
1958 {
1959 palette[i].blue = png_unpremultiply(entry[afirst + (2 ^ bgr)],
1960 alpha, reciprocal);
1961 palette[i].green = png_unpremultiply(entry[afirst + 1], alpha,
1962 reciprocal);
1963 palette[i].red = png_unpremultiply(entry[afirst + bgr], alpha,
1964 reciprocal);
1965 }
1966
1967 else /* gray */
1968 palette[i].blue = palette[i].red = palette[i].green =
1969 png_unpremultiply(entry[afirst], alpha, reciprocal);
1970 }
1971 }
1972
1973 else /* Color-map has sRGB values */
1974 {
1975 png_const_bytep entry = png_voidcast(png_const_bytep, cmap);
John Bowler6f237b62012-03-02 13:13:15 -06001976
John Bowler5bc90382012-01-23 22:43:22 -06001977 entry += i * channels;
1978
1979 switch (channels)
1980 {
1981 case 4:
1982 tRNS[i] = entry[afirst ? 0 : 3];
1983 if (tRNS[i] < 255)
1984 num_trans = i+1;
1985 /* FALL THROUGH */
1986 case 3:
1987 palette[i].blue = entry[afirst + (2 ^ bgr)];
1988 palette[i].green = entry[afirst + 1];
1989 palette[i].red = entry[afirst + bgr];
1990 break;
1991
1992 case 2:
1993 tRNS[i] = entry[1 ^ afirst];
1994 if (tRNS[i] < 255)
1995 num_trans = i+1;
1996 /* FALL THROUGH */
1997 case 1:
1998 palette[i].blue = palette[i].red = palette[i].green =
1999 entry[afirst];
2000 break;
2001
2002 default:
2003 break;
2004 }
2005 }
2006 }
2007
2008# ifdef afirst
2009# undef afirst
2010# endif
2011# ifdef bgr
2012# undef bgr
2013# endif
2014
2015 png_set_PLTE(image->opaque->png_ptr, image->opaque->info_ptr, palette,
2016 entries);
2017
2018 if (num_trans > 0)
2019 png_set_tRNS(image->opaque->png_ptr, image->opaque->info_ptr, tRNS,
2020 num_trans, NULL);
2021
2022 image->colormap_entries = entries;
2023}
2024
John Bowler7875d532011-11-07 22:33:49 -06002025static int
2026png_image_write_main(png_voidp argument)
2027{
John Bowler4fa96a42011-11-16 16:39:16 -06002028 png_image_write_control *display = png_voidcast(png_image_write_control*,
2029 argument);
John Bowler7875d532011-11-07 22:33:49 -06002030 png_imagep image = display->image;
John Bowler5d567862011-12-24 09:12:00 -06002031 png_structrp png_ptr = image->opaque->png_ptr;
2032 png_inforp info_ptr = image->opaque->info_ptr;
John Bowler7875d532011-11-07 22:33:49 -06002033 png_uint_32 format = image->format;
2034
John Bowler5bc90382012-01-23 22:43:22 -06002035 int colormap = (format & PNG_FORMAT_FLAG_COLORMAP) != 0;
2036 int linear = !colormap && (format & PNG_FORMAT_FLAG_LINEAR) != 0; /* input */
2037 int alpha = !colormap && (format & PNG_FORMAT_FLAG_ALPHA) != 0;
2038 int write_16bit = linear && !colormap && !display->convert_to_8bit;
John Bowler7875d532011-11-07 22:33:49 -06002039
John Bowleraa816c42012-03-16 07:39:49 -05002040# ifdef PNG_BENIGN_ERRORS_SUPPORTED
2041 /* Make sure we error out on any bad situation */
2042 png_set_benign_errors(png_ptr, 0/*error*/);
2043# endif
2044
John Bowler3706d732011-11-21 10:28:06 -06002045 /* Default the 'row_stride' parameter if required. */
2046 if (display->row_stride == 0)
2047 display->row_stride = PNG_IMAGE_ROW_STRIDE(*image);
2048
John Bowler7875d532011-11-07 22:33:49 -06002049 /* Set the required transforms then write the rows in the correct order. */
John Bowler04336ba2012-01-16 07:48:36 -06002050 if (format & PNG_FORMAT_FLAG_COLORMAP)
John Bowler5bc90382012-01-23 22:43:22 -06002051 {
2052 if (display->colormap != NULL && image->colormap_entries > 0)
2053 {
2054 png_uint_32 entries = image->colormap_entries;
2055
2056 png_set_IHDR(png_ptr, info_ptr, image->width, image->height,
2057 entries > 16 ? 8 : (entries > 4 ? 4 : (entries > 2 ? 2 : 1)),
2058 PNG_COLOR_TYPE_PALETTE, PNG_INTERLACE_NONE,
2059 PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
2060
2061 png_image_set_PLTE(display);
2062 }
2063
2064 else
2065 png_error(image->opaque->png_ptr,
2066 "no color-map for color-mapped image");
2067 }
John Bowler04336ba2012-01-16 07:48:36 -06002068
2069 else
2070 png_set_IHDR(png_ptr, info_ptr, image->width, image->height,
2071 write_16bit ? 16 : 8,
2072 ((format & PNG_FORMAT_FLAG_COLOR) ? PNG_COLOR_MASK_COLOR : 0) +
2073 ((format & PNG_FORMAT_FLAG_ALPHA) ? PNG_COLOR_MASK_ALPHA : 0),
2074 PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
John Bowler7875d532011-11-07 22:33:49 -06002075
2076 /* Counter-intuitively the data transformations must be called *after*
2077 * png_write_info, not before as in the read code, but the 'set' functions
2078 * must still be called before. Just set the color space information, never
2079 * write an interlaced image.
2080 */
John Bowler5bc90382012-01-23 22:43:22 -06002081
John Bowler7875d532011-11-07 22:33:49 -06002082 if (write_16bit)
2083 {
2084 /* The gamma here is 1.0 (linear) and the cHRM chunk matches sRGB. */
2085 png_set_gAMA_fixed(png_ptr, info_ptr, PNG_GAMMA_LINEAR);
John Bowlerdd819152011-11-08 14:29:45 -06002086
2087 if (!(image->flags & PNG_IMAGE_FLAG_COLORSPACE_NOT_sRGB))
2088 png_set_cHRM_fixed(png_ptr, info_ptr,
2089 /* color x y */
2090 /* white */ 31270, 32900,
2091 /* red */ 64000, 33000,
2092 /* green */ 30000, 60000,
2093 /* blue */ 15000, 6000
2094 );
John Bowler7875d532011-11-07 22:33:49 -06002095 }
2096
John Bowlerdd819152011-11-08 14:29:45 -06002097 else if (!(image->flags & PNG_IMAGE_FLAG_COLORSPACE_NOT_sRGB))
John Bowler7875d532011-11-07 22:33:49 -06002098 png_set_sRGB(png_ptr, info_ptr, PNG_sRGB_INTENT_PERCEPTUAL);
2099
John Bowlerdd819152011-11-08 14:29:45 -06002100 /* Else writing an 8-bit file and the *colors* aren't sRGB, but the 8-bit
2101 * space must still be gamma encoded.
2102 */
2103 else
2104 png_set_gAMA_fixed(png_ptr, info_ptr, PNG_GAMMA_sRGB_INVERSE);
2105
John Bowler7875d532011-11-07 22:33:49 -06002106 /* Write the file header. */
2107 png_write_info(png_ptr, info_ptr);
2108
2109 /* Now set up the data transformations (*after* the header is written),
2110 * remove the handled transformations from the 'format' flags for checking.
John Bowlere6fb6912011-11-08 21:35:16 -06002111 *
2112 * First check for a little endian system if writing 16 bit files.
John Bowler7875d532011-11-07 22:33:49 -06002113 */
John Bowler7875d532011-11-07 22:33:49 -06002114 if (write_16bit)
2115 {
2116 PNG_CONST png_uint_16 le = 0x0001;
2117
2118 if (*(png_const_bytep)&le)
2119 png_set_swap(png_ptr);
2120 }
2121
2122# ifdef PNG_SIMPLIFIED_WRITE_BGR_SUPPORTED
2123 if (format & PNG_FORMAT_FLAG_BGR)
2124 {
John Bowler5bc90382012-01-23 22:43:22 -06002125 if (!colormap && (format & PNG_FORMAT_FLAG_COLOR) != 0)
John Bowlere6fb6912011-11-08 21:35:16 -06002126 png_set_bgr(png_ptr);
John Bowler7875d532011-11-07 22:33:49 -06002127 format &= ~PNG_FORMAT_FLAG_BGR;
2128 }
2129# endif
2130
2131# ifdef PNG_SIMPLIFIED_WRITE_AFIRST_SUPPORTED
2132 if (format & PNG_FORMAT_FLAG_AFIRST)
2133 {
John Bowler5bc90382012-01-23 22:43:22 -06002134 if (!colormap && (format & PNG_FORMAT_FLAG_ALPHA) != 0)
John Bowlere6fb6912011-11-08 21:35:16 -06002135 png_set_swap_alpha(png_ptr);
John Bowler7875d532011-11-07 22:33:49 -06002136 format &= ~PNG_FORMAT_FLAG_AFIRST;
2137 }
2138# endif
2139
John Bowler5bc90382012-01-23 22:43:22 -06002140 /* If there are 16 or fewer color-map entries we wrote a lower bit depth
2141 * above, but the application data is still byte packed.
2142 */
2143 if (colormap && image->colormap_entries <= 16)
2144 png_set_packing(png_ptr);
2145
John Bowlere6fb6912011-11-08 21:35:16 -06002146 /* That should have handled all (both) the transforms. */
John Bowler89c2f842011-11-16 12:04:39 -06002147 if ((format & ~(png_uint_32)(PNG_FORMAT_FLAG_COLOR | PNG_FORMAT_FLAG_LINEAR |
John Bowler5bc90382012-01-23 22:43:22 -06002148 PNG_FORMAT_FLAG_ALPHA | PNG_FORMAT_FLAG_COLORMAP)) != 0)
John Bowler7875d532011-11-07 22:33:49 -06002149 png_error(png_ptr, "png_write_image: unsupported transformation");
2150
2151 {
John Bowler4fa96a42011-11-16 16:39:16 -06002152 png_const_bytep row = png_voidcast(png_const_bytep, display->buffer);
John Bowler7875d532011-11-07 22:33:49 -06002153 ptrdiff_t row_bytes = display->row_stride;
2154
2155 if (linear)
2156 row_bytes *= sizeof (png_uint_16);
2157
2158 if (row_bytes < 0)
2159 row += (image->height-1) * (-row_bytes);
2160
2161 display->first_row = row;
2162 display->row_bytes = row_bytes;
2163 }
2164
John Bowlerdee75772012-03-01 18:55:54 -06002165 /* Apply 'fast' options if the flag is set. */
2166 if ((image->flags & PNG_IMAGE_FLAG_FAST) != 0)
2167 {
2168 png_set_filter(png_ptr, PNG_FILTER_TYPE_BASE, PNG_NO_FILTERS);
2169 /* NOTE: determined by experiment using pngstest, this reflects some
2170 * balance between the time to write the image once and the time to read
2171 * it about 50 times. The speed-up in pngstest was about 10-20% of the
2172 * total (user) time on a heavily loaded system.
2173 */
2174 png_set_compression_level(png_ptr, 3);
2175 }
2176
John Bowler7875d532011-11-07 22:33:49 -06002177 /* Check for the cases that currently require a pre-transform on the row
2178 * before it is written. This only applies when the input is 16-bit and
2179 * either there is an alpha channel or it is converted to 8-bit.
2180 */
John Bowler5bc90382012-01-23 22:43:22 -06002181 if ((linear && alpha) || (!colormap && display->convert_to_8bit))
John Bowler7875d532011-11-07 22:33:49 -06002182 {
John Bowler4fa96a42011-11-16 16:39:16 -06002183 png_bytep row = png_voidcast(png_bytep, png_malloc(png_ptr,
2184 png_get_rowbytes(png_ptr, info_ptr)));
John Bowler7875d532011-11-07 22:33:49 -06002185 int result;
2186
2187 display->local_row = row;
2188 if (write_16bit)
2189 result = png_safe_execute(image, png_write_image_16bit, display);
2190 else
2191 result = png_safe_execute(image, png_write_image_8bit, display);
2192 display->local_row = NULL;
2193
2194 png_free(png_ptr, row);
2195
2196 /* Skip the 'write_end' on error: */
2197 if (!result)
2198 return 0;
2199 }
2200
2201 /* Otherwise this is the case where the input is in a format currently
2202 * supported by the rest of the libpng write code; call it directly.
2203 */
2204 else
2205 {
John Bowler4fa96a42011-11-16 16:39:16 -06002206 png_const_bytep row = png_voidcast(png_const_bytep, display->first_row);
John Bowler7875d532011-11-07 22:33:49 -06002207 ptrdiff_t row_bytes = display->row_bytes;
2208 png_uint_32 y = image->height;
2209
2210 while (y-- > 0)
2211 {
2212 png_write_row(png_ptr, row);
2213 row += row_bytes;
2214 }
2215 }
2216
2217 png_write_end(png_ptr, info_ptr);
2218 return 1;
2219}
2220
2221int PNGAPI
John Bowlerdd819152011-11-08 14:29:45 -06002222png_image_write_to_stdio(png_imagep image, FILE *file, int convert_to_8bit,
John Bowler5bc90382012-01-23 22:43:22 -06002223 const void *buffer, png_int_32 row_stride, const void *colormap)
John Bowler7875d532011-11-07 22:33:49 -06002224{
2225 /* Write the image to the given (FILE*). */
John Bowler5bc90382012-01-23 22:43:22 -06002226 if (image != NULL || image->version != PNG_IMAGE_VERSION)
John Bowler7875d532011-11-07 22:33:49 -06002227 {
2228 if (file != NULL)
2229 {
2230 if (png_image_write_init(image))
2231 {
2232 png_image_write_control display;
2233 int result;
2234
2235 /* This is slightly evil, but png_init_io doesn't do anything other
2236 * than this and we haven't changed the standard IO functions so
2237 * this saves a 'safe' function.
2238 */
2239 image->opaque->png_ptr->io_ptr = file;
2240
John Bowlerbaeb6d12011-11-26 18:21:02 -06002241 png_memset(&display, 0, sizeof display);
John Bowler7875d532011-11-07 22:33:49 -06002242 display.image = image;
2243 display.buffer = buffer;
2244 display.row_stride = row_stride;
John Bowler5bc90382012-01-23 22:43:22 -06002245 display.colormap = colormap;
John Bowler7875d532011-11-07 22:33:49 -06002246 display.convert_to_8bit = convert_to_8bit;
2247
2248 result = png_safe_execute(image, png_image_write_main, &display);
2249 png_image_free(image);
2250 return result;
2251 }
2252
2253 else
2254 return 0;
2255 }
2256
2257 else
2258 return png_image_error(image,
2259 "png_image_write_to_stdio: invalid argument");
2260 }
2261
2262 else
2263 return 0;
2264}
2265
2266int PNGAPI
John Bowlerdd819152011-11-08 14:29:45 -06002267png_image_write_to_file(png_imagep image, const char *file_name,
John Bowler5bc90382012-01-23 22:43:22 -06002268 int convert_to_8bit, const void *buffer, png_int_32 row_stride,
2269 const void *colormap)
John Bowler7875d532011-11-07 22:33:49 -06002270{
2271 /* Write the image to the named file. */
John Bowler5bc90382012-01-23 22:43:22 -06002272 if (image != NULL || image->version != PNG_IMAGE_VERSION)
John Bowler7875d532011-11-07 22:33:49 -06002273 {
2274 if (file_name != NULL)
2275 {
2276 FILE *fp = fopen(file_name, "wb");
2277
2278 if (fp != NULL)
2279 {
John Bowlerdd819152011-11-08 14:29:45 -06002280 if (png_image_write_to_stdio(image, fp, convert_to_8bit, buffer,
John Bowler5bc90382012-01-23 22:43:22 -06002281 row_stride, colormap))
John Bowler7875d532011-11-07 22:33:49 -06002282 {
John Bowlerdd819152011-11-08 14:29:45 -06002283 int error; /* from fflush/fclose */
John Bowler7875d532011-11-07 22:33:49 -06002284
John Bowlerdd819152011-11-08 14:29:45 -06002285 /* Make sure the file is flushed correctly. */
2286 if (fflush(fp) == 0 && ferror(fp) == 0)
John Bowler7875d532011-11-07 22:33:49 -06002287 {
John Bowlerdd819152011-11-08 14:29:45 -06002288 if (fclose(fp) == 0)
2289 return 1;
John Bowler7875d532011-11-07 22:33:49 -06002290
John Bowlerdd819152011-11-08 14:29:45 -06002291 error = errno; /* from fclose */
John Bowler7875d532011-11-07 22:33:49 -06002292 }
2293
John Bowlerdd819152011-11-08 14:29:45 -06002294 else
2295 {
2296 error = errno; /* from fflush or ferror */
2297 (void)fclose(fp);
2298 }
2299
2300 (void)remove(file_name);
2301 /* The image has already been cleaned up; this is just used to
2302 * set the error (because the original write succeeded).
2303 */
2304 return png_image_error(image, strerror(error));
John Bowler7875d532011-11-07 22:33:49 -06002305 }
2306
2307 else
2308 {
2309 /* Clean up: just the opened file. */
2310 (void)fclose(fp);
John Bowlerdd819152011-11-08 14:29:45 -06002311 (void)remove(file_name);
John Bowler7875d532011-11-07 22:33:49 -06002312 return 0;
2313 }
2314 }
2315
2316 else
2317 return png_image_error(image, strerror(errno));
2318 }
2319
2320 else
2321 return png_image_error(image,
2322 "png_image_write_to_file: invalid argument");
2323 }
2324
2325 else
2326 return 0;
2327}
2328#endif /* PNG_STDIO_SUPPORTED */
2329#endif /* SIMPLIFIED_WRITE */
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06002330#endif /* PNG_WRITE_SUPPORTED */