blob: f292c6f82c8d772753b06985e4b9948d7c97b4d0 [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-Pehrson5b5dcf82004-07-17 22:45:44 -05004 * libpng 1.2.6beta3 - July 18, 2004
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06005 * For conditions of distribution and use, see copyright notice in png.h
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -05006 * Copyright (c) 1998-2004 Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05007 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
8 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06009 */
Guy Schalnat0d580581995-07-20 02:43:20 -050010
11/* get internal access to png.h */
12#define PNG_INTERNAL
13#include "png.h"
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -060014#ifdef PNG_WRITE_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -050015
Andreas Dilger47a0c421997-05-16 02:46:07 -050016/* Writes all the PNG information. This is the suggested way to use the
17 * library. If you have a new chunk to add, make a function to write it,
18 * and put it in the correct location here. If you want the chunk written
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -050019 * after the image data, put it in png_write_end(). I strongly encourage
Andreas Dilger47a0c421997-05-16 02:46:07 -050020 * you to supply a PNG_INFO_ flag, and check info_ptr->valid before writing
21 * the chunk, as that will keep the code from breaking if you want to just
22 * write a plain PNG file. If you have long comments, I suggest writing
23 * them in png_write_end(), and compressing them.
24 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050025void PNGAPI
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -060026png_write_info_before_PLTE(png_structp png_ptr, png_infop info_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -050027{
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -060028 png_debug(1, "in png_write_info_before_PLTE\n");
29 if (!(png_ptr->mode & PNG_WROTE_INFO_BEFORE_PLTE))
30 {
Guy Schalnat0d580581995-07-20 02:43:20 -050031 png_write_sig(png_ptr); /* write PNG signature */
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -060032#if defined(PNG_MNG_FEATURES_SUPPORTED)
33 if((png_ptr->mode&PNG_HAVE_PNG_SIGNATURE)&&(png_ptr->mng_features_permitted))
34 {
35 png_warning(png_ptr,"MNG features are not allowed in a PNG datastream\n");
36 png_ptr->mng_features_permitted=0;
37 }
38#endif
Guy Schalnat0d580581995-07-20 02:43:20 -050039 /* write IHDR information. */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060040 png_write_IHDR(png_ptr, info_ptr->width, info_ptr->height,
41 info_ptr->bit_depth, info_ptr->color_type, info_ptr->compression_type,
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060042 info_ptr->filter_type,
43#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
44 info_ptr->interlace_type);
45#else
46 0);
47#endif
Guy Schalnat0d580581995-07-20 02:43:20 -050048 /* the rest of these check to see if the valid field has the appropriate
49 flag set, and if it does, writes the chunk. */
Guy Schalnat51f0eb41995-09-26 05:22:39 -050050#if defined(PNG_WRITE_gAMA_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060051 if (info_ptr->valid & PNG_INFO_gAMA)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060052 {
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060053# ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060054 png_write_gAMA(png_ptr, info_ptr->gamma);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060055#else
56#ifdef PNG_FIXED_POINT_SUPPORTED
57 png_write_gAMA_fixed(png_ptr, info_ptr->int_gamma);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060058# endif
59#endif
60 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -050061#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060062#if defined(PNG_WRITE_sRGB_SUPPORTED)
63 if (info_ptr->valid & PNG_INFO_sRGB)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -060064 png_write_sRGB(png_ptr, (int)info_ptr->srgb_intent);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060065#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060066#if defined(PNG_WRITE_iCCP_SUPPORTED)
67 if (info_ptr->valid & PNG_INFO_iCCP)
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -060068 png_write_iCCP(png_ptr, info_ptr->iccp_name, PNG_COMPRESSION_TYPE_BASE,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060069 info_ptr->iccp_profile, (int)info_ptr->iccp_proflen);
70#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -050071#if defined(PNG_WRITE_sBIT_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060072 if (info_ptr->valid & PNG_INFO_sBIT)
73 png_write_sBIT(png_ptr, &(info_ptr->sig_bit), info_ptr->color_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -050074#endif
75#if defined(PNG_WRITE_cHRM_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060076 if (info_ptr->valid & PNG_INFO_cHRM)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060077 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060078#ifdef PNG_FLOATING_POINT_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -050079 png_write_cHRM(png_ptr,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060080 info_ptr->x_white, info_ptr->y_white,
81 info_ptr->x_red, info_ptr->y_red,
82 info_ptr->x_green, info_ptr->y_green,
83 info_ptr->x_blue, info_ptr->y_blue);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060084#else
85# ifdef PNG_FIXED_POINT_SUPPORTED
86 png_write_cHRM_fixed(png_ptr,
87 info_ptr->int_x_white, info_ptr->int_y_white,
88 info_ptr->int_x_red, info_ptr->int_y_red,
89 info_ptr->int_x_green, info_ptr->int_y_green,
90 info_ptr->int_x_blue, info_ptr->int_y_blue);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060091# endif
92#endif
93 }
94#endif
95#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
96 if (info_ptr->unknown_chunks_num)
97 {
98 png_unknown_chunk *up;
99
100 png_debug(5, "writing extra chunks\n");
101
102 for (up = info_ptr->unknown_chunks;
103 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
104 up++)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600105 {
106 int keep=png_handle_as_unknown(png_ptr, up->name);
107 if (keep != HANDLE_CHUNK_NEVER &&
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500108 up->location && !(up->location & PNG_HAVE_PLTE) &&
109 !(up->location & PNG_HAVE_IDAT) &&
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600110 ((up->name[3] & 0x20) || keep == HANDLE_CHUNK_ALWAYS ||
111 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
112 {
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600113 png_write_chunk(png_ptr, up->name, up->data, up->size);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600114 }
115 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600116 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500117#endif
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600118 png_ptr->mode |= PNG_WROTE_INFO_BEFORE_PLTE;
119 }
120}
121
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500122void PNGAPI
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600123png_write_info(png_structp png_ptr, png_infop info_ptr)
124{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600125#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600126 int i;
127#endif
128
129 png_debug(1, "in png_write_info\n");
130
131 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,
135 (png_uint_32)info_ptr->num_palette);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600136 else if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Guy Schalnate5a37791996-06-05 15:50:50 -0500137 png_error(png_ptr, "Valid palette required for paletted images\n");
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600138
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500139#if defined(PNG_WRITE_tRNS_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600140 if (info_ptr->valid & PNG_INFO_tRNS)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600141 {
142#if defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED)
143 /* invert the alpha channel (in tRNS) */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600144 if ((png_ptr->transformations & PNG_INVERT_ALPHA) &&
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600145 info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
146 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600147 int j;
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600148 for (j=0; j<(int)info_ptr->num_trans; j++)
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -0500149 info_ptr->trans[j] = (png_byte)(255 - info_ptr->trans[j]);
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600150 }
151#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600152 png_write_tRNS(png_ptr, info_ptr->trans, &(info_ptr->trans_values),
153 info_ptr->num_trans, info_ptr->color_type);
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600154 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500155#endif
156#if defined(PNG_WRITE_bKGD_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600157 if (info_ptr->valid & PNG_INFO_bKGD)
158 png_write_bKGD(png_ptr, &(info_ptr->background), info_ptr->color_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500159#endif
160#if defined(PNG_WRITE_hIST_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600161 if (info_ptr->valid & PNG_INFO_hIST)
162 png_write_hIST(png_ptr, info_ptr->hist, info_ptr->num_palette);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500163#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500164#if defined(PNG_WRITE_oFFs_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600165 if (info_ptr->valid & PNG_INFO_oFFs)
166 png_write_oFFs(png_ptr, info_ptr->x_offset, info_ptr->y_offset,
167 info_ptr->offset_unit_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500168#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500169#if defined(PNG_WRITE_pCAL_SUPPORTED)
170 if (info_ptr->valid & PNG_INFO_pCAL)
171 png_write_pCAL(png_ptr, info_ptr->pcal_purpose, info_ptr->pcal_X0,
172 info_ptr->pcal_X1, info_ptr->pcal_type, info_ptr->pcal_nparams,
173 info_ptr->pcal_units, info_ptr->pcal_params);
174#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600175#if defined(PNG_WRITE_sCAL_SUPPORTED)
176 if (info_ptr->valid & PNG_INFO_sCAL)
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -0600177#if defined(PNG_FLOATING_POINT_SUPPORTED) && !defined(PNG_NO_STDIO)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600178 png_write_sCAL(png_ptr, (int)info_ptr->scal_unit,
179 info_ptr->scal_pixel_width, info_ptr->scal_pixel_height);
180#else
181#ifdef PNG_FIXED_POINT_SUPPORTED
182 png_write_sCAL_s(png_ptr, (int)info_ptr->scal_unit,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600183 info_ptr->scal_s_width, info_ptr->scal_s_height);
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -0600184#else
185 png_warning(png_ptr,
186 "png_write_sCAL not supported; sCAL chunk not written.\n");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600187#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600188#endif
189#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500190#if defined(PNG_WRITE_pHYs_SUPPORTED)
191 if (info_ptr->valid & PNG_INFO_pHYs)
192 png_write_pHYs(png_ptr, info_ptr->x_pixels_per_unit,
193 info_ptr->y_pixels_per_unit, info_ptr->phys_unit_type);
194#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500195#if defined(PNG_WRITE_tIME_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600196 if (info_ptr->valid & PNG_INFO_tIME)
Guy Schalnate5a37791996-06-05 15:50:50 -0500197 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600198 png_write_tIME(png_ptr, &(info_ptr->mod_time));
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600199 png_ptr->mode |= PNG_WROTE_tIME;
Guy Schalnate5a37791996-06-05 15:50:50 -0500200 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500201#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600202#if defined(PNG_WRITE_sPLT_SUPPORTED)
203 if (info_ptr->valid & PNG_INFO_sPLT)
204 for (i = 0; i < (int)info_ptr->splt_palettes_num; i++)
205 png_write_sPLT(png_ptr, info_ptr->splt_palettes + i);
206#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600207#if defined(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 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500211 png_debug2(2, "Writing header text chunk %d, type %d\n", i,
212 info_ptr->text[i].compression);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600213 /* 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 {
216#if defined(PNG_WRITE_iTXt_SUPPORTED)
217 /* write international chunk */
218 png_write_iTXt(png_ptr,
219 info_ptr->text[i].compression,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600220 info_ptr->text[i].key,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600221 info_ptr->text[i].lang,
222 info_ptr->text[i].lang_key,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600223 info_ptr->text[i].text);
224#else
225 png_warning(png_ptr, "Unable to write international text\n");
226#endif
227 /* Mark this chunk as written */
228 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
229 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500230 /* If we want a compressed text chunk */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600231 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_zTXt)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500232 {
233#if defined(PNG_WRITE_zTXt_SUPPORTED)
234 /* write compressed chunk */
235 png_write_zTXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600236 info_ptr->text[i].text, 0,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500237 info_ptr->text[i].compression);
238#else
239 png_warning(png_ptr, "Unable to write compressed text\n");
240#endif
241 /* Mark this chunk as written */
242 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
243 }
244 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
245 {
246#if defined(PNG_WRITE_tEXt_SUPPORTED)
247 /* write uncompressed chunk */
248 png_write_tEXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600249 info_ptr->text[i].text,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600250 0);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500251#else
252 png_warning(png_ptr, "Unable to write uncompressed text\n");
253#endif
254 /* Mark this chunk as written */
255 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
256 }
257 }
258#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600259#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
260 if (info_ptr->unknown_chunks_num)
261 {
262 png_unknown_chunk *up;
263
264 png_debug(5, "writing extra chunks\n");
265
266 for (up = info_ptr->unknown_chunks;
267 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
268 up++)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600269 {
270 int keep=png_handle_as_unknown(png_ptr, up->name);
271 if (keep != HANDLE_CHUNK_NEVER &&
272 up->location && (up->location & PNG_HAVE_PLTE) &&
273 !(up->location & PNG_HAVE_IDAT) &&
274 ((up->name[3] & 0x20) || keep == HANDLE_CHUNK_ALWAYS ||
275 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
276 {
277 png_write_chunk(png_ptr, up->name, up->data, up->size);
278 }
279 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600280 }
281#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500282}
Guy Schalnat0d580581995-07-20 02:43:20 -0500283
Andreas Dilger47a0c421997-05-16 02:46:07 -0500284/* Writes the end of the PNG file. If you don't want to write comments or
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600285 * time information, you can pass NULL for info. If you already wrote these
286 * in png_write_info(), do not write them again here. If you have long
287 * comments, I suggest writing them here, and compressing them.
288 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500289void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500290png_write_end(png_structp png_ptr, png_infop info_ptr)
291{
292 png_debug(1, "in png_write_end\n");
293 if (!(png_ptr->mode & PNG_HAVE_IDAT))
294 png_error(png_ptr, "No IDATs written into file");
295
296 /* see if user wants us to write information chunks */
297 if (info_ptr != NULL)
298 {
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600299#if defined(PNG_WRITE_TEXT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500300 int i; /* local index variable */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600301#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500302#if defined(PNG_WRITE_tIME_SUPPORTED)
303 /* check to see if user has supplied a time chunk */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600304 if ((info_ptr->valid & PNG_INFO_tIME) &&
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600305 !(png_ptr->mode & PNG_WROTE_tIME))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500306 png_write_tIME(png_ptr, &(info_ptr->mod_time));
307#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600308#if defined(PNG_WRITE_TEXT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500309 /* loop through comment chunks */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600310 for (i = 0; i < info_ptr->num_text; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500311 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500312 png_debug2(2, "Writing trailer text chunk %d, type %d\n", i,
313 info_ptr->text[i].compression);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600314 /* an internationalized chunk? */
315 if (info_ptr->text[i].compression > 0)
316 {
317#if defined(PNG_WRITE_iTXt_SUPPORTED)
318 /* write international chunk */
319 png_write_iTXt(png_ptr,
320 info_ptr->text[i].compression,
321 info_ptr->text[i].key,
322 info_ptr->text[i].lang,
323 info_ptr->text[i].lang_key,
324 info_ptr->text[i].text);
325#else
326 png_warning(png_ptr, "Unable to write international text\n");
327#endif
328 /* Mark this chunk as written */
329 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
330 }
331 else if (info_ptr->text[i].compression >= PNG_TEXT_COMPRESSION_zTXt)
Guy Schalnat0d580581995-07-20 02:43:20 -0500332 {
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500333#if defined(PNG_WRITE_zTXt_SUPPORTED)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600334 /* write compressed chunk */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600335 png_write_zTXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600336 info_ptr->text[i].text, 0,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600337 info_ptr->text[i].compression);
Guy Schalnate5a37791996-06-05 15:50:50 -0500338#else
339 png_warning(png_ptr, "Unable to write compressed text\n");
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500340#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500341 /* Mark this chunk as written */
342 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500343 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500344 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
Guy Schalnat0d580581995-07-20 02:43:20 -0500345 {
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500346#if defined(PNG_WRITE_tEXt_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500347 /* write uncompressed chunk */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600348 png_write_tEXt(png_ptr, info_ptr->text[i].key,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600349 info_ptr->text[i].text, 0);
Guy Schalnate5a37791996-06-05 15:50:50 -0500350#else
351 png_warning(png_ptr, "Unable to write uncompressed text\n");
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500352#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500353
Andreas Dilger47a0c421997-05-16 02:46:07 -0500354 /* Mark this chunk as written */
355 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500356 }
357 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600358#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600359#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
360 if (info_ptr->unknown_chunks_num)
361 {
362 png_unknown_chunk *up;
363
364 png_debug(5, "writing extra chunks\n");
365
366 for (up = info_ptr->unknown_chunks;
367 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
368 up++)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600369 {
370 int keep=png_handle_as_unknown(png_ptr, up->name);
371 if (keep != HANDLE_CHUNK_NEVER &&
372 up->location && (up->location & PNG_AFTER_IDAT) &&
373 ((up->name[3] & 0x20) || keep == HANDLE_CHUNK_ALWAYS ||
374 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
375 {
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600376 png_write_chunk(png_ptr, up->name, up->data, up->size);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600377 }
378 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600379 }
380#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500381 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500382
383 png_ptr->mode |= PNG_AFTER_IDAT;
384
Andreas Dilger47a0c421997-05-16 02:46:07 -0500385 /* write end of PNG file */
Guy Schalnat0d580581995-07-20 02:43:20 -0500386 png_write_IEND(png_ptr);
Glenn Randers-Pehrsond56aca72000-11-23 11:51:42 -0600387#if 0
388/* This flush, added in libpng-1.0.8, causes some applications to crash
389 because they do not set png_ptr->output_flush_fn */
Glenn Randers-Pehrson32fc5ce2000-07-24 06:34:14 -0500390 png_flush(png_ptr);
Glenn Randers-Pehrsond56aca72000-11-23 11:51:42 -0600391#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500392}
393
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500394#if defined(PNG_WRITE_tIME_SUPPORTED)
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500395#if !defined(_WIN32_WCE)
396/* "time.h" functions are not supported on WindowsCE */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500397void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600398png_convert_from_struct_tm(png_timep ptime, struct tm FAR * ttime)
Guy Schalnat0d580581995-07-20 02:43:20 -0500399{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500400 png_debug(1, "in png_convert_from_struct_tm\n");
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600401 ptime->year = (png_uint_16)(1900 + ttime->tm_year);
402 ptime->month = (png_byte)(ttime->tm_mon + 1);
403 ptime->day = (png_byte)ttime->tm_mday;
404 ptime->hour = (png_byte)ttime->tm_hour;
405 ptime->minute = (png_byte)ttime->tm_min;
406 ptime->second = (png_byte)ttime->tm_sec;
Guy Schalnat0d580581995-07-20 02:43:20 -0500407}
408
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500409void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600410png_convert_from_time_t(png_timep ptime, time_t ttime)
Guy Schalnat0d580581995-07-20 02:43:20 -0500411{
412 struct tm *tbuf;
413
Andreas Dilger47a0c421997-05-16 02:46:07 -0500414 png_debug(1, "in png_convert_from_time_t\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500415 tbuf = gmtime(&ttime);
416 png_convert_from_struct_tm(ptime, tbuf);
417}
Guy Schalnat6d764711995-12-19 03:22:19 -0600418#endif
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500419#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500420
Andreas Dilger47a0c421997-05-16 02:46:07 -0500421/* Initialize png_ptr structure, and allocate any memory needed */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500422png_structp PNGAPI
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -0500423png_create_write_struct(png_const_charp user_png_ver, png_voidp error_ptr,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600424 png_error_ptr error_fn, png_error_ptr warn_fn)
Guy Schalnat0d580581995-07-20 02:43:20 -0500425{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500426#ifdef PNG_USER_MEM_SUPPORTED
427 return (png_create_write_struct_2(user_png_ver, error_ptr, error_fn,
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500428 warn_fn, png_voidp_NULL, png_malloc_ptr_NULL, png_free_ptr_NULL));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500429}
430
431/* Alternate initialize png_ptr structure, and allocate any memory needed */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500432png_structp PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500433png_create_write_struct_2(png_const_charp user_png_ver, png_voidp error_ptr,
434 png_error_ptr error_fn, png_error_ptr warn_fn, png_voidp mem_ptr,
435 png_malloc_ptr malloc_fn, png_free_ptr free_fn)
436{
437#endif /* PNG_USER_MEM_SUPPORTED */
Guy Schalnate5a37791996-06-05 15:50:50 -0500438 png_structp png_ptr;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600439#ifdef PNG_SETJMP_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600440#ifdef USE_FAR_KEYWORD
441 jmp_buf jmpbuf;
442#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600443#endif
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500444 int i;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500445 png_debug(1, "in png_create_write_struct\n");
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500446#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600447 png_ptr = (png_structp)png_create_struct_2(PNG_STRUCT_PNG,
448 (png_malloc_ptr)malloc_fn, (png_voidp)mem_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500449#else
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600450 png_ptr = (png_structp)png_create_struct(PNG_STRUCT_PNG);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500451#endif /* PNG_USER_MEM_SUPPORTED */
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600452 if (png_ptr == NULL)
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500453 return (NULL);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600454
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -0600455#if !defined(PNG_1_0_X)
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500456#ifdef PNG_ASSEMBLER_CODE_SUPPORTED
457 png_init_mmx_flags(png_ptr); /* 1.2.0 addition */
458#endif
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -0600459#endif /* PNG_1_0_X */
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500460
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600461#ifdef PNG_SETJMP_SUPPORTED
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600462#ifdef USE_FAR_KEYWORD
463 if (setjmp(jmpbuf))
464#else
Guy Schalnate5a37791996-06-05 15:50:50 -0500465 if (setjmp(png_ptr->jmpbuf))
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600466#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500467 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600468 png_free(png_ptr, png_ptr->zbuf);
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -0500469 png_ptr->zbuf=NULL;
Guy Schalnate5a37791996-06-05 15:50:50 -0500470 png_destroy_struct(png_ptr);
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500471 return (NULL);
Guy Schalnate5a37791996-06-05 15:50:50 -0500472 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600473#ifdef USE_FAR_KEYWORD
474 png_memcpy(png_ptr->jmpbuf,jmpbuf,sizeof(jmp_buf));
475#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600476#endif
477
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500478#ifdef PNG_USER_MEM_SUPPORTED
479 png_set_mem_fn(png_ptr, mem_ptr, malloc_fn, free_fn);
480#endif /* PNG_USER_MEM_SUPPORTED */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600481 png_set_error_fn(png_ptr, error_ptr, error_fn, warn_fn);
Guy Schalnate5a37791996-06-05 15:50:50 -0500482
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500483 i=0;
484 do
Guy Schalnate5a37791996-06-05 15:50:50 -0500485 {
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500486 if(user_png_ver[i] != png_libpng_ver[i])
487 png_ptr->flags |= PNG_FLAG_LIBRARY_MISMATCH;
488 } while (png_libpng_ver[i++]);
Guy Schalnat0d580581995-07-20 02:43:20 -0500489
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500490 if (png_ptr->flags & PNG_FLAG_LIBRARY_MISMATCH)
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -0500491 {
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500492 /* Libpng 0.90 and later are binary incompatible with libpng 0.89, so
493 * we must recompile any applications that use any older library version.
494 * For versions after libpng 1.0, we will be compatible, so we need
495 * only check the first digit.
496 */
497 if (user_png_ver == NULL || user_png_ver[0] != png_libpng_ver[0] ||
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500498 (user_png_ver[0] == '1' && user_png_ver[2] != png_libpng_ver[2]) ||
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500499 (user_png_ver[0] == '0' && user_png_ver[2] < '9'))
500 {
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500501#if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
502 char msg[80];
503 if (user_png_ver)
504 {
505 sprintf(msg, "Application was compiled with png.h from libpng-%.20s",
506 user_png_ver);
507 png_warning(png_ptr, msg);
508 }
Glenn Randers-Pehrson5cded0b2001-11-07 07:10:08 -0600509 sprintf(msg, "Application is running with png.c from libpng-%.20s",
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500510 png_libpng_ver);
511 png_warning(png_ptr, msg);
512#endif
513#ifdef PNG_ERROR_NUMBERS_SUPPORTED
514 png_ptr->flags=0;
515#endif
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500516 png_error(png_ptr,
517 "Incompatible libpng version in application and library");
518 }
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500519 }
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -0500520
Guy Schalnat0d580581995-07-20 02:43:20 -0500521 /* initialize zbuf - compression buffer */
522 png_ptr->zbuf_size = PNG_ZBUF_SIZE;
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600523 png_ptr->zbuf = (png_bytep)png_malloc(png_ptr,
524 (png_uint_32)png_ptr->zbuf_size);
Guy Schalnate5a37791996-06-05 15:50:50 -0500525
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500526 png_set_write_fn(png_ptr, png_voidp_NULL, png_rw_ptr_NULL,
527 png_flush_ptr_NULL);
Guy Schalnate5a37791996-06-05 15:50:50 -0500528
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600529#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
530 png_set_filter_heuristics(png_ptr, PNG_FILTER_HEURISTIC_DEFAULT,
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500531 1, png_doublep_NULL, png_doublep_NULL);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600532#endif
533
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500534#ifdef PNG_SETJMP_SUPPORTED
535/* Applications that neglect to set up their own setjmp() and then encounter
536 a png_error() will longjmp here. Since the jmpbuf is then meaningless we
537 abort instead of returning. */
538#ifdef USE_FAR_KEYWORD
539 if (setjmp(jmpbuf))
540 PNG_ABORT();
541 png_memcpy(png_ptr->jmpbuf,jmpbuf,sizeof(jmp_buf));
542#else
543 if (setjmp(png_ptr->jmpbuf))
544 PNG_ABORT();
545#endif
546#endif
547 return (png_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500548}
549
Andreas Dilger47a0c421997-05-16 02:46:07 -0500550/* Initialize png_ptr structure, and allocate any memory needed */
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -0500551#undef png_write_init
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500552void PNGAPI
Guy Schalnate5a37791996-06-05 15:50:50 -0500553png_write_init(png_structp png_ptr)
554{
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -0500555 /* We only come here via pre-1.0.7-compiled applications */
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500556 png_write_init_2(png_ptr, "1.0.6 or earlier", 0, 0);
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -0500557}
558
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500559void PNGAPI
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -0500560png_write_init_2(png_structp png_ptr, png_const_charp user_png_ver,
561 png_size_t png_struct_size, png_size_t png_info_size)
562{
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500563 /* We only come here via pre-1.0.12-compiled applications */
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500564#if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
565 if(sizeof(png_struct) > png_struct_size || sizeof(png_info) > png_info_size)
566 {
567 char msg[80];
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500568 png_ptr->warning_fn=NULL;
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500569 if (user_png_ver)
570 {
571 sprintf(msg, "Application was compiled with png.h from libpng-%.20s",
572 user_png_ver);
573 png_warning(png_ptr, msg);
574 }
Glenn Randers-Pehrson5cded0b2001-11-07 07:10:08 -0600575 sprintf(msg, "Application is running with png.c from libpng-%.20s",
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500576 png_libpng_ver);
577 png_warning(png_ptr, msg);
578 }
579#endif
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500580 if(sizeof(png_struct) > png_struct_size)
581 {
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500582 png_ptr->error_fn=NULL;
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500583#ifdef PNG_ERROR_NUMBERS_SUPPORTED
584 png_ptr->flags=0;
585#endif
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500586 png_error(png_ptr,
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500587 "The png struct allocated by the application for writing is too small.");
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500588 }
589 if(sizeof(png_info) > png_info_size)
590 {
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500591 png_ptr->error_fn=NULL;
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500592#ifdef PNG_ERROR_NUMBERS_SUPPORTED
593 png_ptr->flags=0;
594#endif
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500595 png_error(png_ptr,
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500596 "The info struct allocated by the application for writing is too small.");
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500597 }
598 png_write_init_3(&png_ptr, user_png_ver, png_struct_size);
599}
600
601
602void PNGAPI
603png_write_init_3(png_structpp ptr_ptr, png_const_charp user_png_ver,
604 png_size_t png_struct_size)
605{
606 png_structp png_ptr=*ptr_ptr;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600607#ifdef PNG_SETJMP_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -0500608 jmp_buf tmp_jmp; /* to save current jump buffer */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600609#endif
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -0500610 int i = 0;
611 do
612 {
613 if (user_png_ver[i] != png_libpng_ver[i])
614 {
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500615#ifdef PNG_LEGACY_SUPPORTED
616 png_ptr->flags |= PNG_FLAG_LIBRARY_MISMATCH;
617#else
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500618 png_ptr->warning_fn=NULL;
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500619 png_warning(png_ptr,
620 "Application uses deprecated png_write_init() and should be recompiled.");
621 break;
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500622#endif
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -0500623 }
624 } while (png_libpng_ver[i++]);
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500625
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500626 png_debug(1, "in png_write_init_3\n");
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -0500627
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600628#ifdef PNG_SETJMP_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -0500629 /* save jump buffer and error functions */
630 png_memcpy(tmp_jmp, png_ptr->jmpbuf, sizeof (jmp_buf));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600631#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500632
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500633 if (sizeof(png_struct) > png_struct_size)
634 {
635 png_destroy_struct(png_ptr);
636 png_ptr = (png_structp)png_create_struct(PNG_STRUCT_PNG);
637 *ptr_ptr = png_ptr;
638 }
639
Guy Schalnate5a37791996-06-05 15:50:50 -0500640 /* reset all variables to 0 */
641 png_memset(png_ptr, 0, sizeof (png_struct));
642
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -0600643#if !defined(PNG_1_0_X)
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500644#ifdef PNG_ASSEMBLER_CODE_SUPPORTED
645 png_init_mmx_flags(png_ptr); /* 1.2.0 addition */
646#endif
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -0600647#endif /* PNG_1_0_X */
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500648
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600649#ifdef PNG_SETJMP_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -0500650 /* restore jump buffer */
651 png_memcpy(png_ptr->jmpbuf, tmp_jmp, sizeof (jmp_buf));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600652#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500653
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500654 png_set_write_fn(png_ptr, png_voidp_NULL, png_rw_ptr_NULL,
655 png_flush_ptr_NULL);
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500656
Guy Schalnate5a37791996-06-05 15:50:50 -0500657 /* initialize zbuf - compression buffer */
658 png_ptr->zbuf_size = PNG_ZBUF_SIZE;
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600659 png_ptr->zbuf = (png_bytep)png_malloc(png_ptr,
660 (png_uint_32)png_ptr->zbuf_size);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500661
662#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
663 png_set_filter_heuristics(png_ptr, PNG_FILTER_HEURISTIC_DEFAULT,
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500664 1, png_doublep_NULL, png_doublep_NULL);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500665#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500666}
667
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600668/* Write a few rows of image data. If the image is interlaced,
669 * either you will have to write the 7 sub images, or, if you
670 * have called png_set_interlace_handling(), you will have to
671 * "write" the image seven times.
672 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500673void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600674png_write_rows(png_structp png_ptr, png_bytepp row,
Guy Schalnat0d580581995-07-20 02:43:20 -0500675 png_uint_32 num_rows)
676{
677 png_uint_32 i; /* row counter */
Guy Schalnat6d764711995-12-19 03:22:19 -0600678 png_bytepp rp; /* row pointer */
Guy Schalnat0d580581995-07-20 02:43:20 -0500679
Andreas Dilger47a0c421997-05-16 02:46:07 -0500680 png_debug(1, "in png_write_rows\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500681 /* loop through the rows */
682 for (i = 0, rp = row; i < num_rows; i++, rp++)
683 {
684 png_write_row(png_ptr, *rp);
685 }
686}
687
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600688/* Write the image. You only need to call this function once, even
689 * if you are writing an interlaced image.
690 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500691void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600692png_write_image(png_structp png_ptr, png_bytepp image)
Guy Schalnat0d580581995-07-20 02:43:20 -0500693{
694 png_uint_32 i; /* row index */
695 int pass, num_pass; /* pass variables */
Guy Schalnat6d764711995-12-19 03:22:19 -0600696 png_bytepp rp; /* points to current row */
Guy Schalnat0d580581995-07-20 02:43:20 -0500697
Andreas Dilger47a0c421997-05-16 02:46:07 -0500698 png_debug(1, "in png_write_image\n");
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600699#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500700 /* intialize interlace handling. If image is not interlaced,
701 this will set pass to 1 */
702 num_pass = png_set_interlace_handling(png_ptr);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600703#else
704 num_pass = 1;
705#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500706 /* loop through passes */
707 for (pass = 0; pass < num_pass; pass++)
708 {
709 /* loop through image */
710 for (i = 0, rp = image; i < png_ptr->height; i++, rp++)
711 {
712 png_write_row(png_ptr, *rp);
713 }
714 }
715}
716
Guy Schalnate5a37791996-06-05 15:50:50 -0500717/* called by user to write a row of image data */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500718void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600719png_write_row(png_structp png_ptr, png_bytep row)
Guy Schalnat0d580581995-07-20 02:43:20 -0500720{
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600721 png_debug2(1, "in png_write_row (row %ld, pass %d)\n",
722 png_ptr->row_number, png_ptr->pass);
Guy Schalnat0d580581995-07-20 02:43:20 -0500723 /* initialize transformations and other stuff if first time */
Guy Schalnat6d764711995-12-19 03:22:19 -0600724 if (png_ptr->row_number == 0 && png_ptr->pass == 0)
Guy Schalnat0d580581995-07-20 02:43:20 -0500725 {
Glenn Randers-Pehrson5cded0b2001-11-07 07:10:08 -0600726 /* make sure we wrote the header info */
727 if (!(png_ptr->mode & PNG_WROTE_INFO_BEFORE_PLTE))
728 png_error(png_ptr,
729 "png_write_info was never called before png_write_row.");
730
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500731 /* check for transforms that have been set but were defined out */
732#if !defined(PNG_WRITE_INVERT_SUPPORTED) && defined(PNG_READ_INVERT_SUPPORTED)
733 if (png_ptr->transformations & PNG_INVERT_MONO)
734 png_warning(png_ptr, "PNG_WRITE_INVERT_SUPPORTED is not defined.");
735#endif
736#if !defined(PNG_WRITE_FILLER_SUPPORTED) && defined(PNG_READ_FILLER_SUPPORTED)
737 if (png_ptr->transformations & PNG_FILLER)
738 png_warning(png_ptr, "PNG_WRITE_FILLER_SUPPORTED is not defined.");
739#endif
740#if !defined(PNG_WRITE_PACKSWAP_SUPPORTED) && defined(PNG_READ_PACKSWAP_SUPPORTED)
741 if (png_ptr->transformations & PNG_PACKSWAP)
742 png_warning(png_ptr, "PNG_WRITE_PACKSWAP_SUPPORTED is not defined.");
743#endif
744#if !defined(PNG_WRITE_PACK_SUPPORTED) && defined(PNG_READ_PACK_SUPPORTED)
745 if (png_ptr->transformations & PNG_PACK)
746 png_warning(png_ptr, "PNG_WRITE_PACK_SUPPORTED is not defined.");
747#endif
748#if !defined(PNG_WRITE_SHIFT_SUPPORTED) && defined(PNG_READ_SHIFT_SUPPORTED)
749 if (png_ptr->transformations & PNG_SHIFT)
750 png_warning(png_ptr, "PNG_WRITE_SHIFT_SUPPORTED is not defined.");
751#endif
752#if !defined(PNG_WRITE_BGR_SUPPORTED) && defined(PNG_READ_BGR_SUPPORTED)
753 if (png_ptr->transformations & PNG_BGR)
754 png_warning(png_ptr, "PNG_WRITE_BGR_SUPPORTED is not defined.");
755#endif
756#if !defined(PNG_WRITE_SWAP_SUPPORTED) && defined(PNG_READ_SWAP_SUPPORTED)
757 if (png_ptr->transformations & PNG_SWAP_BYTES)
758 png_warning(png_ptr, "PNG_WRITE_SWAP_SUPPORTED is not defined.");
759#endif
760
Guy Schalnat0d580581995-07-20 02:43:20 -0500761 png_write_start_row(png_ptr);
762 }
763
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500764#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500765 /* if interlaced and not interested in row, return */
766 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
767 {
768 switch (png_ptr->pass)
769 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600770 case 0:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600771 if (png_ptr->row_number & 0x07)
Guy Schalnat0d580581995-07-20 02:43:20 -0500772 {
773 png_write_finish_row(png_ptr);
774 return;
775 }
776 break;
777 case 1:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600778 if ((png_ptr->row_number & 0x07) || png_ptr->width < 5)
Guy Schalnat0d580581995-07-20 02:43:20 -0500779 {
780 png_write_finish_row(png_ptr);
781 return;
782 }
783 break;
784 case 2:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600785 if ((png_ptr->row_number & 0x07) != 4)
Guy Schalnat0d580581995-07-20 02:43:20 -0500786 {
787 png_write_finish_row(png_ptr);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600788 return;
Guy Schalnat0d580581995-07-20 02:43:20 -0500789 }
790 break;
791 case 3:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600792 if ((png_ptr->row_number & 0x03) || png_ptr->width < 3)
Guy Schalnat0d580581995-07-20 02:43:20 -0500793 {
794 png_write_finish_row(png_ptr);
795 return;
796 }
797 break;
798 case 4:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600799 if ((png_ptr->row_number & 0x03) != 2)
Guy Schalnat0d580581995-07-20 02:43:20 -0500800 {
801 png_write_finish_row(png_ptr);
802 return;
803 }
804 break;
805 case 5:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600806 if ((png_ptr->row_number & 0x01) || png_ptr->width < 2)
Guy Schalnat0d580581995-07-20 02:43:20 -0500807 {
808 png_write_finish_row(png_ptr);
809 return;
810 }
811 break;
812 case 6:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600813 if (!(png_ptr->row_number & 0x01))
Guy Schalnat0d580581995-07-20 02:43:20 -0500814 {
815 png_write_finish_row(png_ptr);
816 return;
817 }
818 break;
819 }
820 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600821#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500822
823 /* set up row info for transformations */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600824 png_ptr->row_info.color_type = png_ptr->color_type;
Guy Schalnat0d580581995-07-20 02:43:20 -0500825 png_ptr->row_info.width = png_ptr->usr_width;
826 png_ptr->row_info.channels = png_ptr->usr_channels;
827 png_ptr->row_info.bit_depth = png_ptr->usr_bit_depth;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600828 png_ptr->row_info.pixel_depth = (png_byte)(png_ptr->row_info.bit_depth *
829 png_ptr->row_info.channels);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600830
Guy Schalnat0d580581995-07-20 02:43:20 -0500831 png_ptr->row_info.rowbytes = ((png_ptr->row_info.width *
832 (png_uint_32)png_ptr->row_info.pixel_depth + 7) >> 3);
833
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600834 png_debug1(3, "row_info->color_type = %d\n", png_ptr->row_info.color_type);
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -0500835 png_debug1(3, "row_info->width = %lu\n", png_ptr->row_info.width);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600836 png_debug1(3, "row_info->channels = %d\n", png_ptr->row_info.channels);
837 png_debug1(3, "row_info->bit_depth = %d\n", png_ptr->row_info.bit_depth);
838 png_debug1(3, "row_info->pixel_depth = %d\n", png_ptr->row_info.pixel_depth);
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -0500839 png_debug1(3, "row_info->rowbytes = %lu\n", png_ptr->row_info.rowbytes);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500840
841 /* Copy user's row into buffer, leaving room for filter byte. */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600842 png_memcpy_check(png_ptr, png_ptr->row_buf + 1, row,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600843 png_ptr->row_info.rowbytes);
Guy Schalnat0d580581995-07-20 02:43:20 -0500844
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500845#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500846 /* handle interlacing */
847 if (png_ptr->interlaced && png_ptr->pass < 6 &&
848 (png_ptr->transformations & PNG_INTERLACE))
849 {
850 png_do_write_interlace(&(png_ptr->row_info),
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600851 png_ptr->row_buf + 1, png_ptr->pass);
Guy Schalnat0d580581995-07-20 02:43:20 -0500852 /* this should always get caught above, but still ... */
853 if (!(png_ptr->row_info.width))
854 {
855 png_write_finish_row(png_ptr);
856 return;
857 }
858 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600859#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500860
861 /* handle other transformations */
862 if (png_ptr->transformations)
863 png_do_write_transformations(png_ptr);
864
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -0600865#if defined(PNG_MNG_FEATURES_SUPPORTED)
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -0600866 /* Write filter_method 64 (intrapixel differencing) only if
867 * 1. Libpng was compiled with PNG_MNG_FEATURES_SUPPORTED and
868 * 2. Libpng did not write a PNG signature (this filter_method is only
869 * used in PNG datastreams that are embedded in MNG datastreams) and
870 * 3. The application called png_permit_mng_features with a mask that
871 * included PNG_FLAG_MNG_FILTER_64 and
872 * 4. The filter_method is 64 and
873 * 5. The color_type is RGB or RGBA
874 */
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -0600875 if((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
876 (png_ptr->filter_type == PNG_INTRAPIXEL_DIFFERENCING))
877 {
878 /* Intrapixel differencing */
879 png_do_write_intrapixel(&(png_ptr->row_info), png_ptr->row_buf + 1);
880 }
881#endif
882
Andreas Dilger47a0c421997-05-16 02:46:07 -0500883 /* Find a filter if necessary, filter the row and write it out. */
Guy Schalnate5a37791996-06-05 15:50:50 -0500884 png_write_find_filter(png_ptr, &(png_ptr->row_info));
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600885
886 if (png_ptr->write_row_fn != NULL)
887 (*(png_ptr->write_row_fn))(png_ptr, png_ptr->row_number, png_ptr->pass);
Guy Schalnat0d580581995-07-20 02:43:20 -0500888}
889
Guy Schalnat0f716451995-11-28 11:22:13 -0600890#if defined(PNG_WRITE_FLUSH_SUPPORTED)
891/* Set the automatic flush interval or 0 to turn flushing off */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500892void PNGAPI
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600893png_set_flush(png_structp png_ptr, int nrows)
Guy Schalnat0f716451995-11-28 11:22:13 -0600894{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500895 png_debug(1, "in png_set_flush\n");
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600896 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
Guy Schalnat0f716451995-11-28 11:22:13 -0600897}
898
899/* flush the current output buffers now */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500900void PNGAPI
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600901png_write_flush(png_structp png_ptr)
Guy Schalnat0f716451995-11-28 11:22:13 -0600902{
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600903 int wrote_IDAT;
Guy Schalnat0f716451995-11-28 11:22:13 -0600904
Andreas Dilger47a0c421997-05-16 02:46:07 -0500905 png_debug(1, "in png_write_flush\n");
Guy Schalnate5a37791996-06-05 15:50:50 -0500906 /* We have already written out all of the data */
907 if (png_ptr->row_number >= png_ptr->num_rows)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600908 return;
Guy Schalnat0f716451995-11-28 11:22:13 -0600909
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600910 do
911 {
912 int ret;
Guy Schalnat0f716451995-11-28 11:22:13 -0600913
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600914 /* compress the data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600915 ret = deflate(&png_ptr->zstream, Z_SYNC_FLUSH);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600916 wrote_IDAT = 0;
Guy Schalnat0f716451995-11-28 11:22:13 -0600917
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600918 /* check for compression errors */
919 if (ret != Z_OK)
920 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500921 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600922 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600923 else
924 png_error(png_ptr, "zlib error");
925 }
Guy Schalnat0f716451995-11-28 11:22:13 -0600926
Andreas Dilger47a0c421997-05-16 02:46:07 -0500927 if (!(png_ptr->zstream.avail_out))
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600928 {
929 /* write the IDAT and reset the zlib output buffer */
930 png_write_IDAT(png_ptr, png_ptr->zbuf,
931 png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600932 png_ptr->zstream.next_out = png_ptr->zbuf;
933 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600934 wrote_IDAT = 1;
935 }
936 } while(wrote_IDAT == 1);
Guy Schalnat0f716451995-11-28 11:22:13 -0600937
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600938 /* If there is any data left to be output, write it into a new IDAT */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600939 if (png_ptr->zbuf_size != png_ptr->zstream.avail_out)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600940 {
941 /* write the IDAT and reset the zlib output buffer */
942 png_write_IDAT(png_ptr, png_ptr->zbuf,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600943 png_ptr->zbuf_size - png_ptr->zstream.avail_out);
944 png_ptr->zstream.next_out = png_ptr->zbuf;
945 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600946 }
947 png_ptr->flush_rows = 0;
948 png_flush(png_ptr);
Guy Schalnat0f716451995-11-28 11:22:13 -0600949}
950#endif /* PNG_WRITE_FLUSH_SUPPORTED */
951
Guy Schalnate5a37791996-06-05 15:50:50 -0500952/* free all memory used by the write */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500953void PNGAPI
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600954png_destroy_write_struct(png_structpp png_ptr_ptr, png_infopp info_ptr_ptr)
Guy Schalnate5a37791996-06-05 15:50:50 -0500955{
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600956 png_structp png_ptr = NULL;
957 png_infop info_ptr = NULL;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500958#ifdef PNG_USER_MEM_SUPPORTED
959 png_free_ptr free_fn = NULL;
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500960 png_voidp mem_ptr = NULL;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500961#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600962
Andreas Dilger47a0c421997-05-16 02:46:07 -0500963 png_debug(1, "in png_destroy_write_struct\n");
964 if (png_ptr_ptr != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500965 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600966 png_ptr = *png_ptr_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500967#ifdef PNG_USER_MEM_SUPPORTED
968 free_fn = png_ptr->free_fn;
Glenn Randers-Pehrsonfcbd7872002-04-07 16:35:38 -0500969 mem_ptr = png_ptr->mem_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500970#endif
971 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600972
Andreas Dilger47a0c421997-05-16 02:46:07 -0500973 if (info_ptr_ptr != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600974 info_ptr = *info_ptr_ptr;
975
Andreas Dilger47a0c421997-05-16 02:46:07 -0500976 if (info_ptr != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500977 {
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600978 png_free_data(png_ptr, info_ptr, PNG_FREE_ALL, -1);
979
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500980#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600981 if (png_ptr->num_chunk_list)
982 {
983 png_free(png_ptr, png_ptr->chunk_list);
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -0500984 png_ptr->chunk_list=NULL;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600985 png_ptr->num_chunk_list=0;
986 }
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500987#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600988
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500989#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500990 png_destroy_struct_2((png_voidp)info_ptr, (png_free_ptr)free_fn,
991 (png_voidp)mem_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500992#else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600993 png_destroy_struct((png_voidp)info_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500994#endif
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500995 *info_ptr_ptr = NULL;
Guy Schalnate5a37791996-06-05 15:50:50 -0500996 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600997
Andreas Dilger47a0c421997-05-16 02:46:07 -0500998 if (png_ptr != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500999 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001000 png_write_destroy(png_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001001#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -05001002 png_destroy_struct_2((png_voidp)png_ptr, (png_free_ptr)free_fn,
1003 (png_voidp)mem_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001004#else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001005 png_destroy_struct((png_voidp)png_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001006#endif
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -05001007 *png_ptr_ptr = NULL;
Guy Schalnate5a37791996-06-05 15:50:50 -05001008 }
1009}
1010
1011
Andreas Dilger47a0c421997-05-16 02:46:07 -05001012/* Free any memory used in png_ptr struct (old method) */
Glenn Randers-Pehrsonf64a06f2001-04-11 07:38:00 -05001013void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001014png_write_destroy(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05001015{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001016#ifdef PNG_SETJMP_SUPPORTED
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001017 jmp_buf tmp_jmp; /* save jump buffer */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001018#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001019 png_error_ptr error_fn;
1020 png_error_ptr warning_fn;
1021 png_voidp error_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001022#ifdef PNG_USER_MEM_SUPPORTED
1023 png_free_ptr free_fn;
1024#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001025
Andreas Dilger47a0c421997-05-16 02:46:07 -05001026 png_debug(1, "in png_write_destroy\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001027 /* free any memory zlib uses */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001028 deflateEnd(&png_ptr->zstream);
Guy Schalnate5a37791996-06-05 15:50:50 -05001029
Guy Schalnat0d580581995-07-20 02:43:20 -05001030 /* free our memory. png_free checks NULL for us. */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001031 png_free(png_ptr, png_ptr->zbuf);
1032 png_free(png_ptr, png_ptr->row_buf);
1033 png_free(png_ptr, png_ptr->prev_row);
1034 png_free(png_ptr, png_ptr->sub_row);
1035 png_free(png_ptr, png_ptr->up_row);
1036 png_free(png_ptr, png_ptr->avg_row);
1037 png_free(png_ptr, png_ptr->paeth_row);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001038
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001039#if defined(PNG_TIME_RFC1123_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001040 png_free(png_ptr, png_ptr->time_buffer);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001041#endif
1042
Andreas Dilger47a0c421997-05-16 02:46:07 -05001043#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1044 png_free(png_ptr, png_ptr->prev_filters);
1045 png_free(png_ptr, png_ptr->filter_weights);
1046 png_free(png_ptr, png_ptr->inv_filter_weights);
1047 png_free(png_ptr, png_ptr->filter_costs);
1048 png_free(png_ptr, png_ptr->inv_filter_costs);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001049#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001050
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001051#ifdef PNG_SETJMP_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05001052 /* reset structure */
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001053 png_memcpy(tmp_jmp, png_ptr->jmpbuf, sizeof (jmp_buf));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001054#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001055
1056 error_fn = png_ptr->error_fn;
1057 warning_fn = png_ptr->warning_fn;
1058 error_ptr = png_ptr->error_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001059#ifdef PNG_USER_MEM_SUPPORTED
1060 free_fn = png_ptr->free_fn;
1061#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001062
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001063 png_memset(png_ptr, 0, sizeof (png_struct));
Guy Schalnate5a37791996-06-05 15:50:50 -05001064
1065 png_ptr->error_fn = error_fn;
1066 png_ptr->warning_fn = warning_fn;
1067 png_ptr->error_ptr = error_ptr;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001068#ifdef PNG_USER_MEM_SUPPORTED
1069 png_ptr->free_fn = free_fn;
1070#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001071
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001072#ifdef PNG_SETJMP_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001073 png_memcpy(png_ptr->jmpbuf, tmp_jmp, sizeof (jmp_buf));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001074#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001075}
Guy Schalnate5a37791996-06-05 15:50:50 -05001076
Andreas Dilger47a0c421997-05-16 02:46:07 -05001077/* Allow the application to select one or more row filters to use. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001078void PNGAPI
Guy Schalnate5a37791996-06-05 15:50:50 -05001079png_set_filter(png_structp png_ptr, int method, int filters)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001080{
Andreas Dilger47a0c421997-05-16 02:46:07 -05001081 png_debug(1, "in png_set_filter\n");
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -06001082#if defined(PNG_MNG_FEATURES_SUPPORTED)
Glenn Randers-Pehrsonf05f8032000-12-23 14:27:39 -06001083 if((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -06001084 (method == PNG_INTRAPIXEL_DIFFERENCING))
1085 method = PNG_FILTER_TYPE_BASE;
1086#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001087 if (method == PNG_FILTER_TYPE_BASE)
Guy Schalnate5a37791996-06-05 15:50:50 -05001088 {
1089 switch (filters & (PNG_ALL_FILTERS | 0x07))
1090 {
1091 case 5:
1092 case 6:
Andreas Dilger47a0c421997-05-16 02:46:07 -05001093 case 7: png_warning(png_ptr, "Unknown row filter for method 0");
1094 case PNG_FILTER_VALUE_NONE: png_ptr->do_filter=PNG_FILTER_NONE; break;
1095 case PNG_FILTER_VALUE_SUB: png_ptr->do_filter=PNG_FILTER_SUB; break;
1096 case PNG_FILTER_VALUE_UP: png_ptr->do_filter=PNG_FILTER_UP; break;
1097 case PNG_FILTER_VALUE_AVG: png_ptr->do_filter=PNG_FILTER_AVG; break;
1098 case PNG_FILTER_VALUE_PAETH: png_ptr->do_filter=PNG_FILTER_PAETH;break;
Guy Schalnate5a37791996-06-05 15:50:50 -05001099 default: png_ptr->do_filter = (png_byte)filters; break;
1100 }
1101
Andreas Dilger47a0c421997-05-16 02:46:07 -05001102 /* If we have allocated the row_buf, this means we have already started
1103 * with the image and we should have allocated all of the filter buffers
1104 * that have been selected. If prev_row isn't already allocated, then
1105 * it is too late to start using the filters that need it, since we
1106 * will be missing the data in the previous row. If an application
1107 * wants to start and stop using particular filters during compression,
1108 * it should start out with all of the filters, and then add and
1109 * remove them after the start of compression.
Guy Schalnate5a37791996-06-05 15:50:50 -05001110 */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001111 if (png_ptr->row_buf != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001112 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001113 if ((png_ptr->do_filter & PNG_FILTER_SUB) && png_ptr->sub_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001114 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001115 png_ptr->sub_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001116 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001117 png_ptr->sub_row[0] = PNG_FILTER_VALUE_SUB;
Guy Schalnate5a37791996-06-05 15:50:50 -05001118 }
1119
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001120 if ((png_ptr->do_filter & PNG_FILTER_UP) && png_ptr->up_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001121 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001122 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001123 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001124 png_warning(png_ptr, "Can't add Up filter after starting");
Guy Schalnate5a37791996-06-05 15:50:50 -05001125 png_ptr->do_filter &= ~PNG_FILTER_UP;
1126 }
1127 else
1128 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001129 png_ptr->up_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001130 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001131 png_ptr->up_row[0] = PNG_FILTER_VALUE_UP;
Guy Schalnate5a37791996-06-05 15:50:50 -05001132 }
1133 }
1134
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001135 if ((png_ptr->do_filter & PNG_FILTER_AVG) && png_ptr->avg_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 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001139 png_warning(png_ptr, "Can't add Average filter after starting");
Guy Schalnate5a37791996-06-05 15:50:50 -05001140 png_ptr->do_filter &= ~PNG_FILTER_AVG;
1141 }
1142 else
1143 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001144 png_ptr->avg_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001145 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001146 png_ptr->avg_row[0] = PNG_FILTER_VALUE_AVG;
Guy Schalnate5a37791996-06-05 15:50:50 -05001147 }
1148 }
1149
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001150 if ((png_ptr->do_filter & PNG_FILTER_PAETH) &&
Andreas Dilger47a0c421997-05-16 02:46:07 -05001151 png_ptr->paeth_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001152 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001153 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -05001154 {
1155 png_warning(png_ptr, "Can't add Paeth filter after starting");
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05001156 png_ptr->do_filter &= (png_byte)(~PNG_FILTER_PAETH);
Guy Schalnate5a37791996-06-05 15:50:50 -05001157 }
1158 else
1159 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001160 png_ptr->paeth_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001161 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001162 png_ptr->paeth_row[0] = PNG_FILTER_VALUE_PAETH;
Guy Schalnate5a37791996-06-05 15:50:50 -05001163 }
1164 }
1165
1166 if (png_ptr->do_filter == PNG_NO_FILTERS)
1167 png_ptr->do_filter = PNG_FILTER_NONE;
1168 }
1169 }
1170 else
Andreas Dilger47a0c421997-05-16 02:46:07 -05001171 png_error(png_ptr, "Unknown custom filter method");
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001172}
1173
Andreas Dilger47a0c421997-05-16 02:46:07 -05001174/* This allows us to influence the way in which libpng chooses the "best"
1175 * filter for the current scanline. While the "minimum-sum-of-absolute-
1176 * differences metric is relatively fast and effective, there is some
1177 * question as to whether it can be improved upon by trying to keep the
1178 * filtered data going to zlib more consistent, hopefully resulting in
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001179 * better compression.
1180 */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001181#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED) /* GRR 970116 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001182void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -05001183png_set_filter_heuristics(png_structp png_ptr, int heuristic_method,
1184 int num_weights, png_doublep filter_weights,
1185 png_doublep filter_costs)
1186{
1187 int i;
1188
1189 png_debug(1, "in png_set_filter_heuristics\n");
1190 if (heuristic_method >= PNG_FILTER_HEURISTIC_LAST)
1191 {
1192 png_warning(png_ptr, "Unknown filter heuristic method");
1193 return;
1194 }
1195
1196 if (heuristic_method == PNG_FILTER_HEURISTIC_DEFAULT)
1197 {
1198 heuristic_method = PNG_FILTER_HEURISTIC_UNWEIGHTED;
1199 }
1200
1201 if (num_weights < 0 || filter_weights == NULL ||
1202 heuristic_method == PNG_FILTER_HEURISTIC_UNWEIGHTED)
1203 {
1204 num_weights = 0;
1205 }
1206
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05001207 png_ptr->num_prev_filters = (png_byte)num_weights;
1208 png_ptr->heuristic_method = (png_byte)heuristic_method;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001209
1210 if (num_weights > 0)
1211 {
1212 if (png_ptr->prev_filters == NULL)
1213 {
1214 png_ptr->prev_filters = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001215 (png_uint_32)(sizeof(png_byte) * num_weights));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001216
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001217 /* To make sure that the weighting starts out fairly */
1218 for (i = 0; i < num_weights; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001219 {
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001220 png_ptr->prev_filters[i] = 255;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001221 }
1222 }
1223
1224 if (png_ptr->filter_weights == NULL)
1225 {
Glenn Randers-Pehrson87c6bc92001-04-03 22:43:19 -05001226 png_ptr->filter_weights = (png_uint_16p)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001227 (png_uint_32)(sizeof(png_uint_16) * num_weights));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001228
Glenn Randers-Pehrson87c6bc92001-04-03 22:43:19 -05001229 png_ptr->inv_filter_weights = (png_uint_16p)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001230 (png_uint_32)(sizeof(png_uint_16) * num_weights));
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001231 for (i = 0; i < num_weights; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001232 {
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001233 png_ptr->inv_filter_weights[i] =
1234 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001235 }
1236 }
1237
1238 for (i = 0; i < num_weights; i++)
1239 {
1240 if (filter_weights[i] < 0.0)
1241 {
1242 png_ptr->inv_filter_weights[i] =
1243 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
1244 }
1245 else
1246 {
1247 png_ptr->inv_filter_weights[i] =
1248 (png_uint_16)((double)PNG_WEIGHT_FACTOR*filter_weights[i]+0.5);
1249 png_ptr->filter_weights[i] =
1250 (png_uint_16)((double)PNG_WEIGHT_FACTOR/filter_weights[i]+0.5);
1251 }
1252 }
1253 }
1254
1255 /* If, in the future, there are other filter methods, this would
1256 * need to be based on png_ptr->filter.
1257 */
1258 if (png_ptr->filter_costs == NULL)
1259 {
Glenn Randers-Pehrson87c6bc92001-04-03 22:43:19 -05001260 png_ptr->filter_costs = (png_uint_16p)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001261 (png_uint_32)(sizeof(png_uint_16) * PNG_FILTER_VALUE_LAST));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001262
Glenn Randers-Pehrson87c6bc92001-04-03 22:43:19 -05001263 png_ptr->inv_filter_costs = (png_uint_16p)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001264 (png_uint_32)(sizeof(png_uint_16) * PNG_FILTER_VALUE_LAST));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001265
1266 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++)
1267 {
1268 png_ptr->inv_filter_costs[i] =
1269 png_ptr->filter_costs[i] = PNG_COST_FACTOR;
1270 }
1271 }
1272
1273 /* Here is where we set the relative costs of the different filters. We
1274 * should take the desired compression level into account when setting
1275 * the costs, so that Paeth, for instance, has a high relative cost at low
1276 * compression levels, while it has a lower relative cost at higher
1277 * compression settings. The filter types are in order of increasing
1278 * relative cost, so it would be possible to do this with an algorithm.
1279 */
1280 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++)
1281 {
1282 if (filter_costs == NULL || filter_costs[i] < 0.0)
1283 {
1284 png_ptr->inv_filter_costs[i] =
1285 png_ptr->filter_costs[i] = PNG_COST_FACTOR;
1286 }
1287 else if (filter_costs[i] >= 1.0)
1288 {
1289 png_ptr->inv_filter_costs[i] =
1290 (png_uint_16)((double)PNG_COST_FACTOR / filter_costs[i] + 0.5);
1291 png_ptr->filter_costs[i] =
1292 (png_uint_16)((double)PNG_COST_FACTOR * filter_costs[i] + 0.5);
1293 }
1294 }
1295}
1296#endif /* PNG_WRITE_WEIGHTED_FILTER_SUPPORTED */
1297
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001298void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001299png_set_compression_level(png_structp png_ptr, int level)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001300{
Andreas Dilger47a0c421997-05-16 02:46:07 -05001301 png_debug(1, "in png_set_compression_level\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001302 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_LEVEL;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001303 png_ptr->zlib_level = level;
1304}
1305
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001306void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001307png_set_compression_mem_level(png_structp png_ptr, int mem_level)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001308{
Andreas Dilger47a0c421997-05-16 02:46:07 -05001309 png_debug(1, "in png_set_compression_mem_level\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001310 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001311 png_ptr->zlib_mem_level = mem_level;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001312}
1313
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001314void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001315png_set_compression_strategy(png_structp png_ptr, int strategy)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001316{
Andreas Dilger47a0c421997-05-16 02:46:07 -05001317 png_debug(1, "in png_set_compression_strategy\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001318 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_STRATEGY;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001319 png_ptr->zlib_strategy = strategy;
1320}
1321
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001322void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001323png_set_compression_window_bits(png_structp png_ptr, int window_bits)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001324{
Guy Schalnate5a37791996-06-05 15:50:50 -05001325 if (window_bits > 15)
1326 png_warning(png_ptr, "Only compression windows <= 32k supported by PNG");
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001327 else if (window_bits < 8)
1328 png_warning(png_ptr, "Only compression windows >= 256 supported by PNG");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001329#ifndef WBITS_8_OK
1330 /* avoid libpng bug with 256-byte windows */
1331 if (window_bits == 8)
1332 {
1333 png_warning(png_ptr, "Compression window is being reset to 512");
1334 window_bits=9;
1335 }
1336#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001337 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001338 png_ptr->zlib_window_bits = window_bits;
1339}
1340
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001341void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06001342png_set_compression_method(png_structp png_ptr, int method)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001343{
Andreas Dilger47a0c421997-05-16 02:46:07 -05001344 png_debug(1, "in png_set_compression_method\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001345 if (method != 8)
1346 png_warning(png_ptr, "Only compression method 8 is supported by PNG");
1347 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_METHOD;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001348 png_ptr->zlib_method = method;
Guy Schalnat0d580581995-07-20 02:43:20 -05001349}
1350
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001351void PNGAPI
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001352png_set_write_status_fn(png_structp png_ptr, png_write_status_ptr write_row_fn)
1353{
1354 png_ptr->write_row_fn = write_row_fn;
1355}
1356
1357#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001358void PNGAPI
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001359png_set_write_user_transform_fn(png_structp png_ptr, png_user_transform_ptr
1360 write_user_transform_fn)
1361{
1362 png_debug(1, "in png_set_write_user_transform_fn\n");
1363 png_ptr->transformations |= PNG_USER_TRANSFORM;
1364 png_ptr->write_user_transform_fn = write_user_transform_fn;
1365}
1366#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001367
1368
1369#if defined(PNG_INFO_IMAGE_SUPPORTED)
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001370void PNGAPI
1371png_write_png(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001372 int transforms, voidp params)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001373{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001374#if defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED)
1375 /* invert the alpha channel from opacity to transparency */
1376 if (transforms & PNG_TRANSFORM_INVERT_ALPHA)
1377 png_set_invert_alpha(png_ptr);
1378#endif
1379
1380 /* Write the file header information. */
1381 png_write_info(png_ptr, info_ptr);
1382
1383 /* ------ these transformations don't touch the info structure ------- */
1384
1385#if defined(PNG_WRITE_INVERT_SUPPORTED)
1386 /* invert monochrome pixels */
1387 if (transforms & PNG_TRANSFORM_INVERT_MONO)
1388 png_set_invert_mono(png_ptr);
1389#endif
1390
1391#if defined(PNG_WRITE_SHIFT_SUPPORTED)
1392 /* Shift the pixels up to a legal bit depth and fill in
1393 * as appropriate to correctly scale the image.
1394 */
1395 if ((transforms & PNG_TRANSFORM_SHIFT)
1396 && (info_ptr->valid & PNG_INFO_sBIT))
1397 png_set_shift(png_ptr, &info_ptr->sig_bit);
1398#endif
1399
1400#if defined(PNG_WRITE_PACK_SUPPORTED)
1401 /* pack pixels into bytes */
1402 if (transforms & PNG_TRANSFORM_PACKING)
1403 png_set_packing(png_ptr);
1404#endif
1405
1406#if defined(PNG_WRITE_SWAP_ALPHA_SUPPORTED)
1407 /* swap location of alpha bytes from ARGB to RGBA */
1408 if (transforms & PNG_TRANSFORM_SWAP_ALPHA)
1409 png_set_swap_alpha(png_ptr);
1410#endif
1411
1412#if defined(PNG_WRITE_FILLER_SUPPORTED)
1413 /* Get rid of filler (OR ALPHA) bytes, pack XRGB/RGBX/ARGB/RGBA into
1414 * RGB (4 channels -> 3 channels). The second parameter is not used.
1415 */
1416 if (transforms & PNG_TRANSFORM_STRIP_FILLER)
1417 png_set_filler(png_ptr, 0, PNG_FILLER_BEFORE);
1418#endif
1419
1420#if defined(PNG_WRITE_BGR_SUPPORTED)
1421 /* flip BGR pixels to RGB */
1422 if (transforms & PNG_TRANSFORM_BGR)
1423 png_set_bgr(png_ptr);
1424#endif
1425
1426#if defined(PNG_WRITE_SWAP_SUPPORTED)
1427 /* swap bytes of 16-bit files to most significant byte first */
1428 if (transforms & PNG_TRANSFORM_SWAP_ENDIAN)
1429 png_set_swap(png_ptr);
1430#endif
1431
1432#if defined(PNG_WRITE_PACKSWAP_SUPPORTED)
1433 /* swap bits of 1, 2, 4 bit packed pixel formats */
1434 if (transforms & PNG_TRANSFORM_PACKSWAP)
1435 png_set_packswap(png_ptr);
1436#endif
1437
1438 /* ----------------------- end of transformations ------------------- */
1439
1440 /* write the bits */
1441 if (info_ptr->valid & PNG_INFO_IDAT)
1442 png_write_image(png_ptr, info_ptr->row_pointers);
1443
1444 /* It is REQUIRED to call this to finish writing the rest of the file */
1445 png_write_end(png_ptr, info_ptr);
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001446
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -05001447 if(transforms == 0 || params == NULL)
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001448 /* quiet compiler warnings */ return;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001449}
1450#endif
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001451#endif /* PNG_WRITE_SUPPORTED */