blob: 0f1cd4677b6b67cc5c35ec8162843a7c51c3bc0a [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-Pehrson4009a762010-07-31 06:34:36 -05004 * Last changed in libpng 1.5.0 [July 31, 2010]
Glenn Randers-Pehrsone69b55d2010-01-01 10:29:06 -06005 * Copyright (c) 1998-2010 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-Pehrson45624d62010-03-03 11:40:43 -0600102 up->location && !(up->location & PNG_HAVE_PLTE) &&
103 !(up->location & PNG_HAVE_IDAT) &&
104 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
105 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600106 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500107 if (up->size == 0)
108 png_warning(png_ptr, "Writing zero-length unknown chunk");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500109
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600110 png_write_chunk(png_ptr, up->name, up->data, up->size);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600111 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500112 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600113 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500114#endif
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600115 png_ptr->mode |= PNG_WROTE_INFO_BEFORE_PLTE;
116 }
117}
118
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500119void PNGAPI
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600120png_write_info(png_structp png_ptr, png_infop info_ptr)
121{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600122#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600123 int i;
124#endif
125
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500126 png_debug(1, "in png_write_info");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600127
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600128 if (png_ptr == NULL || info_ptr == NULL)
129 return;
130
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600131 png_write_info_before_PLTE(png_ptr, info_ptr);
132
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600133 if (info_ptr->valid & PNG_INFO_PLTE)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500134 png_write_PLTE(png_ptr, info_ptr->palette,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600135 (png_uint_32)info_ptr->num_palette);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500136
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600137 else if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600138 png_error(png_ptr, "Valid palette required for paletted images");
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600139
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500140#ifdef PNG_WRITE_tRNS_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600141 if (info_ptr->valid & PNG_INFO_tRNS)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500142 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500143#ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500144 /* Invert the alpha channel (in tRNS) */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500145 if ((png_ptr->transformations & PNG_INVERT_ALPHA) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600146 info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500147 {
148 int j;
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -0500149 for (j = 0; j<(int)info_ptr->num_trans; j++)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500150 info_ptr->trans_alpha[j] =
Glenn Randers-Pehrson29034c52010-07-29 17:58:49 -0500151 (png_byte)(255 - info_ptr->trans_alpha[j]);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500152 }
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600153#endif
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500154 png_write_tRNS(png_ptr, info_ptr->trans_alpha, &(info_ptr->trans_color),
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600155 info_ptr->num_trans, info_ptr->color_type);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500156 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500157#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500158#ifdef PNG_WRITE_bKGD_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600159 if (info_ptr->valid & PNG_INFO_bKGD)
160 png_write_bKGD(png_ptr, &(info_ptr->background), info_ptr->color_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500161#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500162
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500163#ifdef PNG_WRITE_hIST_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600164 if (info_ptr->valid & PNG_INFO_hIST)
165 png_write_hIST(png_ptr, info_ptr->hist, info_ptr->num_palette);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500166#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500167
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500168#ifdef PNG_WRITE_oFFs_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600169 if (info_ptr->valid & PNG_INFO_oFFs)
170 png_write_oFFs(png_ptr, info_ptr->x_offset, info_ptr->y_offset,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600171 info_ptr->offset_unit_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500172#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500173
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500174#ifdef PNG_WRITE_pCAL_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500175 if (info_ptr->valid & PNG_INFO_pCAL)
176 png_write_pCAL(png_ptr, info_ptr->pcal_purpose, info_ptr->pcal_X0,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600177 info_ptr->pcal_X1, info_ptr->pcal_type, info_ptr->pcal_nparams,
178 info_ptr->pcal_units, info_ptr->pcal_params);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500179#endif
Glenn Randers-Pehrson59020592009-05-18 10:52:12 -0500180
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500181#ifdef PNG_WRITE_sCAL_SUPPORTED
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500182 if (info_ptr->valid & PNG_INFO_sCAL)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600183 png_write_sCAL_s(png_ptr, (int)info_ptr->scal_unit,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600184 info_ptr->scal_s_width, info_ptr->scal_s_height);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500185#endif /* sCAL */
186
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500187#ifdef PNG_WRITE_pHYs_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500188 if (info_ptr->valid & PNG_INFO_pHYs)
189 png_write_pHYs(png_ptr, info_ptr->x_pixels_per_unit,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600190 info_ptr->y_pixels_per_unit, info_ptr->phys_unit_type);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500191#endif /* pHYs */
192
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500193#ifdef PNG_WRITE_tIME_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600194 if (info_ptr->valid & PNG_INFO_tIME)
Guy Schalnate5a37791996-06-05 15:50:50 -0500195 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600196 png_write_tIME(png_ptr, &(info_ptr->mod_time));
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600197 png_ptr->mode |= PNG_WROTE_tIME;
Guy Schalnate5a37791996-06-05 15:50:50 -0500198 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500199#endif /* tIME */
200
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500201#ifdef PNG_WRITE_sPLT_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600202 if (info_ptr->valid & PNG_INFO_sPLT)
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600203 for (i = 0; i < (int)info_ptr->splt_palettes_num; i++)
204 png_write_sPLT(png_ptr, info_ptr->splt_palettes + i);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500205#endif /* sPLT */
206
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500207#ifdef PNG_WRITE_TEXT_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -0500208 /* Check to see if we need to write text chunks */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500209 for (i = 0; i < info_ptr->num_text; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500210 {
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500211 png_debug2(2, "Writing header text chunk %d, type %d", i,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600212 info_ptr->text[i].compression);
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500213 /* An internationalized chunk? */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600214 if (info_ptr->text[i].compression > 0)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600215 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500216#ifdef PNG_WRITE_iTXt_SUPPORTED
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600217 /* Write international chunk */
218 png_write_iTXt(png_ptr,
219 info_ptr->text[i].compression,
220 info_ptr->text[i].key,
221 info_ptr->text[i].lang,
222 info_ptr->text[i].lang_key,
223 info_ptr->text[i].text);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600224#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600225 png_warning(png_ptr, "Unable to write international text");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600226#endif
227 /* Mark this chunk as written */
228 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
229 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500230
Andreas Dilger47a0c421997-05-16 02:46:07 -0500231 /* If we want a compressed text chunk */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600232 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_zTXt)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500233 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500234#ifdef PNG_WRITE_zTXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500235 /* Write compressed chunk */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500236 png_write_zTXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600237 info_ptr->text[i].text, 0,
238 info_ptr->text[i].compression);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500239#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600240 png_warning(png_ptr, "Unable to write compressed text");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500241#endif
242 /* Mark this chunk as written */
243 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
244 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500245
Andreas Dilger47a0c421997-05-16 02:46:07 -0500246 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
247 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500248#ifdef PNG_WRITE_tEXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500249 /* Write uncompressed chunk */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500250 png_write_tEXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600251 info_ptr->text[i].text,
252 0);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500253 /* Mark this chunk as written */
254 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500255#else
256 /* Can't get here */
257 png_warning(png_ptr, "Unable to write uncompressed text");
258#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500259 }
260 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500261#endif /* tEXt */
262
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500263#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600264 if (info_ptr->unknown_chunks_num)
265 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500266 png_unknown_chunk *up;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600267
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500268 png_debug(5, "writing extra chunks");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600269
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500270 for (up = info_ptr->unknown_chunks;
271 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
272 up++)
273 {
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -0500274 int keep = png_handle_as_unknown(png_ptr, up->name);
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500275 if (keep != PNG_HANDLE_CHUNK_NEVER &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600276 up->location && (up->location & PNG_HAVE_PLTE) &&
277 !(up->location & PNG_HAVE_IDAT) &&
278 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
279 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600280 {
281 png_write_chunk(png_ptr, up->name, up->data, up->size);
282 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500283 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600284 }
285#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500286}
Guy Schalnat0d580581995-07-20 02:43:20 -0500287
Andreas Dilger47a0c421997-05-16 02:46:07 -0500288/* Writes the end of the PNG file. If you don't want to write comments or
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600289 * time information, you can pass NULL for info. If you already wrote these
290 * in png_write_info(), do not write them again here. If you have long
291 * comments, I suggest writing them here, and compressing them.
292 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500293void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500294png_write_end(png_structp png_ptr, png_infop info_ptr)
295{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500296 png_debug(1, "in png_write_end");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500297
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600298 if (png_ptr == NULL)
299 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500300
Andreas Dilger47a0c421997-05-16 02:46:07 -0500301 if (!(png_ptr->mode & PNG_HAVE_IDAT))
302 png_error(png_ptr, "No IDATs written into file");
303
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500304 /* See if user wants us to write information chunks */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500305 if (info_ptr != NULL)
306 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500307#ifdef PNG_WRITE_TEXT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500308 int i; /* local index variable */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600309#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500310#ifdef PNG_WRITE_tIME_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500311 /* Check to see if user has supplied a time chunk */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600312 if ((info_ptr->valid & PNG_INFO_tIME) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600313 !(png_ptr->mode & PNG_WROTE_tIME))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500314 png_write_tIME(png_ptr, &(info_ptr->mod_time));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500315
Andreas Dilger47a0c421997-05-16 02:46:07 -0500316#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500317#ifdef PNG_WRITE_TEXT_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500318 /* Loop through comment chunks */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600319 for (i = 0; i < info_ptr->num_text; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500320 {
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500321 png_debug2(2, "Writing trailer text chunk %d, type %d", i,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500322 info_ptr->text[i].compression);
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500323 /* An internationalized chunk? */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600324 if (info_ptr->text[i].compression > 0)
325 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500326#ifdef PNG_WRITE_iTXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500327 /* Write international chunk */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500328 png_write_iTXt(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600329 info_ptr->text[i].compression,
330 info_ptr->text[i].key,
331 info_ptr->text[i].lang,
332 info_ptr->text[i].lang_key,
333 info_ptr->text[i].text);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600334#else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500335 png_warning(png_ptr, "Unable to write international text");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600336#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500337 /* Mark this chunk as written */
338 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600339 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500340
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600341 else if (info_ptr->text[i].compression >= PNG_TEXT_COMPRESSION_zTXt)
Guy Schalnat0d580581995-07-20 02:43:20 -0500342 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500343#ifdef PNG_WRITE_zTXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500344 /* Write compressed chunk */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600345 png_write_zTXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600346 info_ptr->text[i].text, 0,
347 info_ptr->text[i].compression);
Guy Schalnate5a37791996-06-05 15:50:50 -0500348#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600349 png_warning(png_ptr, "Unable to write compressed text");
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500350#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500351 /* Mark this chunk as written */
352 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500353 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500354
Andreas Dilger47a0c421997-05-16 02:46:07 -0500355 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
Guy Schalnat0d580581995-07-20 02:43:20 -0500356 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500357#ifdef PNG_WRITE_tEXt_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500358 /* Write uncompressed chunk */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600359 png_write_tEXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600360 info_ptr->text[i].text, 0);
Guy Schalnate5a37791996-06-05 15:50:50 -0500361#else
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600362 png_warning(png_ptr, "Unable to write uncompressed text");
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500363#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500364
Andreas Dilger47a0c421997-05-16 02:46:07 -0500365 /* Mark this chunk as written */
366 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500367 }
368 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600369#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500370#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600371 if (info_ptr->unknown_chunks_num)
372 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500373 png_unknown_chunk *up;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600374
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500375 png_debug(5, "writing extra chunks");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600376
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500377 for (up = info_ptr->unknown_chunks;
378 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
379 up++)
380 {
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -0500381 int keep = png_handle_as_unknown(png_ptr, up->name);
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500382 if (keep != PNG_HANDLE_CHUNK_NEVER &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600383 up->location && (up->location & PNG_AFTER_IDAT) &&
384 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
385 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600386 {
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600387 png_write_chunk(png_ptr, up->name, up->data, up->size);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600388 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500389 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600390 }
391#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500392 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500393
394 png_ptr->mode |= PNG_AFTER_IDAT;
395
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500396 /* Write end of PNG file */
Guy Schalnat0d580581995-07-20 02:43:20 -0500397 png_write_IEND(png_ptr);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500398 /* This flush, added in libpng-1.0.8, removed from libpng-1.0.9beta03,
399 * and restored again in libpng-1.2.30, may cause some applications that
400 * do not set png_ptr->output_flush_fn to crash. If your application
Glenn Randers-Pehrsonedcd6e12009-11-20 20:28:29 -0600401 * experiences a problem, please try building libpng with
402 * PNG_WRITE_FLUSH_AFTER_IEND_SUPPORTED defined, and report the event to
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500403 * png-mng-implement at lists.sf.net .
404 */
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500405#ifdef PNG_WRITE_FLUSH_SUPPORTED
Glenn Randers-Pehrsonedcd6e12009-11-20 20:28:29 -0600406# ifdef PNG_WRITE_FLUSH_AFTER_IEND_SUPPORTED
Glenn Randers-Pehrson32fc5ce2000-07-24 06:34:14 -0500407 png_flush(png_ptr);
Glenn Randers-Pehrsonedcd6e12009-11-20 20:28:29 -0600408# endif
Glenn Randers-Pehrsondbed41f2008-08-19 18:20:52 -0500409#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500410}
411
Glenn Randers-Pehrson65d235a2009-11-02 11:32:30 -0600412#ifdef PNG_CONVERT_tIME_SUPPORTED
Glenn Randers-Pehrson99106de2009-11-01 16:26:14 -0600413/* "tm" structure is not supported on WindowsCE */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500414void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600415png_convert_from_struct_tm(png_timep ptime, struct tm FAR * ttime)
Guy Schalnat0d580581995-07-20 02:43:20 -0500416{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500417 png_debug(1, "in png_convert_from_struct_tm");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500418
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600419 ptime->year = (png_uint_16)(1900 + ttime->tm_year);
420 ptime->month = (png_byte)(ttime->tm_mon + 1);
421 ptime->day = (png_byte)ttime->tm_mday;
422 ptime->hour = (png_byte)ttime->tm_hour;
423 ptime->minute = (png_byte)ttime->tm_min;
424 ptime->second = (png_byte)ttime->tm_sec;
Guy Schalnat0d580581995-07-20 02:43:20 -0500425}
426
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500427void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600428png_convert_from_time_t(png_timep ptime, time_t ttime)
Guy Schalnat0d580581995-07-20 02:43:20 -0500429{
430 struct tm *tbuf;
431
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500432 png_debug(1, "in png_convert_from_time_t");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500433
Guy Schalnat0d580581995-07-20 02:43:20 -0500434 tbuf = gmtime(&ttime);
435 png_convert_from_struct_tm(ptime, tbuf);
436}
Guy Schalnat6d764711995-12-19 03:22:19 -0600437#endif
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500438
Andreas Dilger47a0c421997-05-16 02:46:07 -0500439/* Initialize png_ptr structure, and allocate any memory needed */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500440png_structp PNGAPI
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -0500441png_create_write_struct(png_const_charp user_png_ver, png_voidp error_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600442 png_error_ptr error_fn, png_error_ptr warn_fn)
Guy Schalnat0d580581995-07-20 02:43:20 -0500443{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500444#ifdef PNG_USER_MEM_SUPPORTED
445 return (png_create_write_struct_2(user_png_ver, error_ptr, error_fn,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600446 warn_fn, NULL, NULL, NULL));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500447}
448
449/* Alternate initialize png_ptr structure, and allocate any memory needed */
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500450static void png_reset_filter_heuristics(png_structp png_ptr); /* forward decl */
451
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500452png_structp PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500453png_create_write_struct_2(png_const_charp user_png_ver, png_voidp error_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600454 png_error_ptr error_fn, png_error_ptr warn_fn, png_voidp mem_ptr,
455 png_malloc_ptr malloc_fn, png_free_ptr free_fn)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500456{
457#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson62ca98e2009-12-20 15:14:57 -0600458 volatile int png_cleanup_needed = 0;
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -0600459#ifdef PNG_SETJMP_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500460 volatile
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -0600461#endif
Glenn Randers-Pehrsonf0a8fe02009-04-14 08:28:15 -0500462 png_structp png_ptr;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600463#ifdef PNG_SETJMP_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600464#ifdef USE_FAR_KEYWORD
Glenn Randers-Pehrson95ca51b2010-02-19 14:09:09 -0600465 jmp_buf png_jmpbuf;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600466#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600467#endif
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500468 int i;
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500469
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500470 png_debug(1, "in png_create_write_struct");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500471
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500472#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600473 png_ptr = (png_structp)png_create_struct_2(PNG_STRUCT_PNG,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600474 (png_malloc_ptr)malloc_fn, (png_voidp)mem_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500475#else
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600476 png_ptr = (png_structp)png_create_struct(PNG_STRUCT_PNG);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500477#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600478 if (png_ptr == NULL)
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500479 return (NULL);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600480
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500481 /* Added at libpng-1.2.6 */
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500482#ifdef PNG_SET_USER_LIMITS_SUPPORTED
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -0500483 png_ptr->user_width_max = PNG_USER_WIDTH_MAX;
484 png_ptr->user_height_max = PNG_USER_HEIGHT_MAX;
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500485#endif
486
Glenn Randers-Pehrsonf0a8fe02009-04-14 08:28:15 -0500487#ifdef PNG_SETJMP_SUPPORTED
488/* Applications that neglect to set up their own setjmp() and then
489 encounter a png_error() will longjmp here. Since the jmpbuf is
490 then meaningless we abort instead of returning. */
491#ifdef USE_FAR_KEYWORD
Glenn Randers-Pehrson95ca51b2010-02-19 14:09:09 -0600492 if (setjmp(png_jmpbuf))
Glenn Randers-Pehrsonf0a8fe02009-04-14 08:28:15 -0500493#else
Glenn Randers-Pehrsonf4ea2242009-11-20 21:38:24 -0600494 if (setjmp(png_jmpbuf(png_ptr))) /* sets longjmp to match setjmp */
495#endif
496#ifdef USE_FAR_KEYWORD
Glenn Randers-Pehrson95ca51b2010-02-19 14:09:09 -0600497 png_memcpy(png_jmpbuf(png_ptr), png_jmpbuf, png_sizeof(jmp_buf));
Glenn Randers-Pehrsonf0a8fe02009-04-14 08:28:15 -0500498#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500499 PNG_ABORT();
Glenn Randers-Pehrsonf0a8fe02009-04-14 08:28:15 -0500500#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600501
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500502#ifdef PNG_USER_MEM_SUPPORTED
503 png_set_mem_fn(png_ptr, mem_ptr, malloc_fn, free_fn);
504#endif /* PNG_USER_MEM_SUPPORTED */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600505 png_set_error_fn(png_ptr, error_ptr, error_fn, warn_fn);
Guy Schalnate5a37791996-06-05 15:50:50 -0500506
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500507 if (user_png_ver)
Guy Schalnate5a37791996-06-05 15:50:50 -0500508 {
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -0500509 i = 0;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500510 do
511 {
512 if (user_png_ver[i] != png_libpng_ver[i])
513 png_ptr->flags |= PNG_FLAG_LIBRARY_MISMATCH;
514 } while (png_libpng_ver[i++]);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500515 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500516
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500517 if (png_ptr->flags & PNG_FLAG_LIBRARY_MISMATCH)
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -0500518 {
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500519 /* Libpng 0.90 and later are binary incompatible with libpng 0.89, so
520 * we must recompile any applications that use any older library version.
521 * For versions after libpng 1.0, we will be compatible, so we need
522 * only check the first digit.
523 */
524 if (user_png_ver == NULL || user_png_ver[0] != png_libpng_ver[0] ||
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500525 (user_png_ver[0] == '1' && user_png_ver[2] != png_libpng_ver[2]) ||
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500526 (user_png_ver[0] == '0' && user_png_ver[2] < '9'))
527 {
Glenn Randers-Pehrson6a9e4802010-02-19 09:47:43 -0600528#ifdef PNG_CONSOLE_IO_SUPPORTED
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500529 char msg[80];
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500530
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500531 if (user_png_ver)
532 {
Glenn Randers-Pehrson92a3ef42010-03-31 21:50:21 -0500533 png_snprintf2(msg, 80,
534 "Application built with libpng-%.20s"
535 " but running with %.20s",
536 user_png_ver,
537 png_libpng_ver);
538 png_warning(png_ptr, msg);
539 }
540#else
541 png_warning(png_ptr,
542 "Incompatible libpng version in application and library");
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500543#endif
544#ifdef PNG_ERROR_NUMBERS_SUPPORTED
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -0500545 png_ptr->flags = 0;
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500546#endif
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500547 png_cleanup_needed = 1;
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500548 }
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500549 }
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -0500550
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500551 /* Initialize zbuf - compression buffer */
Guy Schalnat0d580581995-07-20 02:43:20 -0500552 png_ptr->zbuf_size = PNG_ZBUF_SIZE;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500553
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500554 if (!png_cleanup_needed)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500555 {
556 png_ptr->zbuf = (png_bytep)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600557 png_ptr->zbuf_size);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500558 if (png_ptr->zbuf == NULL)
559 png_cleanup_needed = 1;
560 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500561
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500562 if (png_cleanup_needed)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500563 {
564 /* Clean up PNG structure and deallocate any memory. */
565 png_free(png_ptr, png_ptr->zbuf);
566 png_ptr->zbuf = NULL;
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500567#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500568 png_destroy_struct_2((png_voidp)png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600569 (png_free_ptr)free_fn, (png_voidp)mem_ptr);
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500570#else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500571 png_destroy_struct((png_voidp)png_ptr);
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -0500572#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500573 return (NULL);
574 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500575
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500576 png_set_write_fn(png_ptr, NULL, NULL, NULL);
Guy Schalnate5a37791996-06-05 15:50:50 -0500577
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500578#ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500579 png_reset_filter_heuristics(png_ptr);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600580#endif
581
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500582 return (png_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500583}
584
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500585
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600586/* Write a few rows of image data. If the image is interlaced,
587 * either you will have to write the 7 sub images, or, if you
588 * have called png_set_interlace_handling(), you will have to
589 * "write" the image seven times.
590 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500591void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600592png_write_rows(png_structp png_ptr, png_bytepp row,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600593 png_uint_32 num_rows)
Guy Schalnat0d580581995-07-20 02:43:20 -0500594{
595 png_uint_32 i; /* row counter */
Guy Schalnat6d764711995-12-19 03:22:19 -0600596 png_bytepp rp; /* row pointer */
Guy Schalnat0d580581995-07-20 02:43:20 -0500597
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500598 png_debug(1, "in png_write_rows");
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600599
600 if (png_ptr == NULL)
601 return;
602
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500603 /* Loop through the rows */
Guy Schalnat0d580581995-07-20 02:43:20 -0500604 for (i = 0, rp = row; i < num_rows; i++, rp++)
605 {
606 png_write_row(png_ptr, *rp);
607 }
608}
609
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600610/* Write the image. You only need to call this function once, even
611 * if you are writing an interlaced image.
612 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500613void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600614png_write_image(png_structp png_ptr, png_bytepp image)
Guy Schalnat0d580581995-07-20 02:43:20 -0500615{
616 png_uint_32 i; /* row index */
617 int pass, num_pass; /* pass variables */
Guy Schalnat6d764711995-12-19 03:22:19 -0600618 png_bytepp rp; /* points to current row */
Guy Schalnat0d580581995-07-20 02:43:20 -0500619
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600620 if (png_ptr == NULL)
621 return;
622
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500623 png_debug(1, "in png_write_image");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500624
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500625#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500626 /* Initialize interlace handling. If image is not interlaced,
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500627 * this will set pass to 1
628 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500629 num_pass = png_set_interlace_handling(png_ptr);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600630#else
631 num_pass = 1;
632#endif
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500633 /* Loop through passes */
Guy Schalnat0d580581995-07-20 02:43:20 -0500634 for (pass = 0; pass < num_pass; pass++)
635 {
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500636 /* Loop through image */
Guy Schalnat0d580581995-07-20 02:43:20 -0500637 for (i = 0, rp = image; i < png_ptr->height; i++, rp++)
638 {
639 png_write_row(png_ptr, *rp);
640 }
641 }
642}
643
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500644/* Called by user to write a row of image data */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500645void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600646png_write_row(png_structp png_ptr, png_bytep row)
Guy Schalnat0d580581995-07-20 02:43:20 -0500647{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600648 if (png_ptr == NULL)
649 return;
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500650
Glenn Randers-Pehrson632a84e2010-03-09 22:28:33 -0600651 png_debug2(1, "in png_write_row (row %u, pass %d)",
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600652 png_ptr->row_number, png_ptr->pass);
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600653
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500654 /* Initialize transformations and other stuff if first time */
Guy Schalnat6d764711995-12-19 03:22:19 -0600655 if (png_ptr->row_number == 0 && png_ptr->pass == 0)
Guy Schalnat0d580581995-07-20 02:43:20 -0500656 {
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500657 /* Make sure we wrote the header info */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500658 if (!(png_ptr->mode & PNG_WROTE_INFO_BEFORE_PLTE))
659 png_error(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600660 "png_write_info was never called before png_write_row");
Glenn Randers-Pehrson5cded0b2001-11-07 07:10:08 -0600661
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500662 /* Check for transforms that have been set but were defined out */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500663#if !defined(PNG_WRITE_INVERT_SUPPORTED) && defined(PNG_READ_INVERT_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500664 if (png_ptr->transformations & PNG_INVERT_MONO)
665 png_warning(png_ptr, "PNG_WRITE_INVERT_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500666#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500667
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500668#if !defined(PNG_WRITE_FILLER_SUPPORTED) && defined(PNG_READ_FILLER_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500669 if (png_ptr->transformations & PNG_FILLER)
670 png_warning(png_ptr, "PNG_WRITE_FILLER_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500671#endif
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600672#if !defined(PNG_WRITE_PACKSWAP_SUPPORTED) && \
673 defined(PNG_READ_PACKSWAP_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500674 if (png_ptr->transformations & PNG_PACKSWAP)
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600675 png_warning(png_ptr,
676 "PNG_WRITE_PACKSWAP_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500677#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500678
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500679#if !defined(PNG_WRITE_PACK_SUPPORTED) && defined(PNG_READ_PACK_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500680 if (png_ptr->transformations & PNG_PACK)
681 png_warning(png_ptr, "PNG_WRITE_PACK_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500682#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500683
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500684#if !defined(PNG_WRITE_SHIFT_SUPPORTED) && defined(PNG_READ_SHIFT_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500685 if (png_ptr->transformations & PNG_SHIFT)
686 png_warning(png_ptr, "PNG_WRITE_SHIFT_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500687#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500688
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500689#if !defined(PNG_WRITE_BGR_SUPPORTED) && defined(PNG_READ_BGR_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500690 if (png_ptr->transformations & PNG_BGR)
691 png_warning(png_ptr, "PNG_WRITE_BGR_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500692#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500693
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500694#if !defined(PNG_WRITE_SWAP_SUPPORTED) && defined(PNG_READ_SWAP_SUPPORTED)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500695 if (png_ptr->transformations & PNG_SWAP_BYTES)
696 png_warning(png_ptr, "PNG_WRITE_SWAP_SUPPORTED is not defined");
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500697#endif
698
Guy Schalnat0d580581995-07-20 02:43:20 -0500699 png_write_start_row(png_ptr);
700 }
701
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500702#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500703 /* If interlaced and not interested in row, return */
Guy Schalnat0d580581995-07-20 02:43:20 -0500704 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
705 {
706 switch (png_ptr->pass)
707 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600708 case 0:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600709 if (png_ptr->row_number & 0x07)
Guy Schalnat0d580581995-07-20 02:43:20 -0500710 {
711 png_write_finish_row(png_ptr);
712 return;
713 }
714 break;
715 case 1:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600716 if ((png_ptr->row_number & 0x07) || png_ptr->width < 5)
Guy Schalnat0d580581995-07-20 02:43:20 -0500717 {
718 png_write_finish_row(png_ptr);
719 return;
720 }
721 break;
722 case 2:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600723 if ((png_ptr->row_number & 0x07) != 4)
Guy Schalnat0d580581995-07-20 02:43:20 -0500724 {
725 png_write_finish_row(png_ptr);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600726 return;
Guy Schalnat0d580581995-07-20 02:43:20 -0500727 }
728 break;
729 case 3:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600730 if ((png_ptr->row_number & 0x03) || png_ptr->width < 3)
Guy Schalnat0d580581995-07-20 02:43:20 -0500731 {
732 png_write_finish_row(png_ptr);
733 return;
734 }
735 break;
736 case 4:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600737 if ((png_ptr->row_number & 0x03) != 2)
Guy Schalnat0d580581995-07-20 02:43:20 -0500738 {
739 png_write_finish_row(png_ptr);
740 return;
741 }
742 break;
743 case 5:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600744 if ((png_ptr->row_number & 0x01) || png_ptr->width < 2)
Guy Schalnat0d580581995-07-20 02:43:20 -0500745 {
746 png_write_finish_row(png_ptr);
747 return;
748 }
749 break;
750 case 6:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600751 if (!(png_ptr->row_number & 0x01))
Guy Schalnat0d580581995-07-20 02:43:20 -0500752 {
753 png_write_finish_row(png_ptr);
754 return;
755 }
756 break;
757 }
758 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600759#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500760
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500761 /* Set up row info for transformations */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600762 png_ptr->row_info.color_type = png_ptr->color_type;
Guy Schalnat0d580581995-07-20 02:43:20 -0500763 png_ptr->row_info.width = png_ptr->usr_width;
764 png_ptr->row_info.channels = png_ptr->usr_channels;
765 png_ptr->row_info.bit_depth = png_ptr->usr_bit_depth;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600766 png_ptr->row_info.pixel_depth = (png_byte)(png_ptr->row_info.bit_depth *
767 png_ptr->row_info.channels);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600768
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500769 png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
770 png_ptr->row_info.width);
Guy Schalnat0d580581995-07-20 02:43:20 -0500771
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500772 png_debug1(3, "row_info->color_type = %d", png_ptr->row_info.color_type);
Glenn Randers-Pehrson632a84e2010-03-09 22:28:33 -0600773 png_debug1(3, "row_info->width = %u", png_ptr->row_info.width);
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500774 png_debug1(3, "row_info->channels = %d", png_ptr->row_info.channels);
775 png_debug1(3, "row_info->bit_depth = %d", png_ptr->row_info.bit_depth);
776 png_debug1(3, "row_info->pixel_depth = %d", png_ptr->row_info.pixel_depth);
Glenn Randers-Pehrson632a84e2010-03-09 22:28:33 -0600777 png_debug1(3, "row_info->rowbytes = %u", png_ptr->row_info.rowbytes);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500778
779 /* Copy user's row into buffer, leaving room for filter byte. */
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500780 png_memcpy(png_ptr->row_buf + 1, row, png_ptr->row_info.rowbytes);
Guy Schalnat0d580581995-07-20 02:43:20 -0500781
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500782#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500783 /* Handle interlacing */
Guy Schalnat0d580581995-07-20 02:43:20 -0500784 if (png_ptr->interlaced && png_ptr->pass < 6 &&
785 (png_ptr->transformations & PNG_INTERLACE))
786 {
787 png_do_write_interlace(&(png_ptr->row_info),
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600788 png_ptr->row_buf + 1, png_ptr->pass);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500789 /* This should always get caught above, but still ... */
Guy Schalnat0d580581995-07-20 02:43:20 -0500790 if (!(png_ptr->row_info.width))
791 {
792 png_write_finish_row(png_ptr);
793 return;
794 }
795 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600796#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500797
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500798 /* Handle other transformations */
Guy Schalnat0d580581995-07-20 02:43:20 -0500799 if (png_ptr->transformations)
800 png_do_write_transformations(png_ptr);
801
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500802#ifdef PNG_MNG_FEATURES_SUPPORTED
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -0600803 /* Write filter_method 64 (intrapixel differencing) only if
804 * 1. Libpng was compiled with PNG_MNG_FEATURES_SUPPORTED and
805 * 2. Libpng did not write a PNG signature (this filter_method is only
806 * used in PNG datastreams that are embedded in MNG datastreams) and
807 * 3. The application called png_permit_mng_features with a mask that
808 * included PNG_FLAG_MNG_FILTER_64 and
809 * 4. The filter_method is 64 and
810 * 5. The color_type is RGB or RGBA
811 */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500812 if ((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -0600813 (png_ptr->filter_type == PNG_INTRAPIXEL_DIFFERENCING))
814 {
815 /* Intrapixel differencing */
816 png_do_write_intrapixel(&(png_ptr->row_info), png_ptr->row_buf + 1);
817 }
818#endif
819
Andreas Dilger47a0c421997-05-16 02:46:07 -0500820 /* Find a filter if necessary, filter the row and write it out. */
Guy Schalnate5a37791996-06-05 15:50:50 -0500821 png_write_find_filter(png_ptr, &(png_ptr->row_info));
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600822
823 if (png_ptr->write_row_fn != NULL)
824 (*(png_ptr->write_row_fn))(png_ptr, png_ptr->row_number, png_ptr->pass);
Guy Schalnat0d580581995-07-20 02:43:20 -0500825}
826
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500827#ifdef PNG_WRITE_FLUSH_SUPPORTED
Guy Schalnat0f716451995-11-28 11:22:13 -0600828/* Set the automatic flush interval or 0 to turn flushing off */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500829void PNGAPI
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600830png_set_flush(png_structp png_ptr, int nrows)
Guy Schalnat0f716451995-11-28 11:22:13 -0600831{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500832 png_debug(1, "in png_set_flush");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500833
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600834 if (png_ptr == NULL)
835 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500836
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600837 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
Guy Schalnat0f716451995-11-28 11:22:13 -0600838}
839
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500840/* Flush the current output buffers now */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500841void PNGAPI
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600842png_write_flush(png_structp png_ptr)
Guy Schalnat0f716451995-11-28 11:22:13 -0600843{
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600844 int wrote_IDAT;
Guy Schalnat0f716451995-11-28 11:22:13 -0600845
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500846 png_debug(1, "in png_write_flush");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500847
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600848 if (png_ptr == NULL)
849 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500850
Guy Schalnate5a37791996-06-05 15:50:50 -0500851 /* We have already written out all of the data */
852 if (png_ptr->row_number >= png_ptr->num_rows)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500853 return;
Guy Schalnat0f716451995-11-28 11:22:13 -0600854
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600855 do
856 {
857 int ret;
Guy Schalnat0f716451995-11-28 11:22:13 -0600858
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500859 /* Compress the data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600860 ret = deflate(&png_ptr->zstream, Z_SYNC_FLUSH);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600861 wrote_IDAT = 0;
Guy Schalnat0f716451995-11-28 11:22:13 -0600862
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500863 /* Check for compression errors */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600864 if (ret != Z_OK)
865 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500866 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600867 png_error(png_ptr, png_ptr->zstream.msg);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500868
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600869 else
870 png_error(png_ptr, "zlib error");
871 }
Guy Schalnat0f716451995-11-28 11:22:13 -0600872
Andreas Dilger47a0c421997-05-16 02:46:07 -0500873 if (!(png_ptr->zstream.avail_out))
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600874 {
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500875 /* Write the IDAT and reset the zlib output buffer */
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600876 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600877 png_ptr->zstream.next_out = png_ptr->zbuf;
878 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600879 wrote_IDAT = 1;
880 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500881 } while (wrote_IDAT == 1);
Guy Schalnat0f716451995-11-28 11:22:13 -0600882
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600883 /* If there is any data left to be output, write it into a new IDAT */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600884 if (png_ptr->zbuf_size != png_ptr->zstream.avail_out)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600885 {
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -0500886 /* Write the IDAT and reset the zlib output buffer */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600887 png_write_IDAT(png_ptr, png_ptr->zbuf,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600888 png_ptr->zbuf_size - png_ptr->zstream.avail_out);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600889 png_ptr->zstream.next_out = png_ptr->zbuf;
890 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600891 }
892 png_ptr->flush_rows = 0;
893 png_flush(png_ptr);
Guy Schalnat0f716451995-11-28 11:22:13 -0600894}
895#endif /* PNG_WRITE_FLUSH_SUPPORTED */
896
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500897/* Free all memory used by the write */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500898void PNGAPI
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600899png_destroy_write_struct(png_structpp png_ptr_ptr, png_infopp info_ptr_ptr)
Guy Schalnate5a37791996-06-05 15:50:50 -0500900{
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600901 png_structp png_ptr = NULL;
902 png_infop info_ptr = NULL;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500903#ifdef PNG_USER_MEM_SUPPORTED
904 png_free_ptr free_fn = NULL;
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500905 png_voidp mem_ptr = NULL;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500906#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600907
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500908 png_debug(1, "in png_destroy_write_struct");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500909
Andreas Dilger47a0c421997-05-16 02:46:07 -0500910 if (png_ptr_ptr != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500911 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600912 png_ptr = *png_ptr_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500913#ifdef PNG_USER_MEM_SUPPORTED
914 free_fn = png_ptr->free_fn;
Glenn Randers-Pehrsonfcbd7872002-04-07 16:35:38 -0500915 mem_ptr = png_ptr->mem_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500916#endif
917 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600918
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500919#ifdef PNG_USER_MEM_SUPPORTED
920 if (png_ptr != NULL)
921 {
922 free_fn = png_ptr->free_fn;
923 mem_ptr = png_ptr->mem_ptr;
924 }
925#endif
926
Andreas Dilger47a0c421997-05-16 02:46:07 -0500927 if (info_ptr_ptr != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600928 info_ptr = *info_ptr_ptr;
929
Andreas Dilger47a0c421997-05-16 02:46:07 -0500930 if (info_ptr != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500931 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500932 if (png_ptr != NULL)
933 {
934 png_free_data(png_ptr, info_ptr, PNG_FREE_ALL, -1);
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600935
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600936#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500937 if (png_ptr->num_chunk_list)
938 {
939 png_free(png_ptr, png_ptr->chunk_list);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500940 png_ptr->num_chunk_list = 0;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500941 }
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500942#endif
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500943 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600944
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500945#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500946 png_destroy_struct_2((png_voidp)info_ptr, (png_free_ptr)free_fn,
947 (png_voidp)mem_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500948#else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600949 png_destroy_struct((png_voidp)info_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500950#endif
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500951 *info_ptr_ptr = NULL;
Guy Schalnate5a37791996-06-05 15:50:50 -0500952 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600953
Andreas Dilger47a0c421997-05-16 02:46:07 -0500954 if (png_ptr != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500955 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600956 png_write_destroy(png_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500957#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500958 png_destroy_struct_2((png_voidp)png_ptr, (png_free_ptr)free_fn,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -0600959 (png_voidp)mem_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500960#else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600961 png_destroy_struct((png_voidp)png_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500962#endif
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500963 *png_ptr_ptr = NULL;
Guy Schalnate5a37791996-06-05 15:50:50 -0500964 }
965}
966
967
Andreas Dilger47a0c421997-05-16 02:46:07 -0500968/* Free any memory used in png_ptr struct (old method) */
Glenn Randers-Pehrsonf64a06f2001-04-11 07:38:00 -0500969void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600970png_write_destroy(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500971{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600972#ifdef PNG_SETJMP_SUPPORTED
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500973 jmp_buf tmp_jmp; /* Save jump buffer */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600974#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500975 png_error_ptr error_fn;
976 png_error_ptr warning_fn;
977 png_voidp error_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500978#ifdef PNG_USER_MEM_SUPPORTED
979 png_free_ptr free_fn;
980#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500981
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500982 png_debug(1, "in png_write_destroy");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500983
984 /* Free any memory zlib uses */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600985 deflateEnd(&png_ptr->zstream);
Guy Schalnate5a37791996-06-05 15:50:50 -0500986
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500987 /* Free our memory. png_free checks NULL for us. */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600988 png_free(png_ptr, png_ptr->zbuf);
989 png_free(png_ptr, png_ptr->row_buf);
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500990#ifdef PNG_WRITE_FILTER_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600991 png_free(png_ptr, png_ptr->prev_row);
992 png_free(png_ptr, png_ptr->sub_row);
993 png_free(png_ptr, png_ptr->up_row);
994 png_free(png_ptr, png_ptr->avg_row);
995 png_free(png_ptr, png_ptr->paeth_row);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500996#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600997
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500998#ifdef PNG_TIME_RFC1123_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600999 png_free(png_ptr, png_ptr->time_buffer);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001000#endif
1001
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001002#ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001003 /* Use this to save a little code space, it doesn't free the filter_costs */
1004 png_reset_filter_heuristics(png_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001005 png_free(png_ptr, png_ptr->filter_costs);
1006 png_free(png_ptr, png_ptr->inv_filter_costs);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001007#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001008
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001009#ifdef PNG_SETJMP_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001010 /* Reset structure */
Glenn Randers-Pehrson95ca51b2010-02-19 14:09:09 -06001011 png_memcpy(tmp_jmp, png_ptr->png_jmpbuf, png_sizeof(jmp_buf));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001012#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001013
1014 error_fn = png_ptr->error_fn;
1015 warning_fn = png_ptr->warning_fn;
1016 error_ptr = png_ptr->error_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001017#ifdef PNG_USER_MEM_SUPPORTED
1018 free_fn = png_ptr->free_fn;
1019#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001020
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001021 png_memset(png_ptr, 0, png_sizeof(png_struct));
Guy Schalnate5a37791996-06-05 15:50:50 -05001022
1023 png_ptr->error_fn = error_fn;
1024 png_ptr->warning_fn = warning_fn;
1025 png_ptr->error_ptr = error_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001026#ifdef PNG_USER_MEM_SUPPORTED
1027 png_ptr->free_fn = free_fn;
1028#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001029
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001030#ifdef PNG_SETJMP_SUPPORTED
Glenn Randers-Pehrson95ca51b2010-02-19 14:09:09 -06001031 png_memcpy(png_ptr->png_jmpbuf, tmp_jmp, png_sizeof(jmp_buf));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001032#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001033}
Guy Schalnate5a37791996-06-05 15:50:50 -05001034
Andreas Dilger47a0c421997-05-16 02:46:07 -05001035/* Allow the application to select one or more row filters to use. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001036void PNGAPI
Guy Schalnate5a37791996-06-05 15:50:50 -05001037png_set_filter(png_structp png_ptr, int method, int filters)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001038{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001039 png_debug(1, "in png_set_filter");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001040
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001041 if (png_ptr == NULL)
1042 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001043
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001044#ifdef PNG_MNG_FEATURES_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001045 if ((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001046 (method == PNG_INTRAPIXEL_DIFFERENCING))
1047 method = PNG_FILTER_TYPE_BASE;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001048
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -06001049#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001050 if (method == PNG_FILTER_TYPE_BASE)
Guy Schalnate5a37791996-06-05 15:50:50 -05001051 {
1052 switch (filters & (PNG_ALL_FILTERS | 0x07))
1053 {
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001054#ifdef PNG_WRITE_FILTER_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -05001055 case 5:
1056 case 6:
Andreas Dilger47a0c421997-05-16 02:46:07 -05001057 case 7: png_warning(png_ptr, "Unknown row filter for method 0");
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001058#endif /* PNG_WRITE_FILTER_SUPPORTED */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001059 case PNG_FILTER_VALUE_NONE:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001060 png_ptr->do_filter = PNG_FILTER_NONE; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001061
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001062#ifdef PNG_WRITE_FILTER_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001063 case PNG_FILTER_VALUE_SUB:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001064 png_ptr->do_filter = PNG_FILTER_SUB; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001065
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001066 case PNG_FILTER_VALUE_UP:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001067 png_ptr->do_filter = PNG_FILTER_UP; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001068
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001069 case PNG_FILTER_VALUE_AVG:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001070 png_ptr->do_filter = PNG_FILTER_AVG; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001071
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001072 case PNG_FILTER_VALUE_PAETH:
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001073 png_ptr->do_filter = PNG_FILTER_PAETH; break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001074
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001075 default:
1076 png_ptr->do_filter = (png_byte)filters; break;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001077#else
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001078 default:
1079 png_warning(png_ptr, "Unknown row filter for method 0");
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001080#endif /* PNG_WRITE_FILTER_SUPPORTED */
Guy Schalnate5a37791996-06-05 15:50:50 -05001081 }
1082
Andreas Dilger47a0c421997-05-16 02:46:07 -05001083 /* If we have allocated the row_buf, this means we have already started
1084 * with the image and we should have allocated all of the filter buffers
1085 * that have been selected. If prev_row isn't already allocated, then
1086 * it is too late to start using the filters that need it, since we
1087 * will be missing the data in the previous row. If an application
1088 * wants to start and stop using particular filters during compression,
1089 * it should start out with all of the filters, and then add and
1090 * remove them after the start of compression.
Guy Schalnate5a37791996-06-05 15:50:50 -05001091 */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001092 if (png_ptr->row_buf != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001093 {
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001094#ifdef PNG_WRITE_FILTER_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001095 if ((png_ptr->do_filter & PNG_FILTER_SUB) && png_ptr->sub_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001096 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001097 png_ptr->sub_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001098 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001099 png_ptr->sub_row[0] = PNG_FILTER_VALUE_SUB;
Guy Schalnate5a37791996-06-05 15:50:50 -05001100 }
1101
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001102 if ((png_ptr->do_filter & PNG_FILTER_UP) && png_ptr->up_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001103 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001104 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001105 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001106 png_warning(png_ptr, "Can't add Up filter after starting");
Guy Schalnate5a37791996-06-05 15:50:50 -05001107 png_ptr->do_filter &= ~PNG_FILTER_UP;
1108 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001109
Guy Schalnate5a37791996-06-05 15:50:50 -05001110 else
1111 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001112 png_ptr->up_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001113 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001114 png_ptr->up_row[0] = PNG_FILTER_VALUE_UP;
Guy Schalnate5a37791996-06-05 15:50:50 -05001115 }
1116 }
1117
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001118 if ((png_ptr->do_filter & PNG_FILTER_AVG) && png_ptr->avg_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001119 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001120 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001121 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001122 png_warning(png_ptr, "Can't add Average filter after starting");
Guy Schalnate5a37791996-06-05 15:50:50 -05001123 png_ptr->do_filter &= ~PNG_FILTER_AVG;
1124 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001125
Guy Schalnate5a37791996-06-05 15:50:50 -05001126 else
1127 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001128 png_ptr->avg_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001129 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001130 png_ptr->avg_row[0] = PNG_FILTER_VALUE_AVG;
Guy Schalnate5a37791996-06-05 15:50:50 -05001131 }
1132 }
1133
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001134 if ((png_ptr->do_filter & PNG_FILTER_PAETH) &&
Andreas Dilger47a0c421997-05-16 02:46:07 -05001135 png_ptr->paeth_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001136 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001137 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001138 {
1139 png_warning(png_ptr, "Can't add Paeth filter after starting");
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05001140 png_ptr->do_filter &= (png_byte)(~PNG_FILTER_PAETH);
Guy Schalnate5a37791996-06-05 15:50:50 -05001141 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001142
Guy Schalnate5a37791996-06-05 15:50:50 -05001143 else
1144 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001145 png_ptr->paeth_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001146 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001147 png_ptr->paeth_row[0] = PNG_FILTER_VALUE_PAETH;
Guy Schalnate5a37791996-06-05 15:50:50 -05001148 }
1149 }
1150
1151 if (png_ptr->do_filter == PNG_NO_FILTERS)
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001152#endif /* PNG_WRITE_FILTER_SUPPORTED */
Guy Schalnate5a37791996-06-05 15:50:50 -05001153 png_ptr->do_filter = PNG_FILTER_NONE;
1154 }
1155 }
1156 else
Andreas Dilger47a0c421997-05-16 02:46:07 -05001157 png_error(png_ptr, "Unknown custom filter method");
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001158}
1159
Andreas Dilger47a0c421997-05-16 02:46:07 -05001160/* This allows us to influence the way in which libpng chooses the "best"
1161 * filter for the current scanline. While the "minimum-sum-of-absolute-
1162 * differences metric is relatively fast and effective, there is some
1163 * question as to whether it can be improved upon by trying to keep the
1164 * filtered data going to zlib more consistent, hopefully resulting in
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001165 * better compression.
1166 */
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001167#ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED /* GRR 970116 */
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001168/* Conveneince reset API. */
1169static void
1170png_reset_filter_heuristics(png_structp png_ptr)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001171{
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001172 /* Clear out any old values in the 'weights' - this must be done because if
1173 * the app calls set_filter_heuristics multiple times with different
1174 * 'num_weights' values we would otherwise potentially have wrong sized
1175 * arrays.
1176 */
1177 png_ptr->num_prev_filters = 0;
1178 png_ptr->heuristic_method = PNG_FILTER_HEURISTIC_UNWEIGHTED;
1179 if (png_ptr->prev_filters != NULL)
1180 {
1181 png_bytep old = png_ptr->prev_filters;
1182 png_ptr->prev_filters = NULL;
1183 png_free(png_ptr, old);
1184 }
1185 if (png_ptr->filter_weights != NULL)
1186 {
1187 png_uint_16p old = png_ptr->filter_weights;
1188 png_ptr->filter_weights = NULL;
1189 png_free(png_ptr, old);
1190 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001191
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001192 if (png_ptr->inv_filter_weights != NULL)
1193 {
1194 png_uint_16p old = png_ptr->inv_filter_weights;
1195 png_ptr->inv_filter_weights = NULL;
1196 png_free(png_ptr, old);
1197 }
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001198
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001199 /* Leave the filter_costs - this array is fixed size. */
1200}
1201
1202static int
1203png_init_filter_heuristics(png_structp png_ptr, int heuristic_method,
1204 int num_weights)
1205{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001206 if (png_ptr == NULL)
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001207 return 0;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001208
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001209 /* Clear out the arrays */
1210 png_reset_filter_heuristics(png_ptr);
1211
1212 /* Check arguments; the 'reset' function makes the correct settings for the
1213 * unweighted case, but we must handle the weight case by initializing the
1214 * arrays for the caller.
1215 */
1216 if (heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001217 {
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001218 int i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001219
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001220 if (num_weights > 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001221 {
1222 png_ptr->prev_filters = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001223 (png_uint_32)(png_sizeof(png_byte) * num_weights));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001224
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001225 /* To make sure that the weighting starts out fairly */
1226 for (i = 0; i < num_weights; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001227 {
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001228 png_ptr->prev_filters[i] = 255;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001229 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001230
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001231 png_ptr->filter_weights = (png_uint_16p)png_malloc(png_ptr,
1232 (png_uint_32)(png_sizeof(png_uint_16) * num_weights));
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001233
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001234 png_ptr->inv_filter_weights = (png_uint_16p)png_malloc(png_ptr,
1235 (png_uint_32)(png_sizeof(png_uint_16) * num_weights));
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001236
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001237 for (i = 0; i < num_weights; i++)
1238 {
1239 png_ptr->inv_filter_weights[i] =
1240 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
1241 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001242
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001243 /* Safe to set this now */
1244 png_ptr->num_prev_filters = (png_byte)num_weights;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001245 }
1246
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001247 /* If, in the future, there are other filter methods, this would
1248 * need to be based on png_ptr->filter.
1249 */
1250 if (png_ptr->filter_costs == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001251 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001252 png_ptr->filter_costs = (png_uint_16p)png_malloc(png_ptr,
1253 (png_uint_32)(png_sizeof(png_uint_16) * PNG_FILTER_VALUE_LAST));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001254
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001255 png_ptr->inv_filter_costs = (png_uint_16p)png_malloc(png_ptr,
1256 (png_uint_32)(png_sizeof(png_uint_16) * PNG_FILTER_VALUE_LAST));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001257 }
1258
Andreas Dilger47a0c421997-05-16 02:46:07 -05001259 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++)
1260 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001261 png_ptr->inv_filter_costs[i] =
1262 png_ptr->filter_costs[i] = PNG_COST_FACTOR;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001263 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001264
1265 /* All the arrays are inited, safe to set this: */
1266 png_ptr->heuristic_method = PNG_FILTER_HEURISTIC_WEIGHTED;
1267
1268 /* Return the 'ok' code. */
1269 return 1;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001270 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001271 else if (heuristic_method == PNG_FILTER_HEURISTIC_DEFAULT ||
1272 heuristic_method == PNG_FILTER_HEURISTIC_UNWEIGHTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001273 {
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001274 return 1;
1275 }
1276 else
1277 {
1278 png_warning(png_ptr, "Unknown filter heuristic method");
1279 return 0;
1280 }
1281}
1282
1283/* Provide floating and fixed point APIs */
1284#ifdef PNG_FLOATING_POINT_SUPPORTED
1285void PNGAPI
1286png_set_filter_heuristics(png_structp png_ptr, int heuristic_method,
1287 int num_weights, png_doublep filter_weights, png_doublep filter_costs)
1288{
1289 png_debug(1, "in png_set_filter_heuristics");
1290
1291 /* The internal API allocates all the arrays and ensures that the elements of
1292 * those arrays are set to the default value.
1293 */
1294 if (!png_init_filter_heuristics(png_ptr, heuristic_method, num_weights))
1295 return;
1296
1297 /* If using the weighted method copy in the weights. */
1298 if (heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1299 {
1300 int i;
1301 for (i = 0; i < num_weights; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001302 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001303 if (filter_weights[i] <= 0.0)
1304 {
1305 png_ptr->inv_filter_weights[i] =
1306 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
1307 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001308
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001309 else
1310 {
1311 png_ptr->inv_filter_weights[i] =
1312 (png_uint_16)(PNG_WEIGHT_FACTOR*filter_weights[i]+.5);
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001313
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001314 png_ptr->filter_weights[i] =
1315 (png_uint_16)(PNG_WEIGHT_FACTOR/filter_weights[i]+.5);
1316 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001317 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001318
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001319 /* Here is where we set the relative costs of the different filters. We
1320 * should take the desired compression level into account when setting
1321 * the costs, so that Paeth, for instance, has a high relative cost at low
1322 * compression levels, while it has a lower relative cost at higher
1323 * compression settings. The filter types are in order of increasing
1324 * relative cost, so it would be possible to do this with an algorithm.
1325 */
1326 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++) if (filter_costs[i] >= 1.0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001327 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001328 png_ptr->inv_filter_costs[i] =
1329 (png_uint_16)(PNG_COST_FACTOR / filter_costs[i] + .5);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001330
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001331 png_ptr->filter_costs[i] =
1332 (png_uint_16)(PNG_COST_FACTOR * filter_costs[i] + .5);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001333 }
1334 }
1335}
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001336#endif /* FLOATING_POINT */
1337
1338#ifdef PNG_FIXED_POINT_SUPPORTED
1339void PNGAPI
1340png_set_filter_heuristics_fixed(png_structp png_ptr, int heuristic_method,
1341 int num_weights, png_fixed_point_p filter_weights,
1342 png_fixed_point_p filter_costs)
1343{
1344 png_debug(1, "in png_set_filter_heuristics_fixed");
1345
1346 /* The internal API allocates all the arrays and ensures that the elements of
1347 * those arrays are set to the default value.
1348 */
1349 if (!png_init_filter_heuristics(png_ptr, heuristic_method, num_weights))
1350 return;
1351
1352 /* If using the weighted method copy in the weights. */
1353 if (heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1354 {
1355 int i;
1356 for (i = 0; i < num_weights; i++)
1357 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001358 if (filter_weights[i] <= 0)
1359 {
1360 png_ptr->inv_filter_weights[i] =
1361 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
1362 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001363
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001364 else
1365 {
1366 png_ptr->inv_filter_weights[i] = (png_uint_16)
1367 ((PNG_WEIGHT_FACTOR*filter_weights[i]+PNG_FP_HALF)/PNG_FP_1);
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001368
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001369 png_ptr->filter_weights[i] = (png_uint_16)((PNG_WEIGHT_FACTOR*
1370 PNG_FP_1+(filter_weights[i]/2))/filter_weights[i]);
1371 }
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001372 }
1373
1374 /* Here is where we set the relative costs of the different filters. We
1375 * should take the desired compression level into account when setting
1376 * the costs, so that Paeth, for instance, has a high relative cost at low
1377 * compression levels, while it has a lower relative cost at higher
1378 * compression settings. The filter types are in order of increasing
1379 * relative cost, so it would be possible to do this with an algorithm.
1380 */
1381 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++)
1382 if (filter_costs[i] >= PNG_FP_1)
1383 {
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001384 png_ptr->inv_filter_costs[i] = (png_uint_16)((PNG_COST_FACTOR*
1385 PNG_FP_1+(filter_costs[i]/2)) / filter_costs[i]);
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001386
Glenn Randers-Pehrson3df324d2010-07-31 13:45:04 -05001387 png_ptr->filter_costs[i] = (png_uint_16)
1388 ((PNG_COST_FACTOR * filter_costs[i] +PNG_FP_HALF)/PNG_FP_1);
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -05001389 }
1390 }
1391}
1392#endif /* FIXED_POINT */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001393#endif /* PNG_WRITE_WEIGHTED_FILTER_SUPPORTED */
1394
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001395void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001396png_set_compression_level(png_structp png_ptr, int level)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001397{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001398 png_debug(1, "in png_set_compression_level");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001399
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001400 if (png_ptr == NULL)
1401 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001402
Guy Schalnate5a37791996-06-05 15:50:50 -05001403 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_LEVEL;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001404 png_ptr->zlib_level = level;
1405}
1406
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001407void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001408png_set_compression_mem_level(png_structp png_ptr, int mem_level)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001409{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001410 png_debug(1, "in png_set_compression_mem_level");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001411
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001412 if (png_ptr == NULL)
1413 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001414
Guy Schalnate5a37791996-06-05 15:50:50 -05001415 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001416 png_ptr->zlib_mem_level = mem_level;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001417}
1418
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001419void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001420png_set_compression_strategy(png_structp png_ptr, int strategy)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001421{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001422 png_debug(1, "in png_set_compression_strategy");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -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 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_STRATEGY;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001428 png_ptr->zlib_strategy = strategy;
1429}
1430
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001431void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001432png_set_compression_window_bits(png_structp png_ptr, int window_bits)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001433{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001434 if (png_ptr == NULL)
1435 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001436
Guy Schalnate5a37791996-06-05 15:50:50 -05001437 if (window_bits > 15)
1438 png_warning(png_ptr, "Only compression windows <= 32k supported by PNG");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001439
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001440 else if (window_bits < 8)
1441 png_warning(png_ptr, "Only compression windows >= 256 supported by PNG");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001442
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001443#ifndef WBITS_8_OK
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -05001444 /* Avoid libpng bug with 256-byte windows */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001445 if (window_bits == 8)
1446 {
1447 png_warning(png_ptr, "Compression window is being reset to 512");
Glenn Randers-Pehrson614b91d2009-10-17 19:00:18 -05001448 window_bits = 9;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001449 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001450
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001451#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001452 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001453 png_ptr->zlib_window_bits = window_bits;
1454}
1455
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001456void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001457png_set_compression_method(png_structp png_ptr, int method)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001458{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001459 png_debug(1, "in png_set_compression_method");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001460
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001461 if (png_ptr == NULL)
1462 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001463
Guy Schalnate5a37791996-06-05 15:50:50 -05001464 if (method != 8)
1465 png_warning(png_ptr, "Only compression method 8 is supported by PNG");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001466
Guy Schalnate5a37791996-06-05 15:50:50 -05001467 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_METHOD;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001468 png_ptr->zlib_method = method;
Guy Schalnat0d580581995-07-20 02:43:20 -05001469}
1470
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001471void PNGAPI
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001472png_set_write_status_fn(png_structp png_ptr, png_write_status_ptr write_row_fn)
1473{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001474 if (png_ptr == NULL)
1475 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001476
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001477 png_ptr->write_row_fn = write_row_fn;
1478}
1479
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001480#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001481void PNGAPI
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001482png_set_write_user_transform_fn(png_structp png_ptr, png_user_transform_ptr
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001483 write_user_transform_fn)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001484{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001485 png_debug(1, "in png_set_write_user_transform_fn");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001486
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001487 if (png_ptr == NULL)
1488 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001489
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001490 png_ptr->transformations |= PNG_USER_TRANSFORM;
1491 png_ptr->write_user_transform_fn = write_user_transform_fn;
1492}
1493#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001494
1495
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001496#ifdef PNG_INFO_IMAGE_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001497void PNGAPI
1498png_write_png(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001499 int transforms, voidp params)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001500{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001501 if (png_ptr == NULL || info_ptr == NULL)
1502 return;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001503
1504 /* Write the file header information. */
1505 png_write_info(png_ptr, info_ptr);
1506
1507 /* ------ these transformations don't touch the info structure ------- */
1508
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001509#ifdef PNG_WRITE_INVERT_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001510 /* Invert monochrome pixels */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001511 if (transforms & PNG_TRANSFORM_INVERT_MONO)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001512 png_set_invert_mono(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001513#endif
1514
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001515#ifdef PNG_WRITE_SHIFT_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001516 /* Shift the pixels up to a legal bit depth and fill in
1517 * as appropriate to correctly scale the image.
1518 */
1519 if ((transforms & PNG_TRANSFORM_SHIFT)
Glenn Randers-Pehrson45624d62010-03-03 11:40:43 -06001520 && (info_ptr->valid & PNG_INFO_sBIT))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001521 png_set_shift(png_ptr, &info_ptr->sig_bit);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001522#endif
1523
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001524#ifdef PNG_WRITE_PACK_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001525 /* Pack pixels into bytes */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001526 if (transforms & PNG_TRANSFORM_PACKING)
1527 png_set_packing(png_ptr);
1528#endif
1529
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001530#ifdef PNG_WRITE_SWAP_ALPHA_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001531 /* Swap location of alpha bytes from ARGB to RGBA */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001532 if (transforms & PNG_TRANSFORM_SWAP_ALPHA)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001533 png_set_swap_alpha(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001534#endif
1535
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001536#ifdef PNG_WRITE_FILLER_SUPPORTED
Glenn Randers-Pehrson4a82d692008-12-15 16:25:05 -06001537 /* Pack XRGB/RGBX/ARGB/RGBA into * RGB (4 channels -> 3 channels) */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001538 if (transforms & PNG_TRANSFORM_STRIP_FILLER_AFTER)
Glenn Randers-Pehrson1eb14e92008-12-10 07:14:45 -06001539 png_set_filler(png_ptr, 0, PNG_FILLER_AFTER);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001540
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001541 else if (transforms & PNG_TRANSFORM_STRIP_FILLER_BEFORE)
Glenn Randers-Pehrson1eb14e92008-12-10 07:14:45 -06001542 png_set_filler(png_ptr, 0, PNG_FILLER_BEFORE);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001543#endif
1544
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001545#ifdef PNG_WRITE_BGR_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001546 /* Flip BGR pixels to RGB */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001547 if (transforms & PNG_TRANSFORM_BGR)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001548 png_set_bgr(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001549#endif
1550
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001551#ifdef PNG_WRITE_SWAP_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001552 /* Swap bytes of 16-bit files to most significant byte first */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001553 if (transforms & PNG_TRANSFORM_SWAP_ENDIAN)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001554 png_set_swap(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001555#endif
1556
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001557#ifdef PNG_WRITE_PACKSWAP_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001558 /* Swap bits of 1, 2, 4 bit packed pixel formats */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001559 if (transforms & PNG_TRANSFORM_PACKSWAP)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001560 png_set_packswap(png_ptr);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001561#endif
1562
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001563#ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED
Glenn Randers-Pehrson6878eb62009-06-29 16:45:53 -05001564 /* Invert the alpha channel from opacity to transparency */
1565 if (transforms & PNG_TRANSFORM_INVERT_ALPHA)
1566 png_set_invert_alpha(png_ptr);
1567#endif
1568
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001569 /* ----------------------- end of transformations ------------------- */
1570
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001571 /* Write the bits */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001572 if (info_ptr->valid & PNG_INFO_IDAT)
1573 png_write_image(png_ptr, info_ptr->row_pointers);
1574
1575 /* It is REQUIRED to call this to finish writing the rest of the file */
1576 png_write_end(png_ptr, info_ptr);
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001577
Glenn Randers-Pehrson3dfe9372009-08-22 08:44:23 -05001578 transforms = transforms; /* Quiet compiler warnings */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001579 params = params;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001580}
1581#endif
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001582#endif /* PNG_WRITE_SUPPORTED */