blob: d506bddb2aa3ebfa9fbb0281287084fcafadace5 [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-Pehrsonda009802009-08-15 13:25:47 -05004 * Last changed in libpng 1.4.0 [August 15, 2009]
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -06005 * Copyright (c) 1998-2009 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
14/* get internal access to png.h */
Guy Schalnat0d580581995-07-20 02:43:20 -050015#include "png.h"
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -060016#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -050017#include "pngpriv.h"
Guy Schalnat0d580581995-07-20 02:43:20 -050018
Andreas Dilger47a0c421997-05-16 02:46:07 -050019/* Writes all the PNG information. This is the suggested way to use the
20 * library. If you have a new chunk to add, make a function to write it,
21 * and put it in the correct location here. If you want the chunk written
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -050022 * after the image data, put it in png_write_end(). I strongly encourage
Andreas Dilger47a0c421997-05-16 02:46:07 -050023 * you to supply a PNG_INFO_ flag, and check info_ptr->valid before writing
24 * the chunk, as that will keep the code from breaking if you want to just
25 * write a plain PNG file. If you have long comments, I suggest writing
26 * them in png_write_end(), and compressing them.
27 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050028void PNGAPI
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -060029png_write_info_before_PLTE(png_structp png_ptr, png_infop info_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -050030{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -050031 png_debug(1, "in png_write_info_before_PLTE");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -050032
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -060033 if (png_ptr == NULL || info_ptr == NULL)
34 return;
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -060035 if (!(png_ptr->mode & PNG_WROTE_INFO_BEFORE_PLTE))
36 {
Guy Schalnat0d580581995-07-20 02:43:20 -050037 png_write_sig(png_ptr); /* write PNG signature */
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -060038#if defined(PNG_MNG_FEATURES_SUPPORTED)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050039 if ((png_ptr->mode&PNG_HAVE_PNG_SIGNATURE)&&(png_ptr->mng_features_permitted))
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -060040 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050041 png_warning(png_ptr, "MNG features are not allowed in a PNG datastream");
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -060042 png_ptr->mng_features_permitted=0;
43 }
44#endif
Guy Schalnat0d580581995-07-20 02:43:20 -050045 /* write IHDR information. */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060046 png_write_IHDR(png_ptr, info_ptr->width, info_ptr->height,
47 info_ptr->bit_depth, info_ptr->color_type, info_ptr->compression_type,
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060048 info_ptr->filter_type,
49#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
50 info_ptr->interlace_type);
51#else
52 0);
53#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050054 /* The rest of these check to see if the valid field has the appropriate
55 * flag set, and if it does, writes the chunk.
56 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -050057#if defined(PNG_WRITE_gAMA_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060058 if (info_ptr->valid & PNG_INFO_gAMA)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060059 {
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060060# ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060061 png_write_gAMA(png_ptr, info_ptr->gamma);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060062#else
63#ifdef PNG_FIXED_POINT_SUPPORTED
64 png_write_gAMA_fixed(png_ptr, info_ptr->int_gamma);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060065# endif
66#endif
67 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -050068#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060069#if defined(PNG_WRITE_sRGB_SUPPORTED)
70 if (info_ptr->valid & PNG_INFO_sRGB)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -060071 png_write_sRGB(png_ptr, (int)info_ptr->srgb_intent);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060072#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060073#if defined(PNG_WRITE_iCCP_SUPPORTED)
74 if (info_ptr->valid & PNG_INFO_iCCP)
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -060075 png_write_iCCP(png_ptr, info_ptr->iccp_name, PNG_COMPRESSION_TYPE_BASE,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060076 info_ptr->iccp_profile, (int)info_ptr->iccp_proflen);
77#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -050078#if defined(PNG_WRITE_sBIT_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060079 if (info_ptr->valid & PNG_INFO_sBIT)
80 png_write_sBIT(png_ptr, &(info_ptr->sig_bit), info_ptr->color_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -050081#endif
82#if defined(PNG_WRITE_cHRM_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060083 if (info_ptr->valid & PNG_INFO_cHRM)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060084 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060085#ifdef PNG_FLOATING_POINT_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -050086 png_write_cHRM(png_ptr,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060087 info_ptr->x_white, info_ptr->y_white,
88 info_ptr->x_red, info_ptr->y_red,
89 info_ptr->x_green, info_ptr->y_green,
90 info_ptr->x_blue, info_ptr->y_blue);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060091#else
92# ifdef PNG_FIXED_POINT_SUPPORTED
93 png_write_cHRM_fixed(png_ptr,
94 info_ptr->int_x_white, info_ptr->int_y_white,
95 info_ptr->int_x_red, info_ptr->int_y_red,
96 info_ptr->int_x_green, info_ptr->int_y_green,
97 info_ptr->int_x_blue, info_ptr->int_y_blue);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060098# endif
99#endif
100 }
101#endif
102#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
103 if (info_ptr->unknown_chunks_num)
104 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500105 png_unknown_chunk *up;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600106
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500107 png_debug(5, "writing extra chunks");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600108
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500109 for (up = info_ptr->unknown_chunks;
110 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
111 up++)
112 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600113 int keep=png_handle_as_unknown(png_ptr, up->name);
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500114 if (keep != PNG_HANDLE_CHUNK_NEVER &&
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500115 up->location && !(up->location & PNG_HAVE_PLTE) &&
116 !(up->location & PNG_HAVE_IDAT) &&
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500117 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600118 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
119 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500120 if (up->size == 0)
121 png_warning(png_ptr, "Writing zero-length unknown chunk");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600122 png_write_chunk(png_ptr, up->name, up->data, up->size);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600123 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500124 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600125 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500126#endif
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600127 png_ptr->mode |= PNG_WROTE_INFO_BEFORE_PLTE;
128 }
129}
130
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500131void PNGAPI
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600132png_write_info(png_structp png_ptr, png_infop info_ptr)
133{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600134#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600135 int i;
136#endif
137
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500138 png_debug(1, "in png_write_info");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600139
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600140 if (png_ptr == NULL || info_ptr == NULL)
141 return;
142
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600143 png_write_info_before_PLTE(png_ptr, info_ptr);
144
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600145 if (info_ptr->valid & PNG_INFO_PLTE)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500146 png_write_PLTE(png_ptr, info_ptr->palette,
147 (png_uint_32)info_ptr->num_palette);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600148 else if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600149 png_error(png_ptr, "Valid palette required for paletted images");
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600150
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500151#if defined(PNG_WRITE_tRNS_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600152 if (info_ptr->valid & PNG_INFO_tRNS)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500153 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600154#if defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500155 /* invert the alpha channel (in tRNS) */
156 if ((png_ptr->transformations & PNG_INVERT_ALPHA) &&
157 info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
158 {
159 int j;
160 for (j=0; j<(int)info_ptr->num_trans; j++)
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500161 info_ptr->trans_alpha[j] = (png_byte)(255 - info_ptr->trans_alpha[j]);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500162 }
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600163#endif
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500164 png_write_tRNS(png_ptr, info_ptr->trans_alpha, &(info_ptr->trans_color),
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600165 info_ptr->num_trans, info_ptr->color_type);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500166 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500167#endif
168#if defined(PNG_WRITE_bKGD_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600169 if (info_ptr->valid & PNG_INFO_bKGD)
170 png_write_bKGD(png_ptr, &(info_ptr->background), info_ptr->color_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500171#endif
172#if defined(PNG_WRITE_hIST_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600173 if (info_ptr->valid & PNG_INFO_hIST)
174 png_write_hIST(png_ptr, info_ptr->hist, info_ptr->num_palette);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500175#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500176#if defined(PNG_WRITE_oFFs_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600177 if (info_ptr->valid & PNG_INFO_oFFs)
178 png_write_oFFs(png_ptr, info_ptr->x_offset, info_ptr->y_offset,
179 info_ptr->offset_unit_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500180#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500181#if defined(PNG_WRITE_pCAL_SUPPORTED)
182 if (info_ptr->valid & PNG_INFO_pCAL)
183 png_write_pCAL(png_ptr, info_ptr->pcal_purpose, info_ptr->pcal_X0,
184 info_ptr->pcal_X1, info_ptr->pcal_type, info_ptr->pcal_nparams,
185 info_ptr->pcal_units, info_ptr->pcal_params);
186#endif
Glenn Randers-Pehrson59020592009-05-18 10:52:12 -0500187
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500188#if defined(PNG_sCAL_SUPPORTED)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600189 if (info_ptr->valid & PNG_INFO_sCAL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500190#if defined(PNG_WRITE_sCAL_SUPPORTED)
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -0600191#if defined(PNG_FLOATING_POINT_SUPPORTED) && !defined(PNG_NO_STDIO)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600192 png_write_sCAL(png_ptr, (int)info_ptr->scal_unit,
193 info_ptr->scal_pixel_width, info_ptr->scal_pixel_height);
Glenn Randers-Pehrson59020592009-05-18 10:52:12 -0500194#else /* !FLOATING_POINT */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600195#ifdef PNG_FIXED_POINT_SUPPORTED
196 png_write_sCAL_s(png_ptr, (int)info_ptr->scal_unit,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600197 info_ptr->scal_s_width, info_ptr->scal_s_height);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500198#endif /* FIXED_POINT */
199#endif /* FLOATING_POINT */
Glenn Randers-Pehrson59020592009-05-18 10:52:12 -0500200#else /* !WRITE_sCAL */
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -0600201 png_warning(png_ptr,
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500202 "png_write_sCAL not supported; sCAL chunk not written");
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500203#endif /* WRITE_sCAL */
204#endif /* sCAL */
205
Andreas Dilger47a0c421997-05-16 02:46:07 -0500206#if defined(PNG_WRITE_pHYs_SUPPORTED)
207 if (info_ptr->valid & PNG_INFO_pHYs)
208 png_write_pHYs(png_ptr, info_ptr->x_pixels_per_unit,
209 info_ptr->y_pixels_per_unit, info_ptr->phys_unit_type);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500210#endif /* pHYs */
211
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500212#if defined(PNG_WRITE_tIME_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600213 if (info_ptr->valid & PNG_INFO_tIME)
Guy Schalnate5a37791996-06-05 15:50:50 -0500214 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600215 png_write_tIME(png_ptr, &(info_ptr->mod_time));
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600216 png_ptr->mode |= PNG_WROTE_tIME;
Guy Schalnate5a37791996-06-05 15:50:50 -0500217 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500218#endif /* tIME */
219
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600220#if defined(PNG_WRITE_sPLT_SUPPORTED)
221 if (info_ptr->valid & PNG_INFO_sPLT)
222 for (i = 0; i < (int)info_ptr->splt_palettes_num; i++)
223 png_write_sPLT(png_ptr, info_ptr->splt_palettes + i);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500224#endif /* sPLT */
225
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600226#if defined(PNG_WRITE_TEXT_SUPPORTED)
Guy Schalnate5a37791996-06-05 15:50:50 -0500227 /* Check to see if we need to write text chunks */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500228 for (i = 0; i < info_ptr->num_text; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500229 {
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500230 png_debug2(2, "Writing header text chunk %d, type %d", i,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500231 info_ptr->text[i].compression);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600232 /* an internationalized chunk? */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600233 if (info_ptr->text[i].compression > 0)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600234 {
235#if defined(PNG_WRITE_iTXt_SUPPORTED)
236 /* write international chunk */
237 png_write_iTXt(png_ptr,
238 info_ptr->text[i].compression,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600239 info_ptr->text[i].key,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600240 info_ptr->text[i].lang,
241 info_ptr->text[i].lang_key,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600242 info_ptr->text[i].text);
243#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600244 png_warning(png_ptr, "Unable to write international text");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600245#endif
246 /* Mark this chunk as written */
247 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
248 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500249 /* If we want a compressed text chunk */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600250 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_zTXt)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500251 {
252#if defined(PNG_WRITE_zTXt_SUPPORTED)
253 /* write compressed chunk */
254 png_write_zTXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600255 info_ptr->text[i].text, 0,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500256 info_ptr->text[i].compression);
257#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600258 png_warning(png_ptr, "Unable to write compressed text");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500259#endif
260 /* Mark this chunk as written */
261 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
262 }
263 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
264 {
265#if defined(PNG_WRITE_tEXt_SUPPORTED)
266 /* write uncompressed chunk */
267 png_write_tEXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600268 info_ptr->text[i].text,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600269 0);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500270 /* Mark this chunk as written */
271 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500272#else
273 /* Can't get here */
274 png_warning(png_ptr, "Unable to write uncompressed text");
275#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500276 }
277 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500278#endif /* tEXt */
279
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600280#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
281 if (info_ptr->unknown_chunks_num)
282 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500283 png_unknown_chunk *up;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600284
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500285 png_debug(5, "writing extra chunks");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600286
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500287 for (up = info_ptr->unknown_chunks;
288 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
289 up++)
290 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600291 int keep=png_handle_as_unknown(png_ptr, up->name);
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500292 if (keep != PNG_HANDLE_CHUNK_NEVER &&
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600293 up->location && (up->location & PNG_HAVE_PLTE) &&
294 !(up->location & PNG_HAVE_IDAT) &&
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500295 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600296 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
297 {
298 png_write_chunk(png_ptr, up->name, up->data, up->size);
299 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500300 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600301 }
302#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500303}
Guy Schalnat0d580581995-07-20 02:43:20 -0500304
Andreas Dilger47a0c421997-05-16 02:46:07 -0500305/* Writes the end of the PNG file. If you don't want to write comments or
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600306 * time information, you can pass NULL for info. If you already wrote these
307 * in png_write_info(), do not write them again here. If you have long
308 * comments, I suggest writing them here, and compressing them.
309 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500310void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500311png_write_end(png_structp png_ptr, png_infop info_ptr)
312{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500313 png_debug(1, "in png_write_end");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500314
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600315 if (png_ptr == NULL)
316 return;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500317 if (!(png_ptr->mode & PNG_HAVE_IDAT))
318 png_error(png_ptr, "No IDATs written into file");
319
320 /* see if user wants us to write information chunks */
321 if (info_ptr != NULL)
322 {
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600323#if defined(PNG_WRITE_TEXT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500324 int i; /* local index variable */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600325#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500326#if defined(PNG_WRITE_tIME_SUPPORTED)
327 /* check to see if user has supplied a time chunk */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600328 if ((info_ptr->valid & PNG_INFO_tIME) &&
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600329 !(png_ptr->mode & PNG_WROTE_tIME))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500330 png_write_tIME(png_ptr, &(info_ptr->mod_time));
331#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600332#if defined(PNG_WRITE_TEXT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500333 /* loop through comment chunks */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600334 for (i = 0; i < info_ptr->num_text; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500335 {
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500336 png_debug2(2, "Writing trailer text chunk %d, type %d", i,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500337 info_ptr->text[i].compression);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600338 /* an internationalized chunk? */
339 if (info_ptr->text[i].compression > 0)
340 {
341#if defined(PNG_WRITE_iTXt_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500342 /* write international chunk */
343 png_write_iTXt(png_ptr,
344 info_ptr->text[i].compression,
345 info_ptr->text[i].key,
346 info_ptr->text[i].lang,
347 info_ptr->text[i].lang_key,
348 info_ptr->text[i].text);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600349#else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500350 png_warning(png_ptr, "Unable to write international text");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600351#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500352 /* Mark this chunk as written */
353 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600354 }
355 else if (info_ptr->text[i].compression >= PNG_TEXT_COMPRESSION_zTXt)
Guy Schalnat0d580581995-07-20 02:43:20 -0500356 {
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500357#if defined(PNG_WRITE_zTXt_SUPPORTED)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600358 /* write compressed chunk */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600359 png_write_zTXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600360 info_ptr->text[i].text, 0,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600361 info_ptr->text[i].compression);
Guy Schalnate5a37791996-06-05 15:50:50 -0500362#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600363 png_warning(png_ptr, "Unable to write compressed text");
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500364#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500365 /* Mark this chunk as written */
366 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500367 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500368 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
Guy Schalnat0d580581995-07-20 02:43:20 -0500369 {
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500370#if defined(PNG_WRITE_tEXt_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500371 /* write uncompressed chunk */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600372 png_write_tEXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600373 info_ptr->text[i].text, 0);
Guy Schalnate5a37791996-06-05 15:50:50 -0500374#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600375 png_warning(png_ptr, "Unable to write uncompressed text");
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500376#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500377
Andreas Dilger47a0c421997-05-16 02:46:07 -0500378 /* Mark this chunk as written */
379 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500380 }
381 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600382#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600383#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
384 if (info_ptr->unknown_chunks_num)
385 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500386 png_unknown_chunk *up;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600387
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500388 png_debug(5, "writing extra chunks");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600389
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500390 for (up = info_ptr->unknown_chunks;
391 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
392 up++)
393 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600394 int keep=png_handle_as_unknown(png_ptr, up->name);
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500395 if (keep != PNG_HANDLE_CHUNK_NEVER &&
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600396 up->location && (up->location & PNG_AFTER_IDAT) &&
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500397 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600398 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
399 {
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600400 png_write_chunk(png_ptr, up->name, up->data, up->size);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600401 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500402 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600403 }
404#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500405 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500406
407 png_ptr->mode |= PNG_AFTER_IDAT;
408
Andreas Dilger47a0c421997-05-16 02:46:07 -0500409 /* write end of PNG file */
Guy Schalnat0d580581995-07-20 02:43:20 -0500410 png_write_IEND(png_ptr);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500411 /* This flush, added in libpng-1.0.8, removed from libpng-1.0.9beta03,
412 * and restored again in libpng-1.2.30, may cause some applications that
413 * do not set png_ptr->output_flush_fn to crash. If your application
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -0600414 * experiences a problem, please report the event to
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500415 * png-mng-implement at lists.sf.net .
416 */
Glenn Randers-Pehrsondbed41f2008-08-19 18:20:52 -0500417#if defined(PNG_WRITE_FLUSH_SUPPORTED)
Glenn Randers-Pehrson32fc5ce2000-07-24 06:34:14 -0500418 png_flush(png_ptr);
Glenn Randers-Pehrsondbed41f2008-08-19 18:20:52 -0500419#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500420}
421
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500422#if defined(PNG_WRITE_tIME_SUPPORTED)
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500423/* "time.h" functions are not supported on WindowsCE */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500424void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600425png_convert_from_struct_tm(png_timep ptime, struct tm FAR * ttime)
Guy Schalnat0d580581995-07-20 02:43:20 -0500426{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500427 png_debug(1, "in png_convert_from_struct_tm");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500428
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600429 ptime->year = (png_uint_16)(1900 + ttime->tm_year);
430 ptime->month = (png_byte)(ttime->tm_mon + 1);
431 ptime->day = (png_byte)ttime->tm_mday;
432 ptime->hour = (png_byte)ttime->tm_hour;
433 ptime->minute = (png_byte)ttime->tm_min;
434 ptime->second = (png_byte)ttime->tm_sec;
Guy Schalnat0d580581995-07-20 02:43:20 -0500435}
436
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500437void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600438png_convert_from_time_t(png_timep ptime, time_t ttime)
Guy Schalnat0d580581995-07-20 02:43:20 -0500439{
440 struct tm *tbuf;
441
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500442 png_debug(1, "in png_convert_from_time_t");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500443
Guy Schalnat0d580581995-07-20 02:43:20 -0500444 tbuf = gmtime(&ttime);
445 png_convert_from_struct_tm(ptime, tbuf);
446}
Guy Schalnat6d764711995-12-19 03:22:19 -0600447#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500448
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500449
Andreas Dilger47a0c421997-05-16 02:46:07 -0500450/* Initialize png_ptr structure, and allocate any memory needed */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500451png_structp PNGAPI
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -0500452png_create_write_struct(png_const_charp user_png_ver, png_voidp error_ptr,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600453 png_error_ptr error_fn, png_error_ptr warn_fn)
Guy Schalnat0d580581995-07-20 02:43:20 -0500454{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500455#ifdef PNG_USER_MEM_SUPPORTED
456 return (png_create_write_struct_2(user_png_ver, error_ptr, error_fn,
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500457 warn_fn, NULL, NULL, NULL));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500458}
459
460/* Alternate initialize png_ptr structure, and allocate any memory needed */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500461png_structp PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500462png_create_write_struct_2(png_const_charp user_png_ver, png_voidp error_ptr,
463 png_error_ptr error_fn, png_error_ptr warn_fn, png_voidp mem_ptr,
464 png_malloc_ptr malloc_fn, png_free_ptr free_fn)
465{
466#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500467 int png_cleanup_needed = 0;
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -0600468#ifdef PNG_SETJMP_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500469 volatile
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -0600470#endif
Glenn Randers-Pehrsonf0a8fe02009-04-14 08:28:15 -0500471 png_structp png_ptr;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600472#ifdef PNG_SETJMP_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600473#ifdef USE_FAR_KEYWORD
474 jmp_buf jmpbuf;
475#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600476#endif
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500477 int i;
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500478
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500479 png_debug(1, "in png_create_write_struct");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500480
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500481#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600482 png_ptr = (png_structp)png_create_struct_2(PNG_STRUCT_PNG,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500483 (png_malloc_ptr)malloc_fn, (png_voidp)mem_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500484#else
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600485 png_ptr = (png_structp)png_create_struct(PNG_STRUCT_PNG);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500486#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600487 if (png_ptr == NULL)
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500488 return (NULL);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600489
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500490 /* added at libpng-1.2.6 */
491#ifdef PNG_SET_USER_LIMITS_SUPPORTED
492 png_ptr->user_width_max=PNG_USER_WIDTH_MAX;
493 png_ptr->user_height_max=PNG_USER_HEIGHT_MAX;
494#endif
495
Glenn Randers-Pehrsonf0a8fe02009-04-14 08:28:15 -0500496#ifdef PNG_SETJMP_SUPPORTED
497/* Applications that neglect to set up their own setjmp() and then
498 encounter a png_error() will longjmp here. Since the jmpbuf is
499 then meaningless we abort instead of returning. */
500#ifdef USE_FAR_KEYWORD
501 if (setjmp(jmpbuf))
502#else
503 if (setjmp(png_ptr->jmpbuf))
504#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500505 PNG_ABORT();
Glenn Randers-Pehrsonf0a8fe02009-04-14 08:28:15 -0500506#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600507
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500508#ifdef PNG_USER_MEM_SUPPORTED
509 png_set_mem_fn(png_ptr, mem_ptr, malloc_fn, free_fn);
510#endif /* PNG_USER_MEM_SUPPORTED */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600511 png_set_error_fn(png_ptr, error_ptr, error_fn, warn_fn);
Guy Schalnate5a37791996-06-05 15:50:50 -0500512
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500513 if (user_png_ver)
Guy Schalnate5a37791996-06-05 15:50:50 -0500514 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500515 i=0;
516 do
517 {
518 if (user_png_ver[i] != png_libpng_ver[i])
519 png_ptr->flags |= PNG_FLAG_LIBRARY_MISMATCH;
520 } while (png_libpng_ver[i++]);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500521 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500522
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500523 if (png_ptr->flags & PNG_FLAG_LIBRARY_MISMATCH)
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -0500524 {
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500525 /* Libpng 0.90 and later are binary incompatible with libpng 0.89, so
526 * we must recompile any applications that use any older library version.
527 * For versions after libpng 1.0, we will be compatible, so we need
528 * only check the first digit.
529 */
530 if (user_png_ver == NULL || user_png_ver[0] != png_libpng_ver[0] ||
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500531 (user_png_ver[0] == '1' && user_png_ver[2] != png_libpng_ver[2]) ||
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500532 (user_png_ver[0] == '0' && user_png_ver[2] < '9'))
533 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500534#if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500535 char msg[80];
536 if (user_png_ver)
537 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500538 png_snprintf(msg, 80,
539 "Application was compiled with png.h from libpng-%.20s",
540 user_png_ver);
541 png_warning(png_ptr, msg);
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500542 }
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500543 png_snprintf(msg, 80,
544 "Application is running with png.c from libpng-%.20s",
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500545 png_libpng_ver);
546 png_warning(png_ptr, msg);
547#endif
548#ifdef PNG_ERROR_NUMBERS_SUPPORTED
549 png_ptr->flags=0;
550#endif
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500551 png_warning(png_ptr,
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500552 "Incompatible libpng version in application and library");
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500553 png_cleanup_needed = 1;
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500554 }
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500555 }
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -0500556
Guy Schalnat0d580581995-07-20 02:43:20 -0500557 /* initialize zbuf - compression buffer */
558 png_ptr->zbuf_size = PNG_ZBUF_SIZE;
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500559 if (!png_cleanup_needed)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500560 {
561 png_ptr->zbuf = (png_bytep)png_malloc_warn(png_ptr,
562 png_ptr->zbuf_size);
563 if (png_ptr->zbuf == NULL)
564 png_cleanup_needed = 1;
565 }
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500566 if (png_cleanup_needed)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500567 {
568 /* Clean up PNG structure and deallocate any memory. */
569 png_free(png_ptr, png_ptr->zbuf);
570 png_ptr->zbuf = NULL;
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500571#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500572 png_destroy_struct_2((png_voidp)png_ptr,
573 (png_free_ptr)free_fn, (png_voidp)mem_ptr);
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500574#else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500575 png_destroy_struct((png_voidp)png_ptr);
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500576#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500577 return (NULL);
578 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500579
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500580 png_set_write_fn(png_ptr, NULL, NULL, NULL);
Guy Schalnate5a37791996-06-05 15:50:50 -0500581
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600582#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
583 png_set_filter_heuristics(png_ptr, PNG_FILTER_HEURISTIC_DEFAULT,
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500584 1, NULL, NULL);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600585#endif
586
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500587 return (png_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500588}
589
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500590
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600591/* Write a few rows of image data. If the image is interlaced,
592 * either you will have to write the 7 sub images, or, if you
593 * have called png_set_interlace_handling(), you will have to
594 * "write" the image seven times.
595 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500596void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600597png_write_rows(png_structp png_ptr, png_bytepp row,
Guy Schalnat0d580581995-07-20 02:43:20 -0500598 png_uint_32 num_rows)
599{
600 png_uint_32 i; /* row counter */
Guy Schalnat6d764711995-12-19 03:22:19 -0600601 png_bytepp rp; /* row pointer */
Guy Schalnat0d580581995-07-20 02:43:20 -0500602
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500603 png_debug(1, "in png_write_rows");
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600604
605 if (png_ptr == NULL)
606 return;
607
Guy Schalnat0d580581995-07-20 02:43:20 -0500608 /* loop through the rows */
609 for (i = 0, rp = row; i < num_rows; i++, rp++)
610 {
611 png_write_row(png_ptr, *rp);
612 }
613}
614
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600615/* Write the image. You only need to call this function once, even
616 * if you are writing an interlaced image.
617 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500618void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600619png_write_image(png_structp png_ptr, png_bytepp image)
Guy Schalnat0d580581995-07-20 02:43:20 -0500620{
621 png_uint_32 i; /* row index */
622 int pass, num_pass; /* pass variables */
Guy Schalnat6d764711995-12-19 03:22:19 -0600623 png_bytepp rp; /* points to current row */
Guy Schalnat0d580581995-07-20 02:43:20 -0500624
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600625 if (png_ptr == NULL)
626 return;
627
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500628 png_debug(1, "in png_write_image");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500629
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600630#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500631 /* Initialize interlace handling. If image is not interlaced,
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500632 * this will set pass to 1
633 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500634 num_pass = png_set_interlace_handling(png_ptr);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600635#else
636 num_pass = 1;
637#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500638 /* loop through passes */
639 for (pass = 0; pass < num_pass; pass++)
640 {
641 /* loop through image */
642 for (i = 0, rp = image; i < png_ptr->height; i++, rp++)
643 {
644 png_write_row(png_ptr, *rp);
645 }
646 }
647}
648
Guy Schalnate5a37791996-06-05 15:50:50 -0500649/* called by user to write a row of image data */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500650void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600651png_write_row(png_structp png_ptr, png_bytep row)
Guy Schalnat0d580581995-07-20 02:43:20 -0500652{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600653 if (png_ptr == NULL)
654 return;
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500655
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500656 png_debug2(1, "in png_write_row (row %ld, pass %d)",
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600657 png_ptr->row_number, png_ptr->pass);
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600658
Guy Schalnat0d580581995-07-20 02:43:20 -0500659 /* initialize transformations and other stuff if first time */
Guy Schalnat6d764711995-12-19 03:22:19 -0600660 if (png_ptr->row_number == 0 && png_ptr->pass == 0)
Guy Schalnat0d580581995-07-20 02:43:20 -0500661 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500662 /* make sure we wrote the header info */
663 if (!(png_ptr->mode & PNG_WROTE_INFO_BEFORE_PLTE))
664 png_error(png_ptr,
665 "png_write_info was never called before png_write_row");
Glenn Randers-Pehrson5cded0b2001-11-07 07:10:08 -0600666
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500667 /* check for transforms that have been set but were defined out */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500668#if !defined(PNG_WRITE_INVERT_SUPPORTED) && defined(PNG_READ_INVERT_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500669 if (png_ptr->transformations & PNG_INVERT_MONO)
670 png_warning(png_ptr, "PNG_WRITE_INVERT_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500671#endif
672#if !defined(PNG_WRITE_FILLER_SUPPORTED) && defined(PNG_READ_FILLER_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500673 if (png_ptr->transformations & PNG_FILLER)
674 png_warning(png_ptr, "PNG_WRITE_FILLER_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500675#endif
676#if !defined(PNG_WRITE_PACKSWAP_SUPPORTED) && defined(PNG_READ_PACKSWAP_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500677 if (png_ptr->transformations & PNG_PACKSWAP)
678 png_warning(png_ptr, "PNG_WRITE_PACKSWAP_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500679#endif
680#if !defined(PNG_WRITE_PACK_SUPPORTED) && defined(PNG_READ_PACK_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500681 if (png_ptr->transformations & PNG_PACK)
682 png_warning(png_ptr, "PNG_WRITE_PACK_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500683#endif
684#if !defined(PNG_WRITE_SHIFT_SUPPORTED) && defined(PNG_READ_SHIFT_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500685 if (png_ptr->transformations & PNG_SHIFT)
686 png_warning(png_ptr, "PNG_WRITE_SHIFT_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500687#endif
688#if !defined(PNG_WRITE_BGR_SUPPORTED) && defined(PNG_READ_BGR_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500689 if (png_ptr->transformations & PNG_BGR)
690 png_warning(png_ptr, "PNG_WRITE_BGR_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500691#endif
692#if !defined(PNG_WRITE_SWAP_SUPPORTED) && defined(PNG_READ_SWAP_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500693 if (png_ptr->transformations & PNG_SWAP_BYTES)
694 png_warning(png_ptr, "PNG_WRITE_SWAP_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500695#endif
696
Guy Schalnat0d580581995-07-20 02:43:20 -0500697 png_write_start_row(png_ptr);
698 }
699
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500700#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500701 /* if interlaced and not interested in row, return */
702 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
703 {
704 switch (png_ptr->pass)
705 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600706 case 0:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600707 if (png_ptr->row_number & 0x07)
Guy Schalnat0d580581995-07-20 02:43:20 -0500708 {
709 png_write_finish_row(png_ptr);
710 return;
711 }
712 break;
713 case 1:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600714 if ((png_ptr->row_number & 0x07) || png_ptr->width < 5)
Guy Schalnat0d580581995-07-20 02:43:20 -0500715 {
716 png_write_finish_row(png_ptr);
717 return;
718 }
719 break;
720 case 2:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600721 if ((png_ptr->row_number & 0x07) != 4)
Guy Schalnat0d580581995-07-20 02:43:20 -0500722 {
723 png_write_finish_row(png_ptr);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600724 return;
Guy Schalnat0d580581995-07-20 02:43:20 -0500725 }
726 break;
727 case 3:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600728 if ((png_ptr->row_number & 0x03) || png_ptr->width < 3)
Guy Schalnat0d580581995-07-20 02:43:20 -0500729 {
730 png_write_finish_row(png_ptr);
731 return;
732 }
733 break;
734 case 4:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600735 if ((png_ptr->row_number & 0x03) != 2)
Guy Schalnat0d580581995-07-20 02:43:20 -0500736 {
737 png_write_finish_row(png_ptr);
738 return;
739 }
740 break;
741 case 5:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600742 if ((png_ptr->row_number & 0x01) || png_ptr->width < 2)
Guy Schalnat0d580581995-07-20 02:43:20 -0500743 {
744 png_write_finish_row(png_ptr);
745 return;
746 }
747 break;
748 case 6:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600749 if (!(png_ptr->row_number & 0x01))
Guy Schalnat0d580581995-07-20 02:43:20 -0500750 {
751 png_write_finish_row(png_ptr);
752 return;
753 }
754 break;
755 }
756 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600757#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500758
759 /* set up row info for transformations */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600760 png_ptr->row_info.color_type = png_ptr->color_type;
Guy Schalnat0d580581995-07-20 02:43:20 -0500761 png_ptr->row_info.width = png_ptr->usr_width;
762 png_ptr->row_info.channels = png_ptr->usr_channels;
763 png_ptr->row_info.bit_depth = png_ptr->usr_bit_depth;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600764 png_ptr->row_info.pixel_depth = (png_byte)(png_ptr->row_info.bit_depth *
765 png_ptr->row_info.channels);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600766
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500767 png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
768 png_ptr->row_info.width);
Guy Schalnat0d580581995-07-20 02:43:20 -0500769
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500770 png_debug1(3, "row_info->color_type = %d", png_ptr->row_info.color_type);
771 png_debug1(3, "row_info->width = %lu", png_ptr->row_info.width);
772 png_debug1(3, "row_info->channels = %d", png_ptr->row_info.channels);
773 png_debug1(3, "row_info->bit_depth = %d", png_ptr->row_info.bit_depth);
774 png_debug1(3, "row_info->pixel_depth = %d", png_ptr->row_info.pixel_depth);
775 png_debug1(3, "row_info->rowbytes = %lu", png_ptr->row_info.rowbytes);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500776
777 /* Copy user's row into buffer, leaving room for filter byte. */
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500778 png_memcpy(png_ptr->row_buf + 1, row, png_ptr->row_info.rowbytes);
Guy Schalnat0d580581995-07-20 02:43:20 -0500779
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500780#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500781 /* Handle interlacing */
Guy Schalnat0d580581995-07-20 02:43:20 -0500782 if (png_ptr->interlaced && png_ptr->pass < 6 &&
783 (png_ptr->transformations & PNG_INTERLACE))
784 {
785 png_do_write_interlace(&(png_ptr->row_info),
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600786 png_ptr->row_buf + 1, png_ptr->pass);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500787 /* This should always get caught above, but still ... */
Guy Schalnat0d580581995-07-20 02:43:20 -0500788 if (!(png_ptr->row_info.width))
789 {
790 png_write_finish_row(png_ptr);
791 return;
792 }
793 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600794#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500795
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500796 /* Handle other transformations */
Guy Schalnat0d580581995-07-20 02:43:20 -0500797 if (png_ptr->transformations)
798 png_do_write_transformations(png_ptr);
799
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -0600800#if defined(PNG_MNG_FEATURES_SUPPORTED)
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -0600801 /* Write filter_method 64 (intrapixel differencing) only if
802 * 1. Libpng was compiled with PNG_MNG_FEATURES_SUPPORTED and
803 * 2. Libpng did not write a PNG signature (this filter_method is only
804 * used in PNG datastreams that are embedded in MNG datastreams) and
805 * 3. The application called png_permit_mng_features with a mask that
806 * included PNG_FLAG_MNG_FILTER_64 and
807 * 4. The filter_method is 64 and
808 * 5. The color_type is RGB or RGBA
809 */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500810 if ((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -0600811 (png_ptr->filter_type == PNG_INTRAPIXEL_DIFFERENCING))
812 {
813 /* Intrapixel differencing */
814 png_do_write_intrapixel(&(png_ptr->row_info), png_ptr->row_buf + 1);
815 }
816#endif
817
Andreas Dilger47a0c421997-05-16 02:46:07 -0500818 /* Find a filter if necessary, filter the row and write it out. */
Guy Schalnate5a37791996-06-05 15:50:50 -0500819 png_write_find_filter(png_ptr, &(png_ptr->row_info));
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600820
821 if (png_ptr->write_row_fn != NULL)
822 (*(png_ptr->write_row_fn))(png_ptr, png_ptr->row_number, png_ptr->pass);
Guy Schalnat0d580581995-07-20 02:43:20 -0500823}
824
Guy Schalnat0f716451995-11-28 11:22:13 -0600825#if defined(PNG_WRITE_FLUSH_SUPPORTED)
826/* Set the automatic flush interval or 0 to turn flushing off */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500827void PNGAPI
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600828png_set_flush(png_structp png_ptr, int nrows)
Guy Schalnat0f716451995-11-28 11:22:13 -0600829{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500830 png_debug(1, "in png_set_flush");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500831
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600832 if (png_ptr == NULL)
833 return;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600834 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
Guy Schalnat0f716451995-11-28 11:22:13 -0600835}
836
837/* flush the current output buffers now */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500838void PNGAPI
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600839png_write_flush(png_structp png_ptr)
Guy Schalnat0f716451995-11-28 11:22:13 -0600840{
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600841 int wrote_IDAT;
Guy Schalnat0f716451995-11-28 11:22:13 -0600842
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500843 png_debug(1, "in png_write_flush");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500844
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600845 if (png_ptr == NULL)
846 return;
Guy Schalnate5a37791996-06-05 15:50:50 -0500847 /* We have already written out all of the data */
848 if (png_ptr->row_number >= png_ptr->num_rows)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500849 return;
Guy Schalnat0f716451995-11-28 11:22:13 -0600850
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600851 do
852 {
853 int ret;
Guy Schalnat0f716451995-11-28 11:22:13 -0600854
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600855 /* compress the data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600856 ret = deflate(&png_ptr->zstream, Z_SYNC_FLUSH);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600857 wrote_IDAT = 0;
Guy Schalnat0f716451995-11-28 11:22:13 -0600858
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600859 /* check for compression errors */
860 if (ret != Z_OK)
861 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500862 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600863 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600864 else
865 png_error(png_ptr, "zlib error");
866 }
Guy Schalnat0f716451995-11-28 11:22:13 -0600867
Andreas Dilger47a0c421997-05-16 02:46:07 -0500868 if (!(png_ptr->zstream.avail_out))
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600869 {
870 /* write the IDAT and reset the zlib output buffer */
871 png_write_IDAT(png_ptr, png_ptr->zbuf,
872 png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600873 png_ptr->zstream.next_out = png_ptr->zbuf;
874 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600875 wrote_IDAT = 1;
876 }
877 } while(wrote_IDAT == 1);
Guy Schalnat0f716451995-11-28 11:22:13 -0600878
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600879 /* If there is any data left to be output, write it into a new IDAT */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600880 if (png_ptr->zbuf_size != png_ptr->zstream.avail_out)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600881 {
882 /* write the IDAT and reset the zlib output buffer */
883 png_write_IDAT(png_ptr, png_ptr->zbuf,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600884 png_ptr->zbuf_size - png_ptr->zstream.avail_out);
885 png_ptr->zstream.next_out = png_ptr->zbuf;
886 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600887 }
888 png_ptr->flush_rows = 0;
889 png_flush(png_ptr);
Guy Schalnat0f716451995-11-28 11:22:13 -0600890}
891#endif /* PNG_WRITE_FLUSH_SUPPORTED */
892
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500893/* Free all memory used by the write */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500894void PNGAPI
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600895png_destroy_write_struct(png_structpp png_ptr_ptr, png_infopp info_ptr_ptr)
Guy Schalnate5a37791996-06-05 15:50:50 -0500896{
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600897 png_structp png_ptr = NULL;
898 png_infop info_ptr = NULL;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500899#ifdef PNG_USER_MEM_SUPPORTED
900 png_free_ptr free_fn = NULL;
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500901 png_voidp mem_ptr = NULL;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500902#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600903
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500904 png_debug(1, "in png_destroy_write_struct");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500905
Andreas Dilger47a0c421997-05-16 02:46:07 -0500906 if (png_ptr_ptr != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500907 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600908 png_ptr = *png_ptr_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500909#ifdef PNG_USER_MEM_SUPPORTED
910 free_fn = png_ptr->free_fn;
Glenn Randers-Pehrsonfcbd7872002-04-07 16:35:38 -0500911 mem_ptr = png_ptr->mem_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500912#endif
913 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600914
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500915#ifdef PNG_USER_MEM_SUPPORTED
916 if (png_ptr != NULL)
917 {
918 free_fn = png_ptr->free_fn;
919 mem_ptr = png_ptr->mem_ptr;
920 }
921#endif
922
Andreas Dilger47a0c421997-05-16 02:46:07 -0500923 if (info_ptr_ptr != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600924 info_ptr = *info_ptr_ptr;
925
Andreas Dilger47a0c421997-05-16 02:46:07 -0500926 if (info_ptr != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500927 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500928 if (png_ptr != NULL)
929 {
930 png_free_data(png_ptr, info_ptr, PNG_FREE_ALL, -1);
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600931
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500932#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500933 if (png_ptr->num_chunk_list)
934 {
935 png_free(png_ptr, png_ptr->chunk_list);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500936 png_ptr->num_chunk_list = 0;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500937 }
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500938#endif
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500939 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600940
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500941#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500942 png_destroy_struct_2((png_voidp)info_ptr, (png_free_ptr)free_fn,
943 (png_voidp)mem_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500944#else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600945 png_destroy_struct((png_voidp)info_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500946#endif
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500947 *info_ptr_ptr = NULL;
Guy Schalnate5a37791996-06-05 15:50:50 -0500948 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600949
Andreas Dilger47a0c421997-05-16 02:46:07 -0500950 if (png_ptr != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500951 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600952 png_write_destroy(png_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500953#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500954 png_destroy_struct_2((png_voidp)png_ptr, (png_free_ptr)free_fn,
955 (png_voidp)mem_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500956#else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600957 png_destroy_struct((png_voidp)png_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500958#endif
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500959 *png_ptr_ptr = NULL;
Guy Schalnate5a37791996-06-05 15:50:50 -0500960 }
961}
962
963
Andreas Dilger47a0c421997-05-16 02:46:07 -0500964/* Free any memory used in png_ptr struct (old method) */
Glenn Randers-Pehrsonf64a06f2001-04-11 07:38:00 -0500965void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600966png_write_destroy(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500967{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600968#ifdef PNG_SETJMP_SUPPORTED
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500969 jmp_buf tmp_jmp; /* Save jump buffer */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600970#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500971 png_error_ptr error_fn;
972 png_error_ptr warning_fn;
973 png_voidp error_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500974#ifdef PNG_USER_MEM_SUPPORTED
975 png_free_ptr free_fn;
976#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500977
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500978 png_debug(1, "in png_write_destroy");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500979
980 /* Free any memory zlib uses */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600981 deflateEnd(&png_ptr->zstream);
Guy Schalnate5a37791996-06-05 15:50:50 -0500982
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500983 /* Free our memory. png_free checks NULL for us. */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600984 png_free(png_ptr, png_ptr->zbuf);
985 png_free(png_ptr, png_ptr->row_buf);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500986#ifndef PNG_NO_WRITE_FILTER
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600987 png_free(png_ptr, png_ptr->prev_row);
988 png_free(png_ptr, png_ptr->sub_row);
989 png_free(png_ptr, png_ptr->up_row);
990 png_free(png_ptr, png_ptr->avg_row);
991 png_free(png_ptr, png_ptr->paeth_row);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500992#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600993
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600994#if defined(PNG_TIME_RFC1123_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600995 png_free(png_ptr, png_ptr->time_buffer);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600996#endif
997
Andreas Dilger47a0c421997-05-16 02:46:07 -0500998#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
999 png_free(png_ptr, png_ptr->prev_filters);
1000 png_free(png_ptr, png_ptr->filter_weights);
1001 png_free(png_ptr, png_ptr->inv_filter_weights);
1002 png_free(png_ptr, png_ptr->filter_costs);
1003 png_free(png_ptr, png_ptr->inv_filter_costs);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001004#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001005
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001006#ifdef PNG_SETJMP_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001007 /* Reset structure */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001008 png_memcpy(tmp_jmp, png_ptr->jmpbuf, png_sizeof(jmp_buf));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001009#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001010
1011 error_fn = png_ptr->error_fn;
1012 warning_fn = png_ptr->warning_fn;
1013 error_ptr = png_ptr->error_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001014#ifdef PNG_USER_MEM_SUPPORTED
1015 free_fn = png_ptr->free_fn;
1016#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001017
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001018 png_memset(png_ptr, 0, png_sizeof(png_struct));
Guy Schalnate5a37791996-06-05 15:50:50 -05001019
1020 png_ptr->error_fn = error_fn;
1021 png_ptr->warning_fn = warning_fn;
1022 png_ptr->error_ptr = error_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001023#ifdef PNG_USER_MEM_SUPPORTED
1024 png_ptr->free_fn = free_fn;
1025#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001026
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001027#ifdef PNG_SETJMP_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001028 png_memcpy(png_ptr->jmpbuf, tmp_jmp, png_sizeof(jmp_buf));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001029#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001030}
Guy Schalnate5a37791996-06-05 15:50:50 -05001031
Andreas Dilger47a0c421997-05-16 02:46:07 -05001032/* Allow the application to select one or more row filters to use. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001033void PNGAPI
Guy Schalnate5a37791996-06-05 15:50:50 -05001034png_set_filter(png_structp png_ptr, int method, int filters)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001035{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001036 png_debug(1, "in png_set_filter");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001037
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001038 if (png_ptr == NULL)
1039 return;
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -06001040#if defined(PNG_MNG_FEATURES_SUPPORTED)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001041 if ((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -06001042 (method == PNG_INTRAPIXEL_DIFFERENCING))
1043 method = PNG_FILTER_TYPE_BASE;
1044#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001045 if (method == PNG_FILTER_TYPE_BASE)
Guy Schalnate5a37791996-06-05 15:50:50 -05001046 {
1047 switch (filters & (PNG_ALL_FILTERS | 0x07))
1048 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001049#ifndef PNG_NO_WRITE_FILTER
Guy Schalnate5a37791996-06-05 15:50:50 -05001050 case 5:
1051 case 6:
Andreas Dilger47a0c421997-05-16 02:46:07 -05001052 case 7: png_warning(png_ptr, "Unknown row filter for method 0");
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001053#endif /* PNG_NO_WRITE_FILTER */
1054 case PNG_FILTER_VALUE_NONE:
1055 png_ptr->do_filter=PNG_FILTER_NONE; break;
1056#ifndef PNG_NO_WRITE_FILTER
1057 case PNG_FILTER_VALUE_SUB:
1058 png_ptr->do_filter=PNG_FILTER_SUB; break;
1059 case PNG_FILTER_VALUE_UP:
1060 png_ptr->do_filter=PNG_FILTER_UP; break;
1061 case PNG_FILTER_VALUE_AVG:
1062 png_ptr->do_filter=PNG_FILTER_AVG; break;
1063 case PNG_FILTER_VALUE_PAETH:
1064 png_ptr->do_filter=PNG_FILTER_PAETH; break;
Guy Schalnate5a37791996-06-05 15:50:50 -05001065 default: png_ptr->do_filter = (png_byte)filters; break;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001066#else
1067 default: png_warning(png_ptr, "Unknown row filter for method 0");
1068#endif /* PNG_NO_WRITE_FILTER */
Guy Schalnate5a37791996-06-05 15:50:50 -05001069 }
1070
Andreas Dilger47a0c421997-05-16 02:46:07 -05001071 /* If we have allocated the row_buf, this means we have already started
1072 * with the image and we should have allocated all of the filter buffers
1073 * that have been selected. If prev_row isn't already allocated, then
1074 * it is too late to start using the filters that need it, since we
1075 * will be missing the data in the previous row. If an application
1076 * wants to start and stop using particular filters during compression,
1077 * it should start out with all of the filters, and then add and
1078 * remove them after the start of compression.
Guy Schalnate5a37791996-06-05 15:50:50 -05001079 */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001080 if (png_ptr->row_buf != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001081 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001082#ifndef PNG_NO_WRITE_FILTER
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001083 if ((png_ptr->do_filter & PNG_FILTER_SUB) && png_ptr->sub_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001084 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001085 png_ptr->sub_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001086 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001087 png_ptr->sub_row[0] = PNG_FILTER_VALUE_SUB;
Guy Schalnate5a37791996-06-05 15:50:50 -05001088 }
1089
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001090 if ((png_ptr->do_filter & PNG_FILTER_UP) && png_ptr->up_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001091 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001092 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001093 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001094 png_warning(png_ptr, "Can't add Up filter after starting");
Guy Schalnate5a37791996-06-05 15:50:50 -05001095 png_ptr->do_filter &= ~PNG_FILTER_UP;
1096 }
1097 else
1098 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001099 png_ptr->up_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001100 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001101 png_ptr->up_row[0] = PNG_FILTER_VALUE_UP;
Guy Schalnate5a37791996-06-05 15:50:50 -05001102 }
1103 }
1104
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001105 if ((png_ptr->do_filter & PNG_FILTER_AVG) && png_ptr->avg_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001106 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001107 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001108 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001109 png_warning(png_ptr, "Can't add Average filter after starting");
Guy Schalnate5a37791996-06-05 15:50:50 -05001110 png_ptr->do_filter &= ~PNG_FILTER_AVG;
1111 }
1112 else
1113 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001114 png_ptr->avg_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001115 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001116 png_ptr->avg_row[0] = PNG_FILTER_VALUE_AVG;
Guy Schalnate5a37791996-06-05 15:50:50 -05001117 }
1118 }
1119
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001120 if ((png_ptr->do_filter & PNG_FILTER_PAETH) &&
Andreas Dilger47a0c421997-05-16 02:46:07 -05001121 png_ptr->paeth_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001122 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001123 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001124 {
1125 png_warning(png_ptr, "Can't add Paeth filter after starting");
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05001126 png_ptr->do_filter &= (png_byte)(~PNG_FILTER_PAETH);
Guy Schalnate5a37791996-06-05 15:50:50 -05001127 }
1128 else
1129 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001130 png_ptr->paeth_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001131 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001132 png_ptr->paeth_row[0] = PNG_FILTER_VALUE_PAETH;
Guy Schalnate5a37791996-06-05 15:50:50 -05001133 }
1134 }
1135
1136 if (png_ptr->do_filter == PNG_NO_FILTERS)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001137#endif /* PNG_NO_WRITE_FILTER */
Guy Schalnate5a37791996-06-05 15:50:50 -05001138 png_ptr->do_filter = PNG_FILTER_NONE;
1139 }
1140 }
1141 else
Andreas Dilger47a0c421997-05-16 02:46:07 -05001142 png_error(png_ptr, "Unknown custom filter method");
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001143}
1144
Andreas Dilger47a0c421997-05-16 02:46:07 -05001145/* This allows us to influence the way in which libpng chooses the "best"
1146 * filter for the current scanline. While the "minimum-sum-of-absolute-
1147 * differences metric is relatively fast and effective, there is some
1148 * question as to whether it can be improved upon by trying to keep the
1149 * filtered data going to zlib more consistent, hopefully resulting in
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001150 * better compression.
1151 */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001152#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED) /* GRR 970116 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001153void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -05001154png_set_filter_heuristics(png_structp png_ptr, int heuristic_method,
1155 int num_weights, png_doublep filter_weights,
1156 png_doublep filter_costs)
1157{
1158 int i;
1159
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001160 png_debug(1, "in png_set_filter_heuristics");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001161
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001162 if (png_ptr == NULL)
1163 return;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001164 if (heuristic_method >= PNG_FILTER_HEURISTIC_LAST)
1165 {
1166 png_warning(png_ptr, "Unknown filter heuristic method");
1167 return;
1168 }
1169
1170 if (heuristic_method == PNG_FILTER_HEURISTIC_DEFAULT)
1171 {
1172 heuristic_method = PNG_FILTER_HEURISTIC_UNWEIGHTED;
1173 }
1174
1175 if (num_weights < 0 || filter_weights == NULL ||
1176 heuristic_method == PNG_FILTER_HEURISTIC_UNWEIGHTED)
1177 {
1178 num_weights = 0;
1179 }
1180
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05001181 png_ptr->num_prev_filters = (png_byte)num_weights;
1182 png_ptr->heuristic_method = (png_byte)heuristic_method;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001183
1184 if (num_weights > 0)
1185 {
1186 if (png_ptr->prev_filters == NULL)
1187 {
1188 png_ptr->prev_filters = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001189 (png_uint_32)(png_sizeof(png_byte) * num_weights));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001190
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001191 /* To make sure that the weighting starts out fairly */
1192 for (i = 0; i < num_weights; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001193 {
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001194 png_ptr->prev_filters[i] = 255;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001195 }
1196 }
1197
1198 if (png_ptr->filter_weights == NULL)
1199 {
Glenn Randers-Pehrson87c6bc92001-04-03 22:43:19 -05001200 png_ptr->filter_weights = (png_uint_16p)png_malloc(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001201 (png_uint_32)(png_sizeof(png_uint_16) * num_weights));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001202
Glenn Randers-Pehrson87c6bc92001-04-03 22:43:19 -05001203 png_ptr->inv_filter_weights = (png_uint_16p)png_malloc(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001204 (png_uint_32)(png_sizeof(png_uint_16) * num_weights));
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001205 for (i = 0; i < num_weights; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001206 {
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001207 png_ptr->inv_filter_weights[i] =
1208 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001209 }
1210 }
1211
1212 for (i = 0; i < num_weights; i++)
1213 {
1214 if (filter_weights[i] < 0.0)
1215 {
1216 png_ptr->inv_filter_weights[i] =
1217 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
1218 }
1219 else
1220 {
1221 png_ptr->inv_filter_weights[i] =
1222 (png_uint_16)((double)PNG_WEIGHT_FACTOR*filter_weights[i]+0.5);
1223 png_ptr->filter_weights[i] =
1224 (png_uint_16)((double)PNG_WEIGHT_FACTOR/filter_weights[i]+0.5);
1225 }
1226 }
1227 }
1228
1229 /* If, in the future, there are other filter methods, this would
1230 * need to be based on png_ptr->filter.
1231 */
1232 if (png_ptr->filter_costs == NULL)
1233 {
Glenn Randers-Pehrson87c6bc92001-04-03 22:43:19 -05001234 png_ptr->filter_costs = (png_uint_16p)png_malloc(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001235 (png_uint_32)(png_sizeof(png_uint_16) * PNG_FILTER_VALUE_LAST));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001236
Glenn Randers-Pehrson87c6bc92001-04-03 22:43:19 -05001237 png_ptr->inv_filter_costs = (png_uint_16p)png_malloc(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001238 (png_uint_32)(png_sizeof(png_uint_16) * PNG_FILTER_VALUE_LAST));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001239
1240 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++)
1241 {
1242 png_ptr->inv_filter_costs[i] =
1243 png_ptr->filter_costs[i] = PNG_COST_FACTOR;
1244 }
1245 }
1246
1247 /* Here is where we set the relative costs of the different filters. We
1248 * should take the desired compression level into account when setting
1249 * the costs, so that Paeth, for instance, has a high relative cost at low
1250 * compression levels, while it has a lower relative cost at higher
1251 * compression settings. The filter types are in order of increasing
1252 * relative cost, so it would be possible to do this with an algorithm.
1253 */
1254 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++)
1255 {
1256 if (filter_costs == NULL || filter_costs[i] < 0.0)
1257 {
1258 png_ptr->inv_filter_costs[i] =
1259 png_ptr->filter_costs[i] = PNG_COST_FACTOR;
1260 }
1261 else if (filter_costs[i] >= 1.0)
1262 {
1263 png_ptr->inv_filter_costs[i] =
1264 (png_uint_16)((double)PNG_COST_FACTOR / filter_costs[i] + 0.5);
1265 png_ptr->filter_costs[i] =
1266 (png_uint_16)((double)PNG_COST_FACTOR * filter_costs[i] + 0.5);
1267 }
1268 }
1269}
1270#endif /* PNG_WRITE_WEIGHTED_FILTER_SUPPORTED */
1271
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001272void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001273png_set_compression_level(png_structp png_ptr, int level)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001274{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001275 png_debug(1, "in png_set_compression_level");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001276
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001277 if (png_ptr == NULL)
1278 return;
Guy Schalnate5a37791996-06-05 15:50:50 -05001279 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_LEVEL;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001280 png_ptr->zlib_level = level;
1281}
1282
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001283void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001284png_set_compression_mem_level(png_structp png_ptr, int mem_level)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001285{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001286 png_debug(1, "in png_set_compression_mem_level");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001287
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001288 if (png_ptr == NULL)
1289 return;
Guy Schalnate5a37791996-06-05 15:50:50 -05001290 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001291 png_ptr->zlib_mem_level = mem_level;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001292}
1293
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001294void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001295png_set_compression_strategy(png_structp png_ptr, int strategy)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001296{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001297 png_debug(1, "in png_set_compression_strategy");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001298
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001299 if (png_ptr == NULL)
1300 return;
Guy Schalnate5a37791996-06-05 15:50:50 -05001301 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_STRATEGY;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001302 png_ptr->zlib_strategy = strategy;
1303}
1304
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001305void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001306png_set_compression_window_bits(png_structp png_ptr, int window_bits)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001307{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001308 if (png_ptr == NULL)
1309 return;
Guy Schalnate5a37791996-06-05 15:50:50 -05001310 if (window_bits > 15)
1311 png_warning(png_ptr, "Only compression windows <= 32k supported by PNG");
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001312 else if (window_bits < 8)
1313 png_warning(png_ptr, "Only compression windows >= 256 supported by PNG");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001314#ifndef WBITS_8_OK
1315 /* avoid libpng bug with 256-byte windows */
1316 if (window_bits == 8)
1317 {
1318 png_warning(png_ptr, "Compression window is being reset to 512");
1319 window_bits=9;
1320 }
1321#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001322 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001323 png_ptr->zlib_window_bits = window_bits;
1324}
1325
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001326void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001327png_set_compression_method(png_structp png_ptr, int method)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001328{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001329 png_debug(1, "in png_set_compression_method");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001330
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001331 if (png_ptr == NULL)
1332 return;
Guy Schalnate5a37791996-06-05 15:50:50 -05001333 if (method != 8)
1334 png_warning(png_ptr, "Only compression method 8 is supported by PNG");
1335 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_METHOD;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001336 png_ptr->zlib_method = method;
Guy Schalnat0d580581995-07-20 02:43:20 -05001337}
1338
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001339void PNGAPI
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001340png_set_write_status_fn(png_structp png_ptr, png_write_status_ptr write_row_fn)
1341{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001342 if (png_ptr == NULL)
1343 return;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001344 png_ptr->write_row_fn = write_row_fn;
1345}
1346
1347#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001348void PNGAPI
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001349png_set_write_user_transform_fn(png_structp png_ptr, png_user_transform_ptr
1350 write_user_transform_fn)
1351{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001352 png_debug(1, "in png_set_write_user_transform_fn");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001353
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001354 if (png_ptr == NULL)
1355 return;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001356 png_ptr->transformations |= PNG_USER_TRANSFORM;
1357 png_ptr->write_user_transform_fn = write_user_transform_fn;
1358}
1359#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001360
1361
1362#if defined(PNG_INFO_IMAGE_SUPPORTED)
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001363void PNGAPI
1364png_write_png(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001365 int transforms, voidp params)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001366{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001367 if (png_ptr == NULL || info_ptr == NULL)
1368 return;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001369
1370 /* Write the file header information. */
1371 png_write_info(png_ptr, info_ptr);
1372
1373 /* ------ these transformations don't touch the info structure ------- */
1374
1375#if defined(PNG_WRITE_INVERT_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001376 /* Invert monochrome pixels */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001377 if (transforms & PNG_TRANSFORM_INVERT_MONO)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001378 png_set_invert_mono(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001379#endif
1380
1381#if defined(PNG_WRITE_SHIFT_SUPPORTED)
1382 /* Shift the pixels up to a legal bit depth and fill in
1383 * as appropriate to correctly scale the image.
1384 */
1385 if ((transforms & PNG_TRANSFORM_SHIFT)
1386 && (info_ptr->valid & PNG_INFO_sBIT))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001387 png_set_shift(png_ptr, &info_ptr->sig_bit);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001388#endif
1389
1390#if defined(PNG_WRITE_PACK_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001391 /* Pack pixels into bytes */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001392 if (transforms & PNG_TRANSFORM_PACKING)
1393 png_set_packing(png_ptr);
1394#endif
1395
1396#if defined(PNG_WRITE_SWAP_ALPHA_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001397 /* Swap location of alpha bytes from ARGB to RGBA */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001398 if (transforms & PNG_TRANSFORM_SWAP_ALPHA)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001399 png_set_swap_alpha(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001400#endif
1401
1402#if defined(PNG_WRITE_FILLER_SUPPORTED)
Glenn Randers-Pehrson4a82d692008-12-15 16:25:05 -06001403 /* Pack XRGB/RGBX/ARGB/RGBA into * RGB (4 channels -> 3 channels) */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001404 if (transforms & PNG_TRANSFORM_STRIP_FILLER_AFTER)
Glenn Randers-Pehrson1eb14e92008-12-10 07:14:45 -06001405 png_set_filler(png_ptr, 0, PNG_FILLER_AFTER);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001406 else if (transforms & PNG_TRANSFORM_STRIP_FILLER_BEFORE)
Glenn Randers-Pehrson1eb14e92008-12-10 07:14:45 -06001407 png_set_filler(png_ptr, 0, PNG_FILLER_BEFORE);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001408#endif
1409
1410#if defined(PNG_WRITE_BGR_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001411 /* Flip BGR pixels to RGB */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001412 if (transforms & PNG_TRANSFORM_BGR)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001413 png_set_bgr(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001414#endif
1415
1416#if defined(PNG_WRITE_SWAP_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001417 /* Swap bytes of 16-bit files to most significant byte first */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001418 if (transforms & PNG_TRANSFORM_SWAP_ENDIAN)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001419 png_set_swap(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001420#endif
1421
1422#if defined(PNG_WRITE_PACKSWAP_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001423 /* Swap bits of 1, 2, 4 bit packed pixel formats */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001424 if (transforms & PNG_TRANSFORM_PACKSWAP)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001425 png_set_packswap(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001426#endif
1427
Glenn Randers-Pehrson6878eb62009-06-29 16:45:53 -05001428#if defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED)
1429 /* Invert the alpha channel from opacity to transparency */
1430 if (transforms & PNG_TRANSFORM_INVERT_ALPHA)
1431 png_set_invert_alpha(png_ptr);
1432#endif
1433
Glenn Randers-Pehrson99708d52009-06-29 17:30:00 -05001434#if defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED)
1435 /* Invert the alpha channel from opacity to transparency */
1436 if (transforms & PNG_TRANSFORM_INVERT_ALPHA)
1437 png_set_invert_alpha(png_ptr);
1438#endif
1439
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001440 /* ----------------------- end of transformations ------------------- */
1441
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001442 /* Write the bits */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001443 if (info_ptr->valid & PNG_INFO_IDAT)
1444 png_write_image(png_ptr, info_ptr->row_pointers);
1445
1446 /* It is REQUIRED to call this to finish writing the rest of the file */
1447 png_write_end(png_ptr, info_ptr);
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001448
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001449 transforms = transforms; /* quiet compiler warnings */
1450 params = params;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001451}
1452#endif
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001453#endif /* PNG_WRITE_SUPPORTED */