blob: d1af9e899fb285428412c469baaa4aa9e87228b0 [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-Pehrsond404b6d2011-07-07 06:24:57 -05004 * Last changed in libpng 1.5.4 [July 7, 2011]
Glenn Randers-Pehrson64b863c2011-01-04 09:57:06 -06005 * Copyright (c) 1998-2011 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"
Guy Schalnat0d580581995-07-20 02:43:20 -050015
Glenn Randers-Pehrsonc3cd22b2010-03-08 21:10:25 -060016#ifdef PNG_WRITE_SUPPORTED
17
Andreas Dilger47a0c421997-05-16 02:46:07 -050018/* Writes all the PNG information. This is the suggested way to use the
19 * library. If you have a new chunk to add, make a function to write it,
20 * and put it in the correct location here. If you want the chunk written
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -050021 * after the image data, put it in png_write_end(). I strongly encourage
Andreas Dilger47a0c421997-05-16 02:46:07 -050022 * you to supply a PNG_INFO_ flag, and check info_ptr->valid before writing
23 * the chunk, as that will keep the code from breaking if you want to just
24 * write a plain PNG file. If you have long comments, I suggest writing
25 * them in png_write_end(), and compressing them.
26 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050027void PNGAPI
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -060028png_write_info_before_PLTE(png_structp png_ptr, png_infop info_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -050029{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -050030 png_debug(1, "in png_write_info_before_PLTE");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -050031
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -060032 if (png_ptr == NULL || info_ptr == NULL)
33 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050034
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -060035 if (!(png_ptr->mode & PNG_WROTE_INFO_BEFORE_PLTE))
36 {
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -050037 /* Write PNG signature */
38 png_write_sig(png_ptr);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050039
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050040#ifdef PNG_MNG_FEATURES_SUPPORTED
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -060041 if ((png_ptr->mode&PNG_HAVE_PNG_SIGNATURE) && \
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -060042 (png_ptr->mng_features_permitted))
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -060043 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050044 png_warning(png_ptr, "MNG features are not allowed in a PNG datastream");
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -050045 png_ptr->mng_features_permitted = 0;
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -060046 }
47#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050048
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -050049 /* Write IHDR information. */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060050 png_write_IHDR(png_ptr, info_ptr->width, info_ptr->height,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -060051 info_ptr->bit_depth, info_ptr->color_type, info_ptr->compression_type,
52 info_ptr->filter_type,
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050053#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -060054 info_ptr->interlace_type);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060055#else
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -060056 0);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060057#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050058 /* The rest of these check to see if the valid field has the appropriate
59 * flag set, and if it does, writes the chunk.
60 */
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050061#ifdef PNG_WRITE_gAMA_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060062 if (info_ptr->valid & PNG_INFO_gAMA)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050063 png_write_gAMA_fixed(png_ptr, info_ptr->gamma);
Guy Schalnat51f0eb41995-09-26 05:22:39 -050064#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050065#ifdef PNG_WRITE_sRGB_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060066 if (info_ptr->valid & PNG_INFO_sRGB)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -060067 png_write_sRGB(png_ptr, (int)info_ptr->srgb_intent);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060068#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050069
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050070#ifdef PNG_WRITE_iCCP_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060071 if (info_ptr->valid & PNG_INFO_iCCP)
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -060072 png_write_iCCP(png_ptr, info_ptr->iccp_name, PNG_COMPRESSION_TYPE_BASE,
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050073 (png_charp)info_ptr->iccp_profile, (int)info_ptr->iccp_proflen);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060074#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050075#ifdef PNG_WRITE_sBIT_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060076 if (info_ptr->valid & PNG_INFO_sBIT)
77 png_write_sBIT(png_ptr, &(info_ptr->sig_bit), info_ptr->color_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -050078#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050079#ifdef PNG_WRITE_cHRM_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060080 if (info_ptr->valid & PNG_INFO_cHRM)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050081 png_write_cHRM_fixed(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -060082 info_ptr->x_white, info_ptr->y_white,
83 info_ptr->x_red, info_ptr->y_red,
84 info_ptr->x_green, info_ptr->y_green,
85 info_ptr->x_blue, info_ptr->y_blue);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060086#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050087
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050088#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060089 if (info_ptr->unknown_chunks_num)
90 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050091 png_unknown_chunk *up;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060092
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050093 png_debug(5, "writing extra chunks");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060094
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050095 for (up = info_ptr->unknown_chunks;
96 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
97 up++)
98 {
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -050099 int keep = png_handle_as_unknown(png_ptr, up->name);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500100
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500101 if (keep != PNG_HANDLE_CHUNK_NEVER &&
Glenn Randers-Pehrson36fa2a02011-05-11 06:52:37 -0500102 up->location &&
103 !(up->location & PNG_HAVE_PLTE) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600104 !(up->location & PNG_HAVE_IDAT) &&
Glenn Randers-Pehrson36fa2a02011-05-11 06:52:37 -0500105 !(up->location & PNG_AFTER_IDAT) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600106 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
107 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600108 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500109 if (up->size == 0)
110 png_warning(png_ptr, "Writing zero-length unknown chunk");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500111
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600112 png_write_chunk(png_ptr, up->name, up->data, up->size);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600113 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500114 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600115 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500116#endif
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600117 png_ptr->mode |= PNG_WROTE_INFO_BEFORE_PLTE;
118 }
119}
120
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500121void PNGAPI
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600122png_write_info(png_structp png_ptr, png_infop info_ptr)
123{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600124#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600125 int i;
126#endif
127
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500128 png_debug(1, "in png_write_info");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600129
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600130 if (png_ptr == NULL || info_ptr == NULL)
131 return;
132
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600133 png_write_info_before_PLTE(png_ptr, info_ptr);
134
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600135 if (info_ptr->valid & PNG_INFO_PLTE)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500136 png_write_PLTE(png_ptr, info_ptr->palette,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600137 (png_uint_32)info_ptr->num_palette);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500138
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600139 else if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600140 png_error(png_ptr, "Valid palette required for paletted images");
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600141
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500142#ifdef PNG_WRITE_tRNS_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600143 if (info_ptr->valid & PNG_INFO_tRNS)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500144 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500145#ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500146 /* Invert the alpha channel (in tRNS) */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500147 if ((png_ptr->transformations & PNG_INVERT_ALPHA) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600148 info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500149 {
150 int j;
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -0500151 for (j = 0; j<(int)info_ptr->num_trans; j++)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500152 info_ptr->trans_alpha[j] =
Glenn Randers-Pehrson29034c52010-07-29 17:58:49 -0500153 (png_byte)(255 - info_ptr->trans_alpha[j]);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500154 }
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600155#endif
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500156 png_write_tRNS(png_ptr, info_ptr->trans_alpha, &(info_ptr->trans_color),
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600157 info_ptr->num_trans, info_ptr->color_type);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500158 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500159#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500160#ifdef PNG_WRITE_bKGD_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600161 if (info_ptr->valid & PNG_INFO_bKGD)
162 png_write_bKGD(png_ptr, &(info_ptr->background), info_ptr->color_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500163#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500164
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500165#ifdef PNG_WRITE_hIST_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600166 if (info_ptr->valid & PNG_INFO_hIST)
167 png_write_hIST(png_ptr, info_ptr->hist, info_ptr->num_palette);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500168#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500169
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500170#ifdef PNG_WRITE_oFFs_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600171 if (info_ptr->valid & PNG_INFO_oFFs)
172 png_write_oFFs(png_ptr, info_ptr->x_offset, info_ptr->y_offset,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600173 info_ptr->offset_unit_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500174#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500175
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500176#ifdef PNG_WRITE_pCAL_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500177 if (info_ptr->valid & PNG_INFO_pCAL)
178 png_write_pCAL(png_ptr, info_ptr->pcal_purpose, info_ptr->pcal_X0,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600179 info_ptr->pcal_X1, info_ptr->pcal_type, info_ptr->pcal_nparams,
180 info_ptr->pcal_units, info_ptr->pcal_params);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500181#endif
Glenn Randers-Pehrson59020592009-05-18 10:52:12 -0500182
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500183#ifdef PNG_WRITE_sCAL_SUPPORTED
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500184 if (info_ptr->valid & PNG_INFO_sCAL)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600185 png_write_sCAL_s(png_ptr, (int)info_ptr->scal_unit,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600186 info_ptr->scal_s_width, info_ptr->scal_s_height);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500187#endif /* sCAL */
188
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500189#ifdef PNG_WRITE_pHYs_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500190 if (info_ptr->valid & PNG_INFO_pHYs)
191 png_write_pHYs(png_ptr, info_ptr->x_pixels_per_unit,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600192 info_ptr->y_pixels_per_unit, info_ptr->phys_unit_type);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500193#endif /* pHYs */
194
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500195#ifdef PNG_WRITE_tIME_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600196 if (info_ptr->valid & PNG_INFO_tIME)
Guy Schalnate5a37791996-06-05 15:50:50 -0500197 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600198 png_write_tIME(png_ptr, &(info_ptr->mod_time));
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600199 png_ptr->mode |= PNG_WROTE_tIME;
Guy Schalnate5a37791996-06-05 15:50:50 -0500200 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500201#endif /* tIME */
202
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500203#ifdef PNG_WRITE_sPLT_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600204 if (info_ptr->valid & PNG_INFO_sPLT)
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600205 for (i = 0; i < (int)info_ptr->splt_palettes_num; i++)
206 png_write_sPLT(png_ptr, info_ptr->splt_palettes + i);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500207#endif /* sPLT */
208
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500209#ifdef PNG_WRITE_TEXT_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -0500210 /* Check to see if we need to write text chunks */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500211 for (i = 0; i < info_ptr->num_text; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500212 {
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500213 png_debug2(2, "Writing header text chunk %d, type %d", i,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600214 info_ptr->text[i].compression);
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500215 /* An internationalized chunk? */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600216 if (info_ptr->text[i].compression > 0)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600217 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500218#ifdef PNG_WRITE_iTXt_SUPPORTED
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600219 /* Write international chunk */
220 png_write_iTXt(png_ptr,
221 info_ptr->text[i].compression,
222 info_ptr->text[i].key,
223 info_ptr->text[i].lang,
224 info_ptr->text[i].lang_key,
225 info_ptr->text[i].text);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600226#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600227 png_warning(png_ptr, "Unable to write international text");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600228#endif
229 /* Mark this chunk as written */
230 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
231 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500232
Andreas Dilger47a0c421997-05-16 02:46:07 -0500233 /* If we want a compressed text chunk */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600234 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_zTXt)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500235 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500236#ifdef PNG_WRITE_zTXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500237 /* Write compressed chunk */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500238 png_write_zTXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600239 info_ptr->text[i].text, 0,
240 info_ptr->text[i].compression);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500241#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600242 png_warning(png_ptr, "Unable to write compressed text");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500243#endif
244 /* Mark this chunk as written */
245 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
246 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500247
Andreas Dilger47a0c421997-05-16 02:46:07 -0500248 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
249 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500250#ifdef PNG_WRITE_tEXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500251 /* Write uncompressed chunk */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500252 png_write_tEXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600253 info_ptr->text[i].text,
254 0);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500255 /* Mark this chunk as written */
256 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500257#else
258 /* Can't get here */
259 png_warning(png_ptr, "Unable to write uncompressed text");
260#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500261 }
262 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500263#endif /* tEXt */
264
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500265#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600266 if (info_ptr->unknown_chunks_num)
267 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500268 png_unknown_chunk *up;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600269
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500270 png_debug(5, "writing extra chunks");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600271
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500272 for (up = info_ptr->unknown_chunks;
273 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
274 up++)
275 {
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -0500276 int keep = png_handle_as_unknown(png_ptr, up->name);
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500277 if (keep != PNG_HANDLE_CHUNK_NEVER &&
Glenn Randers-Pehrson36fa2a02011-05-11 06:52:37 -0500278 up->location &&
279 (up->location & PNG_HAVE_PLTE) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600280 !(up->location & PNG_HAVE_IDAT) &&
Glenn Randers-Pehrson36fa2a02011-05-11 06:52:37 -0500281 !(up->location & PNG_AFTER_IDAT) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600282 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
283 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600284 {
285 png_write_chunk(png_ptr, up->name, up->data, up->size);
286 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500287 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600288 }
289#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500290}
Guy Schalnat0d580581995-07-20 02:43:20 -0500291
Andreas Dilger47a0c421997-05-16 02:46:07 -0500292/* Writes the end of the PNG file. If you don't want to write comments or
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600293 * time information, you can pass NULL for info. If you already wrote these
294 * in png_write_info(), do not write them again here. If you have long
295 * comments, I suggest writing them here, and compressing them.
296 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500297void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500298png_write_end(png_structp png_ptr, png_infop info_ptr)
299{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500300 png_debug(1, "in png_write_end");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500301
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600302 if (png_ptr == NULL)
303 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500304
Andreas Dilger47a0c421997-05-16 02:46:07 -0500305 if (!(png_ptr->mode & PNG_HAVE_IDAT))
306 png_error(png_ptr, "No IDATs written into file");
307
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500308 /* See if user wants us to write information chunks */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500309 if (info_ptr != NULL)
310 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500311#ifdef PNG_WRITE_TEXT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500312 int i; /* local index variable */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600313#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500314#ifdef PNG_WRITE_tIME_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500315 /* Check to see if user has supplied a time chunk */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600316 if ((info_ptr->valid & PNG_INFO_tIME) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600317 !(png_ptr->mode & PNG_WROTE_tIME))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500318 png_write_tIME(png_ptr, &(info_ptr->mod_time));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500319
Andreas Dilger47a0c421997-05-16 02:46:07 -0500320#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500321#ifdef PNG_WRITE_TEXT_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500322 /* Loop through comment chunks */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600323 for (i = 0; i < info_ptr->num_text; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500324 {
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500325 png_debug2(2, "Writing trailer text chunk %d, type %d", i,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500326 info_ptr->text[i].compression);
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500327 /* An internationalized chunk? */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600328 if (info_ptr->text[i].compression > 0)
329 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500330#ifdef PNG_WRITE_iTXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500331 /* Write international chunk */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500332 png_write_iTXt(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600333 info_ptr->text[i].compression,
334 info_ptr->text[i].key,
335 info_ptr->text[i].lang,
336 info_ptr->text[i].lang_key,
337 info_ptr->text[i].text);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600338#else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500339 png_warning(png_ptr, "Unable to write international text");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600340#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500341 /* Mark this chunk as written */
342 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600343 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500344
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600345 else if (info_ptr->text[i].compression >= PNG_TEXT_COMPRESSION_zTXt)
Guy Schalnat0d580581995-07-20 02:43:20 -0500346 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500347#ifdef PNG_WRITE_zTXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500348 /* Write compressed chunk */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600349 png_write_zTXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600350 info_ptr->text[i].text, 0,
351 info_ptr->text[i].compression);
Guy Schalnate5a37791996-06-05 15:50:50 -0500352#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600353 png_warning(png_ptr, "Unable to write compressed text");
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500354#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500355 /* Mark this chunk as written */
356 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500357 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500358
Andreas Dilger47a0c421997-05-16 02:46:07 -0500359 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
Guy Schalnat0d580581995-07-20 02:43:20 -0500360 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500361#ifdef PNG_WRITE_tEXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500362 /* Write uncompressed chunk */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600363 png_write_tEXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600364 info_ptr->text[i].text, 0);
Guy Schalnate5a37791996-06-05 15:50:50 -0500365#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600366 png_warning(png_ptr, "Unable to write uncompressed text");
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500367#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500368
Andreas Dilger47a0c421997-05-16 02:46:07 -0500369 /* Mark this chunk as written */
370 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500371 }
372 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600373#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500374#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600375 if (info_ptr->unknown_chunks_num)
376 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500377 png_unknown_chunk *up;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600378
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500379 png_debug(5, "writing extra chunks");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600380
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500381 for (up = info_ptr->unknown_chunks;
382 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
383 up++)
384 {
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -0500385 int keep = png_handle_as_unknown(png_ptr, up->name);
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500386 if (keep != PNG_HANDLE_CHUNK_NEVER &&
Glenn Randers-Pehrson36fa2a02011-05-11 06:52:37 -0500387 up->location &&
388 (up->location & PNG_AFTER_IDAT) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600389 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
390 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600391 {
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600392 png_write_chunk(png_ptr, up->name, up->data, up->size);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600393 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500394 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600395 }
396#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500397 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500398
399 png_ptr->mode |= PNG_AFTER_IDAT;
400
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500401 /* Write end of PNG file */
Guy Schalnat0d580581995-07-20 02:43:20 -0500402 png_write_IEND(png_ptr);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500403 /* This flush, added in libpng-1.0.8, removed from libpng-1.0.9beta03,
404 * and restored again in libpng-1.2.30, may cause some applications that
405 * do not set png_ptr->output_flush_fn to crash. If your application
Glenn Randers-Pehrsonedcd6e12009-11-20 20:28:29 -0600406 * experiences a problem, please try building libpng with
407 * PNG_WRITE_FLUSH_AFTER_IEND_SUPPORTED defined, and report the event to
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500408 * png-mng-implement at lists.sf.net .
409 */
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500410#ifdef PNG_WRITE_FLUSH_SUPPORTED
Glenn Randers-Pehrsonedcd6e12009-11-20 20:28:29 -0600411# ifdef PNG_WRITE_FLUSH_AFTER_IEND_SUPPORTED
Glenn Randers-Pehrson32fc5ce2000-07-24 06:34:14 -0500412 png_flush(png_ptr);
Glenn Randers-Pehrsonedcd6e12009-11-20 20:28:29 -0600413# endif
Glenn Randers-Pehrsondbed41f2008-08-19 18:20:52 -0500414#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500415}
416
Glenn Randers-Pehrson65d235a2009-11-02 11:32:30 -0600417#ifdef PNG_CONVERT_tIME_SUPPORTED
Glenn Randers-Pehrson99106de2009-11-01 16:26:14 -0600418/* "tm" structure is not supported on WindowsCE */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500419void PNGAPI
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500420png_convert_from_struct_tm(png_timep ptime, PNG_CONST struct tm FAR * ttime)
Guy Schalnat0d580581995-07-20 02:43:20 -0500421{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500422 png_debug(1, "in png_convert_from_struct_tm");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500423
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600424 ptime->year = (png_uint_16)(1900 + ttime->tm_year);
425 ptime->month = (png_byte)(ttime->tm_mon + 1);
426 ptime->day = (png_byte)ttime->tm_mday;
427 ptime->hour = (png_byte)ttime->tm_hour;
428 ptime->minute = (png_byte)ttime->tm_min;
429 ptime->second = (png_byte)ttime->tm_sec;
Guy Schalnat0d580581995-07-20 02:43:20 -0500430}
431
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500432void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600433png_convert_from_time_t(png_timep ptime, time_t ttime)
Guy Schalnat0d580581995-07-20 02:43:20 -0500434{
435 struct tm *tbuf;
436
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500437 png_debug(1, "in png_convert_from_time_t");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500438
Guy Schalnat0d580581995-07-20 02:43:20 -0500439 tbuf = gmtime(&ttime);
440 png_convert_from_struct_tm(ptime, tbuf);
441}
Guy Schalnat6d764711995-12-19 03:22:19 -0600442#endif
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500443
Andreas Dilger47a0c421997-05-16 02:46:07 -0500444/* Initialize png_ptr structure, and allocate any memory needed */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500445PNG_FUNCTION(png_structp,PNGAPI
446png_create_write_struct,(png_const_charp user_png_ver, png_voidp error_ptr,
447 png_error_ptr error_fn, png_error_ptr warn_fn),PNG_ALLOCATED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500448{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500449#ifdef PNG_USER_MEM_SUPPORTED
450 return (png_create_write_struct_2(user_png_ver, error_ptr, error_fn,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600451 warn_fn, NULL, NULL, NULL));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500452}
453
454/* Alternate initialize png_ptr structure, and allocate any memory needed */
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500455static void png_reset_filter_heuristics(png_structp png_ptr); /* forward decl */
456
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500457PNG_FUNCTION(png_structp,PNGAPI
458png_create_write_struct_2,(png_const_charp user_png_ver, png_voidp error_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600459 png_error_ptr error_fn, png_error_ptr warn_fn, png_voidp mem_ptr,
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500460 png_malloc_ptr malloc_fn, png_free_ptr free_fn),PNG_ALLOCATED)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500461{
462#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson62ca98e2009-12-20 15:14:57 -0600463 volatile int png_cleanup_needed = 0;
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -0600464#ifdef PNG_SETJMP_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500465 volatile
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -0600466#endif
Glenn Randers-Pehrsonf0a8fe02009-04-14 08:28:15 -0500467 png_structp png_ptr;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600468#ifdef PNG_SETJMP_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600469#ifdef USE_FAR_KEYWORD
John Bowlere6dc85b2011-04-27 14:47:15 -0500470 jmp_buf tmp_jmpbuf;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600471#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600472#endif
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500473
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500474 png_debug(1, "in png_create_write_struct");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500475
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500476#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600477 png_ptr = (png_structp)png_create_struct_2(PNG_STRUCT_PNG,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600478 (png_malloc_ptr)malloc_fn, (png_voidp)mem_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500479#else
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600480 png_ptr = (png_structp)png_create_struct(PNG_STRUCT_PNG);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500481#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600482 if (png_ptr == NULL)
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500483 return (NULL);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600484
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500485 /* Added at libpng-1.2.6 */
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500486#ifdef PNG_SET_USER_LIMITS_SUPPORTED
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -0500487 png_ptr->user_width_max = PNG_USER_WIDTH_MAX;
488 png_ptr->user_height_max = PNG_USER_HEIGHT_MAX;
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500489#endif
490
Glenn Randers-Pehrsonf0a8fe02009-04-14 08:28:15 -0500491#ifdef PNG_SETJMP_SUPPORTED
492/* Applications that neglect to set up their own setjmp() and then
493 encounter a png_error() will longjmp here. Since the jmpbuf is
494 then meaningless we abort instead of returning. */
495#ifdef USE_FAR_KEYWORD
John Bowlere6dc85b2011-04-27 14:47:15 -0500496 if (setjmp(tmp_jmpbuf))
Glenn Randers-Pehrsonf0a8fe02009-04-14 08:28:15 -0500497#else
Glenn Randers-Pehrsonf4ea2242009-11-20 21:38:24 -0600498 if (setjmp(png_jmpbuf(png_ptr))) /* sets longjmp to match setjmp */
499#endif
500#ifdef USE_FAR_KEYWORD
John Bowlere6dc85b2011-04-27 14:47:15 -0500501 png_memcpy(png_jmpbuf(png_ptr), tmp_jmpbuf, png_sizeof(jmp_buf));
Glenn Randers-Pehrsonf0a8fe02009-04-14 08:28:15 -0500502#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500503 PNG_ABORT();
Glenn Randers-Pehrsonf0a8fe02009-04-14 08:28:15 -0500504#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600505
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500506#ifdef PNG_USER_MEM_SUPPORTED
507 png_set_mem_fn(png_ptr, mem_ptr, malloc_fn, free_fn);
508#endif /* PNG_USER_MEM_SUPPORTED */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600509 png_set_error_fn(png_ptr, error_ptr, error_fn, warn_fn);
Guy Schalnate5a37791996-06-05 15:50:50 -0500510
John Bowler88b77cc2011-05-05 06:49:55 -0500511 if (!png_user_version_check(png_ptr, user_png_ver))
512 png_cleanup_needed = 1;
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -0500513
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500514 /* Initialize zbuf - compression buffer */
Guy Schalnat0d580581995-07-20 02:43:20 -0500515 png_ptr->zbuf_size = PNG_ZBUF_SIZE;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500516
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500517 if (!png_cleanup_needed)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500518 {
519 png_ptr->zbuf = (png_bytep)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600520 png_ptr->zbuf_size);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500521 if (png_ptr->zbuf == NULL)
522 png_cleanup_needed = 1;
523 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500524
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500525 if (png_cleanup_needed)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500526 {
527 /* Clean up PNG structure and deallocate any memory. */
528 png_free(png_ptr, png_ptr->zbuf);
529 png_ptr->zbuf = NULL;
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500530#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500531 png_destroy_struct_2((png_voidp)png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600532 (png_free_ptr)free_fn, (png_voidp)mem_ptr);
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500533#else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500534 png_destroy_struct((png_voidp)png_ptr);
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500535#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500536 return (NULL);
537 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500538
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500539 png_set_write_fn(png_ptr, NULL, NULL, NULL);
Guy Schalnate5a37791996-06-05 15:50:50 -0500540
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500541#ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500542 png_reset_filter_heuristics(png_ptr);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600543#endif
544
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500545 return (png_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500546}
547
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500548
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600549/* Write a few rows of image data. If the image is interlaced,
550 * either you will have to write the 7 sub images, or, if you
551 * have called png_set_interlace_handling(), you will have to
552 * "write" the image seven times.
553 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500554void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600555png_write_rows(png_structp png_ptr, png_bytepp row,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600556 png_uint_32 num_rows)
Guy Schalnat0d580581995-07-20 02:43:20 -0500557{
558 png_uint_32 i; /* row counter */
Guy Schalnat6d764711995-12-19 03:22:19 -0600559 png_bytepp rp; /* row pointer */
Guy Schalnat0d580581995-07-20 02:43:20 -0500560
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500561 png_debug(1, "in png_write_rows");
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600562
563 if (png_ptr == NULL)
564 return;
565
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500566 /* Loop through the rows */
Guy Schalnat0d580581995-07-20 02:43:20 -0500567 for (i = 0, rp = row; i < num_rows; i++, rp++)
568 {
569 png_write_row(png_ptr, *rp);
570 }
571}
572
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600573/* Write the image. You only need to call this function once, even
574 * if you are writing an interlaced image.
575 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500576void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600577png_write_image(png_structp png_ptr, png_bytepp image)
Guy Schalnat0d580581995-07-20 02:43:20 -0500578{
579 png_uint_32 i; /* row index */
580 int pass, num_pass; /* pass variables */
Guy Schalnat6d764711995-12-19 03:22:19 -0600581 png_bytepp rp; /* points to current row */
Guy Schalnat0d580581995-07-20 02:43:20 -0500582
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600583 if (png_ptr == NULL)
584 return;
585
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500586 png_debug(1, "in png_write_image");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500587
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500588#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500589 /* Initialize interlace handling. If image is not interlaced,
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500590 * this will set pass to 1
591 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500592 num_pass = png_set_interlace_handling(png_ptr);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600593#else
594 num_pass = 1;
595#endif
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500596 /* Loop through passes */
Guy Schalnat0d580581995-07-20 02:43:20 -0500597 for (pass = 0; pass < num_pass; pass++)
598 {
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500599 /* Loop through image */
Guy Schalnat0d580581995-07-20 02:43:20 -0500600 for (i = 0, rp = image; i < png_ptr->height; i++, rp++)
601 {
602 png_write_row(png_ptr, *rp);
603 }
604 }
605}
606
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500607/* Called by user to write a row of image data */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500608void PNGAPI
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500609png_write_row(png_structp png_ptr, png_const_bytep row)
Guy Schalnat0d580581995-07-20 02:43:20 -0500610{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600611 if (png_ptr == NULL)
612 return;
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500613
Glenn Randers-Pehrson632a84e2010-03-09 22:28:33 -0600614 png_debug2(1, "in png_write_row (row %u, pass %d)",
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600615 png_ptr->row_number, png_ptr->pass);
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600616
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500617 /* Initialize transformations and other stuff if first time */
Guy Schalnat6d764711995-12-19 03:22:19 -0600618 if (png_ptr->row_number == 0 && png_ptr->pass == 0)
Guy Schalnat0d580581995-07-20 02:43:20 -0500619 {
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500620 /* Make sure we wrote the header info */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500621 if (!(png_ptr->mode & PNG_WROTE_INFO_BEFORE_PLTE))
622 png_error(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600623 "png_write_info was never called before png_write_row");
Glenn Randers-Pehrson5cded0b2001-11-07 07:10:08 -0600624
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500625 /* Check for transforms that have been set but were defined out */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500626#if !defined(PNG_WRITE_INVERT_SUPPORTED) && defined(PNG_READ_INVERT_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500627 if (png_ptr->transformations & PNG_INVERT_MONO)
628 png_warning(png_ptr, "PNG_WRITE_INVERT_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500629#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500630
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500631#if !defined(PNG_WRITE_FILLER_SUPPORTED) && defined(PNG_READ_FILLER_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500632 if (png_ptr->transformations & PNG_FILLER)
633 png_warning(png_ptr, "PNG_WRITE_FILLER_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500634#endif
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600635#if !defined(PNG_WRITE_PACKSWAP_SUPPORTED) && \
636 defined(PNG_READ_PACKSWAP_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500637 if (png_ptr->transformations & PNG_PACKSWAP)
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600638 png_warning(png_ptr,
639 "PNG_WRITE_PACKSWAP_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500640#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500641
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500642#if !defined(PNG_WRITE_PACK_SUPPORTED) && defined(PNG_READ_PACK_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500643 if (png_ptr->transformations & PNG_PACK)
644 png_warning(png_ptr, "PNG_WRITE_PACK_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_SHIFT_SUPPORTED) && defined(PNG_READ_SHIFT_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500648 if (png_ptr->transformations & PNG_SHIFT)
649 png_warning(png_ptr, "PNG_WRITE_SHIFT_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500650#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500651
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500652#if !defined(PNG_WRITE_BGR_SUPPORTED) && defined(PNG_READ_BGR_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500653 if (png_ptr->transformations & PNG_BGR)
654 png_warning(png_ptr, "PNG_WRITE_BGR_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500655#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500656
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500657#if !defined(PNG_WRITE_SWAP_SUPPORTED) && defined(PNG_READ_SWAP_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500658 if (png_ptr->transformations & PNG_SWAP_BYTES)
659 png_warning(png_ptr, "PNG_WRITE_SWAP_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500660#endif
661
Guy Schalnat0d580581995-07-20 02:43:20 -0500662 png_write_start_row(png_ptr);
663 }
664
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500665#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500666 /* If interlaced and not interested in row, return */
Guy Schalnat0d580581995-07-20 02:43:20 -0500667 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
668 {
669 switch (png_ptr->pass)
670 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600671 case 0:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600672 if (png_ptr->row_number & 0x07)
Guy Schalnat0d580581995-07-20 02:43:20 -0500673 {
674 png_write_finish_row(png_ptr);
675 return;
676 }
677 break;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500678
Guy Schalnat0d580581995-07-20 02:43:20 -0500679 case 1:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600680 if ((png_ptr->row_number & 0x07) || png_ptr->width < 5)
Guy Schalnat0d580581995-07-20 02:43:20 -0500681 {
682 png_write_finish_row(png_ptr);
683 return;
684 }
685 break;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500686
Guy Schalnat0d580581995-07-20 02:43:20 -0500687 case 2:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600688 if ((png_ptr->row_number & 0x07) != 4)
Guy Schalnat0d580581995-07-20 02:43:20 -0500689 {
690 png_write_finish_row(png_ptr);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600691 return;
Guy Schalnat0d580581995-07-20 02:43:20 -0500692 }
693 break;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500694
Guy Schalnat0d580581995-07-20 02:43:20 -0500695 case 3:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600696 if ((png_ptr->row_number & 0x03) || png_ptr->width < 3)
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 4:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600704 if ((png_ptr->row_number & 0x03) != 2)
Guy Schalnat0d580581995-07-20 02:43:20 -0500705 {
706 png_write_finish_row(png_ptr);
707 return;
708 }
709 break;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500710
Guy Schalnat0d580581995-07-20 02:43:20 -0500711 case 5:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600712 if ((png_ptr->row_number & 0x01) || png_ptr->width < 2)
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 6:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600720 if (!(png_ptr->row_number & 0x01))
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
727 default: /* error: ignore it */
728 break;
Guy Schalnat0d580581995-07-20 02:43:20 -0500729 }
730 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600731#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500732
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500733 /* Set up row info for transformations */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600734 png_ptr->row_info.color_type = png_ptr->color_type;
Guy Schalnat0d580581995-07-20 02:43:20 -0500735 png_ptr->row_info.width = png_ptr->usr_width;
736 png_ptr->row_info.channels = png_ptr->usr_channels;
737 png_ptr->row_info.bit_depth = png_ptr->usr_bit_depth;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600738 png_ptr->row_info.pixel_depth = (png_byte)(png_ptr->row_info.bit_depth *
739 png_ptr->row_info.channels);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600740
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500741 png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
742 png_ptr->row_info.width);
Guy Schalnat0d580581995-07-20 02:43:20 -0500743
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500744 png_debug1(3, "row_info->color_type = %d", png_ptr->row_info.color_type);
Glenn Randers-Pehrson632a84e2010-03-09 22:28:33 -0600745 png_debug1(3, "row_info->width = %u", png_ptr->row_info.width);
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500746 png_debug1(3, "row_info->channels = %d", png_ptr->row_info.channels);
747 png_debug1(3, "row_info->bit_depth = %d", png_ptr->row_info.bit_depth);
748 png_debug1(3, "row_info->pixel_depth = %d", png_ptr->row_info.pixel_depth);
Glenn Randers-Pehrsonb764c602011-01-14 21:18:37 -0600749 png_debug1(3, "row_info->rowbytes = %lu",
750 (unsigned long)png_ptr->row_info.rowbytes);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500751
752 /* Copy user's row into buffer, leaving room for filter byte. */
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500753 png_memcpy(png_ptr->row_buf + 1, row, png_ptr->row_info.rowbytes);
Guy Schalnat0d580581995-07-20 02:43:20 -0500754
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500755#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500756 /* Handle interlacing */
Guy Schalnat0d580581995-07-20 02:43:20 -0500757 if (png_ptr->interlaced && png_ptr->pass < 6 &&
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500758 (png_ptr->transformations & PNG_INTERLACE))
Guy Schalnat0d580581995-07-20 02:43:20 -0500759 {
760 png_do_write_interlace(&(png_ptr->row_info),
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500761 png_ptr->row_buf + 1, png_ptr->pass);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500762 /* This should always get caught above, but still ... */
Guy Schalnat0d580581995-07-20 02:43:20 -0500763 if (!(png_ptr->row_info.width))
764 {
765 png_write_finish_row(png_ptr);
766 return;
767 }
768 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600769#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500770
John Bowler4a12f4a2011-04-17 18:34:22 -0500771#ifdef PNG_WRITE_TRANSFORMS_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500772 /* Handle other transformations */
Guy Schalnat0d580581995-07-20 02:43:20 -0500773 if (png_ptr->transformations)
774 png_do_write_transformations(png_ptr);
John Bowler4a12f4a2011-04-17 18:34:22 -0500775#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500776
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500777#ifdef PNG_MNG_FEATURES_SUPPORTED
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -0600778 /* Write filter_method 64 (intrapixel differencing) only if
779 * 1. Libpng was compiled with PNG_MNG_FEATURES_SUPPORTED and
780 * 2. Libpng did not write a PNG signature (this filter_method is only
781 * used in PNG datastreams that are embedded in MNG datastreams) and
782 * 3. The application called png_permit_mng_features with a mask that
783 * included PNG_FLAG_MNG_FILTER_64 and
784 * 4. The filter_method is 64 and
785 * 5. The color_type is RGB or RGBA
786 */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500787 if ((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500788 (png_ptr->filter_type == PNG_INTRAPIXEL_DIFFERENCING))
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -0600789 {
790 /* Intrapixel differencing */
791 png_do_write_intrapixel(&(png_ptr->row_info), png_ptr->row_buf + 1);
792 }
793#endif
794
Andreas Dilger47a0c421997-05-16 02:46:07 -0500795 /* Find a filter if necessary, filter the row and write it out. */
Guy Schalnate5a37791996-06-05 15:50:50 -0500796 png_write_find_filter(png_ptr, &(png_ptr->row_info));
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600797
798 if (png_ptr->write_row_fn != NULL)
799 (*(png_ptr->write_row_fn))(png_ptr, png_ptr->row_number, png_ptr->pass);
Guy Schalnat0d580581995-07-20 02:43:20 -0500800}
801
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500802#ifdef PNG_WRITE_FLUSH_SUPPORTED
Guy Schalnat0f716451995-11-28 11:22:13 -0600803/* Set the automatic flush interval or 0 to turn flushing off */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500804void PNGAPI
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600805png_set_flush(png_structp png_ptr, int nrows)
Guy Schalnat0f716451995-11-28 11:22:13 -0600806{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500807 png_debug(1, "in png_set_flush");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500808
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600809 if (png_ptr == NULL)
810 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500811
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600812 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
Guy Schalnat0f716451995-11-28 11:22:13 -0600813}
814
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500815/* Flush the current output buffers now */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500816void PNGAPI
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600817png_write_flush(png_structp png_ptr)
Guy Schalnat0f716451995-11-28 11:22:13 -0600818{
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600819 int wrote_IDAT;
Guy Schalnat0f716451995-11-28 11:22:13 -0600820
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500821 png_debug(1, "in png_write_flush");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500822
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600823 if (png_ptr == NULL)
824 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500825
Guy Schalnate5a37791996-06-05 15:50:50 -0500826 /* We have already written out all of the data */
827 if (png_ptr->row_number >= png_ptr->num_rows)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500828 return;
Guy Schalnat0f716451995-11-28 11:22:13 -0600829
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600830 do
831 {
832 int ret;
Guy Schalnat0f716451995-11-28 11:22:13 -0600833
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500834 /* Compress the data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600835 ret = deflate(&png_ptr->zstream, Z_SYNC_FLUSH);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600836 wrote_IDAT = 0;
Guy Schalnat0f716451995-11-28 11:22:13 -0600837
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500838 /* Check for compression errors */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600839 if (ret != Z_OK)
840 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500841 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600842 png_error(png_ptr, png_ptr->zstream.msg);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500843
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600844 else
845 png_error(png_ptr, "zlib error");
846 }
Guy Schalnat0f716451995-11-28 11:22:13 -0600847
Andreas Dilger47a0c421997-05-16 02:46:07 -0500848 if (!(png_ptr->zstream.avail_out))
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600849 {
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500850 /* Write the IDAT and reset the zlib output buffer */
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600851 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600852 wrote_IDAT = 1;
853 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500854 } while (wrote_IDAT == 1);
Guy Schalnat0f716451995-11-28 11:22:13 -0600855
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600856 /* If there is any data left to be output, write it into a new IDAT */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600857 if (png_ptr->zbuf_size != png_ptr->zstream.avail_out)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600858 {
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500859 /* Write the IDAT and reset the zlib output buffer */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600860 png_write_IDAT(png_ptr, png_ptr->zbuf,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600861 png_ptr->zbuf_size - png_ptr->zstream.avail_out);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600862 }
863 png_ptr->flush_rows = 0;
864 png_flush(png_ptr);
Guy Schalnat0f716451995-11-28 11:22:13 -0600865}
866#endif /* PNG_WRITE_FLUSH_SUPPORTED */
867
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500868/* Free all memory used by the write */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500869void PNGAPI
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600870png_destroy_write_struct(png_structpp png_ptr_ptr, png_infopp info_ptr_ptr)
Guy Schalnate5a37791996-06-05 15:50:50 -0500871{
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600872 png_structp png_ptr = NULL;
873 png_infop info_ptr = NULL;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500874#ifdef PNG_USER_MEM_SUPPORTED
875 png_free_ptr free_fn = NULL;
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500876 png_voidp mem_ptr = NULL;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500877#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600878
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500879 png_debug(1, "in png_destroy_write_struct");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500880
Andreas Dilger47a0c421997-05-16 02:46:07 -0500881 if (png_ptr_ptr != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500882 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600883 png_ptr = *png_ptr_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500884#ifdef PNG_USER_MEM_SUPPORTED
885 free_fn = png_ptr->free_fn;
Glenn Randers-Pehrsonfcbd7872002-04-07 16:35:38 -0500886 mem_ptr = png_ptr->mem_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500887#endif
888 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600889
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500890#ifdef PNG_USER_MEM_SUPPORTED
891 if (png_ptr != NULL)
892 {
893 free_fn = png_ptr->free_fn;
894 mem_ptr = png_ptr->mem_ptr;
895 }
896#endif
897
Andreas Dilger47a0c421997-05-16 02:46:07 -0500898 if (info_ptr_ptr != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600899 info_ptr = *info_ptr_ptr;
900
Andreas Dilger47a0c421997-05-16 02:46:07 -0500901 if (info_ptr != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500902 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500903 if (png_ptr != NULL)
904 {
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500905 png_free_data(png_ptr, info_ptr, PNG_FREE_ALL, -1);
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600906
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600907#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500908 if (png_ptr->num_chunk_list)
909 {
910 png_free(png_ptr, png_ptr->chunk_list);
911 png_ptr->num_chunk_list = 0;
912 }
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500913#endif
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500914 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600915
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500916#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500917 png_destroy_struct_2((png_voidp)info_ptr, (png_free_ptr)free_fn,
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500918 (png_voidp)mem_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500919#else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600920 png_destroy_struct((png_voidp)info_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500921#endif
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500922 *info_ptr_ptr = NULL;
Guy Schalnate5a37791996-06-05 15:50:50 -0500923 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600924
Andreas Dilger47a0c421997-05-16 02:46:07 -0500925 if (png_ptr != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500926 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600927 png_write_destroy(png_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500928#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500929 png_destroy_struct_2((png_voidp)png_ptr, (png_free_ptr)free_fn,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600930 (png_voidp)mem_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500931#else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600932 png_destroy_struct((png_voidp)png_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500933#endif
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500934 *png_ptr_ptr = NULL;
Guy Schalnate5a37791996-06-05 15:50:50 -0500935 }
936}
937
938
Andreas Dilger47a0c421997-05-16 02:46:07 -0500939/* Free any memory used in png_ptr struct (old method) */
Glenn Randers-Pehrsonf64a06f2001-04-11 07:38:00 -0500940void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600941png_write_destroy(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500942{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600943#ifdef PNG_SETJMP_SUPPORTED
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500944 jmp_buf tmp_jmp; /* Save jump buffer */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600945#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500946 png_error_ptr error_fn;
John Bowler88b77cc2011-05-05 06:49:55 -0500947#ifdef PNG_WARNINGS_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -0500948 png_error_ptr warning_fn;
John Bowler88b77cc2011-05-05 06:49:55 -0500949#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500950 png_voidp error_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500951#ifdef PNG_USER_MEM_SUPPORTED
952 png_free_ptr free_fn;
953#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500954
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500955 png_debug(1, "in png_write_destroy");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500956
957 /* Free any memory zlib uses */
John Bowlerc5bef942011-05-05 17:35:39 -0500958 if (png_ptr->zlib_state != PNG_ZLIB_UNINITIALIZED)
959 deflateEnd(&png_ptr->zstream);
Guy Schalnate5a37791996-06-05 15:50:50 -0500960
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500961 /* Free our memory. png_free checks NULL for us. */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600962 png_free(png_ptr, png_ptr->zbuf);
963 png_free(png_ptr, png_ptr->row_buf);
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500964#ifdef PNG_WRITE_FILTER_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600965 png_free(png_ptr, png_ptr->prev_row);
966 png_free(png_ptr, png_ptr->sub_row);
967 png_free(png_ptr, png_ptr->up_row);
968 png_free(png_ptr, png_ptr->avg_row);
969 png_free(png_ptr, png_ptr->paeth_row);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500970#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600971
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500972#ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500973 /* Use this to save a little code space, it doesn't free the filter_costs */
974 png_reset_filter_heuristics(png_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500975 png_free(png_ptr, png_ptr->filter_costs);
976 png_free(png_ptr, png_ptr->inv_filter_costs);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600977#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500978
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600979#ifdef PNG_SETJMP_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500980 /* Reset structure */
John Bowlere6dc85b2011-04-27 14:47:15 -0500981 png_memcpy(tmp_jmp, png_ptr->longjmp_buffer, png_sizeof(jmp_buf));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600982#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500983
984 error_fn = png_ptr->error_fn;
John Bowler88b77cc2011-05-05 06:49:55 -0500985#ifdef PNG_WARNINGS_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -0500986 warning_fn = png_ptr->warning_fn;
John Bowler88b77cc2011-05-05 06:49:55 -0500987#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500988 error_ptr = png_ptr->error_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500989#ifdef PNG_USER_MEM_SUPPORTED
990 free_fn = png_ptr->free_fn;
991#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500992
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500993 png_memset(png_ptr, 0, png_sizeof(png_struct));
Guy Schalnate5a37791996-06-05 15:50:50 -0500994
995 png_ptr->error_fn = error_fn;
John Bowler88b77cc2011-05-05 06:49:55 -0500996#ifdef PNG_WARNINGS_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -0500997 png_ptr->warning_fn = warning_fn;
John Bowler88b77cc2011-05-05 06:49:55 -0500998#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500999 png_ptr->error_ptr = error_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001000#ifdef PNG_USER_MEM_SUPPORTED
1001 png_ptr->free_fn = free_fn;
1002#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001003
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001004#ifdef PNG_SETJMP_SUPPORTED
John Bowlere6dc85b2011-04-27 14:47:15 -05001005 png_memcpy(png_ptr->longjmp_buffer, tmp_jmp, png_sizeof(jmp_buf));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001006#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001007}
Guy Schalnate5a37791996-06-05 15:50:50 -05001008
Andreas Dilger47a0c421997-05-16 02:46:07 -05001009/* Allow the application to select one or more row filters to use. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001010void PNGAPI
Guy Schalnate5a37791996-06-05 15:50:50 -05001011png_set_filter(png_structp png_ptr, int method, int filters)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001012{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001013 png_debug(1, "in png_set_filter");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001014
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001015 if (png_ptr == NULL)
1016 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001017
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001018#ifdef PNG_MNG_FEATURES_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001019 if ((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001020 (method == PNG_INTRAPIXEL_DIFFERENCING))
1021 method = PNG_FILTER_TYPE_BASE;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001022
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -06001023#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001024 if (method == PNG_FILTER_TYPE_BASE)
Guy Schalnate5a37791996-06-05 15:50:50 -05001025 {
1026 switch (filters & (PNG_ALL_FILTERS | 0x07))
1027 {
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001028#ifdef PNG_WRITE_FILTER_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -05001029 case 5:
1030 case 6:
Andreas Dilger47a0c421997-05-16 02:46:07 -05001031 case 7: png_warning(png_ptr, "Unknown row filter for method 0");
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001032#endif /* PNG_WRITE_FILTER_SUPPORTED */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001033 case PNG_FILTER_VALUE_NONE:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001034 png_ptr->do_filter = PNG_FILTER_NONE; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001035
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001036#ifdef PNG_WRITE_FILTER_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001037 case PNG_FILTER_VALUE_SUB:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001038 png_ptr->do_filter = PNG_FILTER_SUB; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001039
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001040 case PNG_FILTER_VALUE_UP:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001041 png_ptr->do_filter = PNG_FILTER_UP; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001042
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001043 case PNG_FILTER_VALUE_AVG:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001044 png_ptr->do_filter = PNG_FILTER_AVG; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001045
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001046 case PNG_FILTER_VALUE_PAETH:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001047 png_ptr->do_filter = PNG_FILTER_PAETH; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001048
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001049 default:
1050 png_ptr->do_filter = (png_byte)filters; break;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001051#else
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001052 default:
1053 png_warning(png_ptr, "Unknown row filter for method 0");
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001054#endif /* PNG_WRITE_FILTER_SUPPORTED */
Guy Schalnate5a37791996-06-05 15:50:50 -05001055 }
1056
Andreas Dilger47a0c421997-05-16 02:46:07 -05001057 /* If we have allocated the row_buf, this means we have already started
1058 * with the image and we should have allocated all of the filter buffers
1059 * that have been selected. If prev_row isn't already allocated, then
1060 * it is too late to start using the filters that need it, since we
1061 * will be missing the data in the previous row. If an application
1062 * wants to start and stop using particular filters during compression,
1063 * it should start out with all of the filters, and then add and
1064 * remove them after the start of compression.
Guy Schalnate5a37791996-06-05 15:50:50 -05001065 */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001066 if (png_ptr->row_buf != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001067 {
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001068#ifdef PNG_WRITE_FILTER_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001069 if ((png_ptr->do_filter & PNG_FILTER_SUB) && png_ptr->sub_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001070 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001071 png_ptr->sub_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001072 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001073 png_ptr->sub_row[0] = PNG_FILTER_VALUE_SUB;
Guy Schalnate5a37791996-06-05 15:50:50 -05001074 }
1075
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001076 if ((png_ptr->do_filter & PNG_FILTER_UP) && png_ptr->up_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001077 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001078 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001079 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001080 png_warning(png_ptr, "Can't add Up filter after starting");
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001081 png_ptr->do_filter = (png_byte)(png_ptr->do_filter &
1082 ~PNG_FILTER_UP);
Guy Schalnate5a37791996-06-05 15:50:50 -05001083 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001084
Guy Schalnate5a37791996-06-05 15:50:50 -05001085 else
1086 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001087 png_ptr->up_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001088 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001089 png_ptr->up_row[0] = PNG_FILTER_VALUE_UP;
Guy Schalnate5a37791996-06-05 15:50:50 -05001090 }
1091 }
1092
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001093 if ((png_ptr->do_filter & PNG_FILTER_AVG) && png_ptr->avg_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001094 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001095 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001096 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001097 png_warning(png_ptr, "Can't add Average filter after starting");
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001098 png_ptr->do_filter = (png_byte)(png_ptr->do_filter &
1099 ~PNG_FILTER_AVG);
Guy Schalnate5a37791996-06-05 15:50:50 -05001100 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001101
Guy Schalnate5a37791996-06-05 15:50:50 -05001102 else
1103 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001104 png_ptr->avg_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001105 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001106 png_ptr->avg_row[0] = PNG_FILTER_VALUE_AVG;
Guy Schalnate5a37791996-06-05 15:50:50 -05001107 }
1108 }
1109
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001110 if ((png_ptr->do_filter & PNG_FILTER_PAETH) &&
Andreas Dilger47a0c421997-05-16 02:46:07 -05001111 png_ptr->paeth_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001112 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001113 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001114 {
1115 png_warning(png_ptr, "Can't add Paeth filter after starting");
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05001116 png_ptr->do_filter &= (png_byte)(~PNG_FILTER_PAETH);
Guy Schalnate5a37791996-06-05 15:50:50 -05001117 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001118
Guy Schalnate5a37791996-06-05 15:50:50 -05001119 else
1120 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001121 png_ptr->paeth_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001122 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001123 png_ptr->paeth_row[0] = PNG_FILTER_VALUE_PAETH;
Guy Schalnate5a37791996-06-05 15:50:50 -05001124 }
1125 }
1126
1127 if (png_ptr->do_filter == PNG_NO_FILTERS)
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001128#endif /* PNG_WRITE_FILTER_SUPPORTED */
Guy Schalnate5a37791996-06-05 15:50:50 -05001129 png_ptr->do_filter = PNG_FILTER_NONE;
1130 }
1131 }
1132 else
Andreas Dilger47a0c421997-05-16 02:46:07 -05001133 png_error(png_ptr, "Unknown custom filter method");
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001134}
1135
Andreas Dilger47a0c421997-05-16 02:46:07 -05001136/* This allows us to influence the way in which libpng chooses the "best"
1137 * filter for the current scanline. While the "minimum-sum-of-absolute-
1138 * differences metric is relatively fast and effective, there is some
1139 * question as to whether it can be improved upon by trying to keep the
1140 * filtered data going to zlib more consistent, hopefully resulting in
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001141 * better compression.
1142 */
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001143#ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED /* GRR 970116 */
Glenn Randers-Pehrson47dc5f72011-03-30 09:59:02 -05001144/* Convenience reset API. */
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001145static void
1146png_reset_filter_heuristics(png_structp png_ptr)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001147{
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001148 /* Clear out any old values in the 'weights' - this must be done because if
1149 * the app calls set_filter_heuristics multiple times with different
1150 * 'num_weights' values we would otherwise potentially have wrong sized
1151 * arrays.
1152 */
1153 png_ptr->num_prev_filters = 0;
1154 png_ptr->heuristic_method = PNG_FILTER_HEURISTIC_UNWEIGHTED;
1155 if (png_ptr->prev_filters != NULL)
1156 {
1157 png_bytep old = png_ptr->prev_filters;
1158 png_ptr->prev_filters = NULL;
1159 png_free(png_ptr, old);
1160 }
1161 if (png_ptr->filter_weights != NULL)
1162 {
1163 png_uint_16p old = png_ptr->filter_weights;
1164 png_ptr->filter_weights = NULL;
1165 png_free(png_ptr, old);
1166 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001167
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001168 if (png_ptr->inv_filter_weights != NULL)
1169 {
1170 png_uint_16p old = png_ptr->inv_filter_weights;
1171 png_ptr->inv_filter_weights = NULL;
1172 png_free(png_ptr, old);
1173 }
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001174
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001175 /* Leave the filter_costs - this array is fixed size. */
1176}
1177
1178static int
1179png_init_filter_heuristics(png_structp png_ptr, int heuristic_method,
1180 int num_weights)
1181{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001182 if (png_ptr == NULL)
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001183 return 0;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001184
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001185 /* Clear out the arrays */
1186 png_reset_filter_heuristics(png_ptr);
1187
1188 /* Check arguments; the 'reset' function makes the correct settings for the
1189 * unweighted case, but we must handle the weight case by initializing the
1190 * arrays for the caller.
1191 */
1192 if (heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001193 {
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001194 int i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001195
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001196 if (num_weights > 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001197 {
1198 png_ptr->prev_filters = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001199 (png_uint_32)(png_sizeof(png_byte) * num_weights));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001200
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001201 /* To make sure that the weighting starts out fairly */
1202 for (i = 0; i < num_weights; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001203 {
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001204 png_ptr->prev_filters[i] = 255;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001205 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001206
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001207 png_ptr->filter_weights = (png_uint_16p)png_malloc(png_ptr,
1208 (png_uint_32)(png_sizeof(png_uint_16) * num_weights));
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001209
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001210 png_ptr->inv_filter_weights = (png_uint_16p)png_malloc(png_ptr,
1211 (png_uint_32)(png_sizeof(png_uint_16) * num_weights));
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001212
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001213 for (i = 0; i < num_weights; i++)
1214 {
1215 png_ptr->inv_filter_weights[i] =
1216 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
1217 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001218
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001219 /* Safe to set this now */
1220 png_ptr->num_prev_filters = (png_byte)num_weights;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001221 }
1222
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001223 /* If, in the future, there are other filter methods, this would
1224 * need to be based on png_ptr->filter.
1225 */
1226 if (png_ptr->filter_costs == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001227 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001228 png_ptr->filter_costs = (png_uint_16p)png_malloc(png_ptr,
1229 (png_uint_32)(png_sizeof(png_uint_16) * PNG_FILTER_VALUE_LAST));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001230
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001231 png_ptr->inv_filter_costs = (png_uint_16p)png_malloc(png_ptr,
1232 (png_uint_32)(png_sizeof(png_uint_16) * PNG_FILTER_VALUE_LAST));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001233 }
1234
Andreas Dilger47a0c421997-05-16 02:46:07 -05001235 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++)
1236 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001237 png_ptr->inv_filter_costs[i] =
1238 png_ptr->filter_costs[i] = PNG_COST_FACTOR;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001239 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001240
1241 /* All the arrays are inited, safe to set this: */
1242 png_ptr->heuristic_method = PNG_FILTER_HEURISTIC_WEIGHTED;
1243
1244 /* Return the 'ok' code. */
1245 return 1;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001246 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001247 else if (heuristic_method == PNG_FILTER_HEURISTIC_DEFAULT ||
1248 heuristic_method == PNG_FILTER_HEURISTIC_UNWEIGHTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001249 {
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001250 return 1;
1251 }
1252 else
1253 {
1254 png_warning(png_ptr, "Unknown filter heuristic method");
1255 return 0;
1256 }
1257}
1258
1259/* Provide floating and fixed point APIs */
1260#ifdef PNG_FLOATING_POINT_SUPPORTED
1261void PNGAPI
1262png_set_filter_heuristics(png_structp png_ptr, int heuristic_method,
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001263 int num_weights, png_const_doublep filter_weights,
1264 png_const_doublep filter_costs)
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001265{
1266 png_debug(1, "in png_set_filter_heuristics");
1267
1268 /* The internal API allocates all the arrays and ensures that the elements of
1269 * those arrays are set to the default value.
1270 */
1271 if (!png_init_filter_heuristics(png_ptr, heuristic_method, num_weights))
1272 return;
1273
1274 /* If using the weighted method copy in the weights. */
1275 if (heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1276 {
1277 int i;
1278 for (i = 0; i < num_weights; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001279 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001280 if (filter_weights[i] <= 0.0)
1281 {
1282 png_ptr->inv_filter_weights[i] =
1283 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
1284 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001285
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001286 else
1287 {
1288 png_ptr->inv_filter_weights[i] =
1289 (png_uint_16)(PNG_WEIGHT_FACTOR*filter_weights[i]+.5);
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001290
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001291 png_ptr->filter_weights[i] =
1292 (png_uint_16)(PNG_WEIGHT_FACTOR/filter_weights[i]+.5);
1293 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001294 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001295
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001296 /* Here is where we set the relative costs of the different filters. We
1297 * should take the desired compression level into account when setting
1298 * the costs, so that Paeth, for instance, has a high relative cost at low
1299 * compression levels, while it has a lower relative cost at higher
1300 * compression settings. The filter types are in order of increasing
1301 * relative cost, so it would be possible to do this with an algorithm.
1302 */
1303 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++) if (filter_costs[i] >= 1.0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001304 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001305 png_ptr->inv_filter_costs[i] =
1306 (png_uint_16)(PNG_COST_FACTOR / filter_costs[i] + .5);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001307
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001308 png_ptr->filter_costs[i] =
1309 (png_uint_16)(PNG_COST_FACTOR * filter_costs[i] + .5);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001310 }
1311 }
1312}
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001313#endif /* FLOATING_POINT */
1314
1315#ifdef PNG_FIXED_POINT_SUPPORTED
1316void PNGAPI
1317png_set_filter_heuristics_fixed(png_structp png_ptr, int heuristic_method,
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001318 int num_weights, png_const_fixed_point_p filter_weights,
1319 png_const_fixed_point_p filter_costs)
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001320{
1321 png_debug(1, "in png_set_filter_heuristics_fixed");
1322
1323 /* The internal API allocates all the arrays and ensures that the elements of
1324 * those arrays are set to the default value.
1325 */
1326 if (!png_init_filter_heuristics(png_ptr, heuristic_method, num_weights))
1327 return;
1328
1329 /* If using the weighted method copy in the weights. */
1330 if (heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1331 {
1332 int i;
1333 for (i = 0; i < num_weights; i++)
1334 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001335 if (filter_weights[i] <= 0)
1336 {
1337 png_ptr->inv_filter_weights[i] =
1338 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
1339 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001340
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001341 else
1342 {
1343 png_ptr->inv_filter_weights[i] = (png_uint_16)
1344 ((PNG_WEIGHT_FACTOR*filter_weights[i]+PNG_FP_HALF)/PNG_FP_1);
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001345
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001346 png_ptr->filter_weights[i] = (png_uint_16)((PNG_WEIGHT_FACTOR*
1347 PNG_FP_1+(filter_weights[i]/2))/filter_weights[i]);
1348 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001349 }
1350
1351 /* Here is where we set the relative costs of the different filters. We
1352 * should take the desired compression level into account when setting
1353 * the costs, so that Paeth, for instance, has a high relative cost at low
1354 * compression levels, while it has a lower relative cost at higher
1355 * compression settings. The filter types are in order of increasing
1356 * relative cost, so it would be possible to do this with an algorithm.
1357 */
1358 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++)
1359 if (filter_costs[i] >= PNG_FP_1)
1360 {
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001361 png_uint_32 tmp;
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001362
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001363 /* Use a 32 bit unsigned temporary here because otherwise the
1364 * intermediate value will be a 32 bit *signed* integer (ANSI rules)
1365 * and this will get the wrong answer on division.
1366 */
1367 tmp = PNG_COST_FACTOR*PNG_FP_1 + (filter_costs[i]/2);
1368 tmp /= filter_costs[i];
1369
1370 png_ptr->inv_filter_costs[i] = (png_uint_16)tmp;
1371
1372 tmp = PNG_COST_FACTOR * filter_costs[i] + PNG_FP_HALF;
1373 tmp /= PNG_FP_1;
1374
1375 png_ptr->filter_costs[i] = (png_uint_16)tmp;
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001376 }
1377 }
1378}
1379#endif /* FIXED_POINT */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001380#endif /* PNG_WRITE_WEIGHTED_FILTER_SUPPORTED */
1381
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001382void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001383png_set_compression_level(png_structp png_ptr, int level)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001384{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001385 png_debug(1, "in png_set_compression_level");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001386
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001387 if (png_ptr == NULL)
1388 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001389
Guy Schalnate5a37791996-06-05 15:50:50 -05001390 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_LEVEL;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001391 png_ptr->zlib_level = level;
1392}
1393
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001394void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001395png_set_compression_mem_level(png_structp png_ptr, int mem_level)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001396{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001397 png_debug(1, "in png_set_compression_mem_level");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001398
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001399 if (png_ptr == NULL)
1400 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001401
Guy Schalnate5a37791996-06-05 15:50:50 -05001402 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001403 png_ptr->zlib_mem_level = mem_level;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001404}
1405
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001406void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001407png_set_compression_strategy(png_structp png_ptr, int strategy)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001408{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001409 png_debug(1, "in png_set_compression_strategy");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001410
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001411 if (png_ptr == NULL)
1412 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001413
Guy Schalnate5a37791996-06-05 15:50:50 -05001414 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_STRATEGY;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001415 png_ptr->zlib_strategy = strategy;
1416}
1417
Glenn Randers-Pehrsonaf855e42011-05-07 10:52:49 -05001418/* If PNG_WRITE_OPTIMIZE_CMF_SUPPORTED is defined, libpng will use a
1419 * smaller value of window_bits if it can do so safely.
1420 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001421void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001422png_set_compression_window_bits(png_structp png_ptr, int window_bits)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001423{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001424 if (png_ptr == NULL)
1425 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001426
Guy Schalnate5a37791996-06-05 15:50:50 -05001427 if (window_bits > 15)
1428 png_warning(png_ptr, "Only compression windows <= 32k supported by PNG");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001429
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001430 else if (window_bits < 8)
1431 png_warning(png_ptr, "Only compression windows >= 256 supported by PNG");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001432
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001433#ifndef WBITS_8_OK
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -05001434 /* Avoid libpng bug with 256-byte windows */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001435 if (window_bits == 8)
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001436 {
1437 png_warning(png_ptr, "Compression window is being reset to 512");
1438 window_bits = 9;
1439 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001440
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001441#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001442 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001443 png_ptr->zlib_window_bits = window_bits;
1444}
1445
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001446void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001447png_set_compression_method(png_structp png_ptr, int method)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001448{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001449 png_debug(1, "in png_set_compression_method");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001450
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001451 if (png_ptr == NULL)
1452 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001453
Guy Schalnate5a37791996-06-05 15:50:50 -05001454 if (method != 8)
1455 png_warning(png_ptr, "Only compression method 8 is supported by PNG");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001456
Guy Schalnate5a37791996-06-05 15:50:50 -05001457 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_METHOD;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001458 png_ptr->zlib_method = method;
Guy Schalnat0d580581995-07-20 02:43:20 -05001459}
1460
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001461/* The following were added to libpng-1.5.4 */
John Bowlerb2bee332011-06-10 23:24:58 -05001462#ifdef PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001463void PNGAPI
1464png_set_text_compression_level(png_structp png_ptr, int level)
1465{
1466 png_debug(1, "in png_set_text_compression_level");
1467
1468 if (png_ptr == NULL)
1469 return;
1470
1471 png_ptr->flags |= PNG_FLAG_ZTXT_CUSTOM_LEVEL;
1472 png_ptr->zlib_text_level = level;
1473}
1474
1475void PNGAPI
1476png_set_text_compression_mem_level(png_structp png_ptr, int mem_level)
1477{
1478 png_debug(1, "in png_set_text_compression_mem_level");
1479
1480 if (png_ptr == NULL)
1481 return;
1482
1483 png_ptr->flags |= PNG_FLAG_ZTXT_CUSTOM_MEM_LEVEL;
1484 png_ptr->zlib_text_mem_level = mem_level;
1485}
1486
1487void PNGAPI
1488png_set_text_compression_strategy(png_structp png_ptr, int strategy)
1489{
1490 png_debug(1, "in png_set_text_compression_strategy");
1491
1492 if (png_ptr == NULL)
1493 return;
1494
1495 png_ptr->flags |= PNG_FLAG_ZTXT_CUSTOM_STRATEGY;
1496 png_ptr->zlib_text_strategy = strategy;
1497}
1498
Glenn Randers-Pehrsonaf855e42011-05-07 10:52:49 -05001499/* If PNG_WRITE_OPTIMIZE_CMF_SUPPORTED is defined, libpng will use a
1500 * smaller value of window_bits if it can do so safely.
1501 */
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001502void PNGAPI
1503png_set_text_compression_window_bits(png_structp png_ptr, int window_bits)
1504{
1505 if (png_ptr == NULL)
1506 return;
1507
1508 if (window_bits > 15)
1509 png_warning(png_ptr, "Only compression windows <= 32k supported by PNG");
1510
1511 else if (window_bits < 8)
1512 png_warning(png_ptr, "Only compression windows >= 256 supported by PNG");
1513
1514#ifndef WBITS_8_OK
1515 /* Avoid libpng bug with 256-byte windows */
1516 if (window_bits == 8)
1517 {
1518 png_warning(png_ptr, "Text compression window is being reset to 512");
1519 window_bits = 9;
1520 }
1521
1522#endif
1523 png_ptr->flags |= PNG_FLAG_ZTXT_CUSTOM_WINDOW_BITS;
1524 png_ptr->zlib_text_window_bits = window_bits;
1525}
1526
1527void PNGAPI
1528png_set_text_compression_method(png_structp png_ptr, int method)
1529{
1530 png_debug(1, "in png_set_text_compression_method");
1531
1532 if (png_ptr == NULL)
1533 return;
1534
1535 if (method != 8)
1536 png_warning(png_ptr, "Only compression method 8 is supported by PNG");
1537
1538 png_ptr->flags |= PNG_FLAG_ZTXT_CUSTOM_METHOD;
1539 png_ptr->zlib_text_method = method;
1540}
John Bowlerb2bee332011-06-10 23:24:58 -05001541#endif /* PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED */
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001542/* end of API added to libpng-1.5.4 */
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -05001543
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001544void PNGAPI
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001545png_set_write_status_fn(png_structp png_ptr, png_write_status_ptr write_row_fn)
1546{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001547 if (png_ptr == NULL)
1548 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001549
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001550 png_ptr->write_row_fn = write_row_fn;
1551}
1552
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001553#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001554void PNGAPI
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001555png_set_write_user_transform_fn(png_structp png_ptr, png_user_transform_ptr
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001556 write_user_transform_fn)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001557{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001558 png_debug(1, "in png_set_write_user_transform_fn");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001559
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001560 if (png_ptr == NULL)
1561 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001562
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001563 png_ptr->transformations |= PNG_USER_TRANSFORM;
1564 png_ptr->write_user_transform_fn = write_user_transform_fn;
1565}
1566#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001567
1568
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001569#ifdef PNG_INFO_IMAGE_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001570void PNGAPI
1571png_write_png(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001572 int transforms, voidp params)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001573{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001574 if (png_ptr == NULL || info_ptr == NULL)
1575 return;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001576
1577 /* Write the file header information. */
1578 png_write_info(png_ptr, info_ptr);
1579
1580 /* ------ these transformations don't touch the info structure ------- */
1581
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001582#ifdef PNG_WRITE_INVERT_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001583 /* Invert monochrome pixels */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001584 if (transforms & PNG_TRANSFORM_INVERT_MONO)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001585 png_set_invert_mono(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001586#endif
1587
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001588#ifdef PNG_WRITE_SHIFT_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001589 /* Shift the pixels up to a legal bit depth and fill in
1590 * as appropriate to correctly scale the image.
1591 */
1592 if ((transforms & PNG_TRANSFORM_SHIFT)
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001593 && (info_ptr->valid & PNG_INFO_sBIT))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001594 png_set_shift(png_ptr, &info_ptr->sig_bit);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001595#endif
1596
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001597#ifdef PNG_WRITE_PACK_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001598 /* Pack pixels into bytes */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001599 if (transforms & PNG_TRANSFORM_PACKING)
1600 png_set_packing(png_ptr);
1601#endif
1602
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001603#ifdef PNG_WRITE_SWAP_ALPHA_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001604 /* Swap location of alpha bytes from ARGB to RGBA */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001605 if (transforms & PNG_TRANSFORM_SWAP_ALPHA)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001606 png_set_swap_alpha(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001607#endif
1608
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001609#ifdef PNG_WRITE_FILLER_SUPPORTED
Glenn Randers-Pehrson47539062011-05-05 07:32:30 -05001610 /* Pack XRGB/RGBX/ARGB/RGBA into RGB (4 channels -> 3 channels) */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001611 if (transforms & PNG_TRANSFORM_STRIP_FILLER_AFTER)
Glenn Randers-Pehrson1eb14e92008-12-10 07:14:45 -06001612 png_set_filler(png_ptr, 0, PNG_FILLER_AFTER);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001613
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001614 else if (transforms & PNG_TRANSFORM_STRIP_FILLER_BEFORE)
Glenn Randers-Pehrson1eb14e92008-12-10 07:14:45 -06001615 png_set_filler(png_ptr, 0, PNG_FILLER_BEFORE);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001616#endif
1617
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001618#ifdef PNG_WRITE_BGR_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001619 /* Flip BGR pixels to RGB */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001620 if (transforms & PNG_TRANSFORM_BGR)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001621 png_set_bgr(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001622#endif
1623
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001624#ifdef PNG_WRITE_SWAP_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001625 /* Swap bytes of 16-bit files to most significant byte first */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001626 if (transforms & PNG_TRANSFORM_SWAP_ENDIAN)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001627 png_set_swap(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001628#endif
1629
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001630#ifdef PNG_WRITE_PACKSWAP_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001631 /* Swap bits of 1, 2, 4 bit packed pixel formats */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001632 if (transforms & PNG_TRANSFORM_PACKSWAP)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001633 png_set_packswap(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001634#endif
1635
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001636#ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED
Glenn Randers-Pehrson6878eb62009-06-29 16:45:53 -05001637 /* Invert the alpha channel from opacity to transparency */
1638 if (transforms & PNG_TRANSFORM_INVERT_ALPHA)
1639 png_set_invert_alpha(png_ptr);
1640#endif
1641
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001642 /* ----------------------- end of transformations ------------------- */
1643
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001644 /* Write the bits */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001645 if (info_ptr->valid & PNG_INFO_IDAT)
1646 png_write_image(png_ptr, info_ptr->row_pointers);
1647
1648 /* It is REQUIRED to call this to finish writing the rest of the file */
1649 png_write_end(png_ptr, info_ptr);
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001650
Glenn Randers-Pehrsond546f432010-12-04 20:41:36 -06001651 PNG_UNUSED(transforms) /* Quiet compiler warnings */
1652 PNG_UNUSED(params)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001653}
1654#endif
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001655#endif /* PNG_WRITE_SUPPORTED */