blob: 59a2f39fa113f9a7367568e681088fd896bb2dc1 [file] [log] [blame]
Andreas Dilger47a0c421997-05-16 02:46:07 -05001
2/* pngwrite.c - general routines to write a PNG file
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003 *
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05004 * 1.0.1c
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06005 * For conditions of distribution and use, see copyright notice in png.h
6 * Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
7 * Copyright (c) 1996, 1997 Andreas Dilger
Glenn Randers-Pehrson2687fcc1998-01-07 20:54:20 -06008 * Copyright (c) 1998, Glenn Randers-Pehrson
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05009 * May 9, 1998
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060010 */
Guy Schalnat0d580581995-07-20 02:43:20 -050011
12/* get internal access to png.h */
13#define PNG_INTERNAL
14#include "png.h"
15
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
19 * after the image data, put it in png_write_end(). I strongly encurage
20 * 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 */
Guy Schalnat0d580581995-07-20 02:43:20 -050025void
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060026png_write_info(png_structp png_ptr, png_infop info_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -050027{
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -060028#if defined(PNG_WRITE_tEXt_SUPPORTED) || defined(PNG_WRITE_zTXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -050029 int i;
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -060030#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -050031
32 png_debug(1, "in png_write_info\n");
Guy Schalnat0d580581995-07-20 02:43:20 -050033 png_write_sig(png_ptr); /* write PNG signature */
34 /* write IHDR information. */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060035 png_write_IHDR(png_ptr, info_ptr->width, info_ptr->height,
36 info_ptr->bit_depth, info_ptr->color_type, info_ptr->compression_type,
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060037 info_ptr->filter_type,
38#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
39 info_ptr->interlace_type);
40#else
41 0);
42#endif
Guy Schalnat0d580581995-07-20 02:43:20 -050043 /* the rest of these check to see if the valid field has the appropriate
44 flag set, and if it does, writes the chunk. */
Guy Schalnat51f0eb41995-09-26 05:22:39 -050045#if defined(PNG_WRITE_gAMA_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060046 if (info_ptr->valid & PNG_INFO_gAMA)
47 png_write_gAMA(png_ptr, info_ptr->gamma);
Guy Schalnat51f0eb41995-09-26 05:22:39 -050048#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060049#if defined(PNG_WRITE_sRGB_SUPPORTED)
50 if (info_ptr->valid & PNG_INFO_sRGB)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -060051 png_write_sRGB(png_ptr, (int)info_ptr->srgb_intent);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060052#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -050053#if defined(PNG_WRITE_sBIT_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060054 if (info_ptr->valid & PNG_INFO_sBIT)
55 png_write_sBIT(png_ptr, &(info_ptr->sig_bit), info_ptr->color_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -050056#endif
57#if defined(PNG_WRITE_cHRM_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060058 if (info_ptr->valid & PNG_INFO_cHRM)
Guy Schalnat0d580581995-07-20 02:43:20 -050059 png_write_cHRM(png_ptr,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060060 info_ptr->x_white, info_ptr->y_white,
61 info_ptr->x_red, info_ptr->y_red,
62 info_ptr->x_green, info_ptr->y_green,
63 info_ptr->x_blue, info_ptr->y_blue);
Guy Schalnat51f0eb41995-09-26 05:22:39 -050064#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060065 if (info_ptr->valid & PNG_INFO_PLTE)
Andreas Dilger47a0c421997-05-16 02:46:07 -050066 png_write_PLTE(png_ptr, info_ptr->palette,
67 (png_uint_32)info_ptr->num_palette);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060068 else if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Guy Schalnate5a37791996-06-05 15:50:50 -050069 png_error(png_ptr, "Valid palette required for paletted images\n");
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -060070
Guy Schalnat51f0eb41995-09-26 05:22:39 -050071#if defined(PNG_WRITE_tRNS_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060072 if (info_ptr->valid & PNG_INFO_tRNS)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -060073 {
74#if defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED)
75 /* invert the alpha channel (in tRNS) */
76 if (png_ptr->transformations & PNG_INVERT_ALPHA &&
77 info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
78 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060079 int j;
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -060080 for (j=0; j<(int)info_ptr->num_trans; j++)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060081 info_ptr->trans[j] = 255 - info_ptr->trans[j];
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -060082 }
83#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060084 png_write_tRNS(png_ptr, info_ptr->trans, &(info_ptr->trans_values),
85 info_ptr->num_trans, info_ptr->color_type);
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -060086 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -050087#endif
88#if defined(PNG_WRITE_bKGD_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060089 if (info_ptr->valid & PNG_INFO_bKGD)
90 png_write_bKGD(png_ptr, &(info_ptr->background), info_ptr->color_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -050091#endif
92#if defined(PNG_WRITE_hIST_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060093 if (info_ptr->valid & PNG_INFO_hIST)
94 png_write_hIST(png_ptr, info_ptr->hist, info_ptr->num_palette);
Guy Schalnat51f0eb41995-09-26 05:22:39 -050095#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -050096#if defined(PNG_WRITE_oFFs_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060097 if (info_ptr->valid & PNG_INFO_oFFs)
98 png_write_oFFs(png_ptr, info_ptr->x_offset, info_ptr->y_offset,
99 info_ptr->offset_unit_type);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500100#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500101#if defined(PNG_WRITE_pCAL_SUPPORTED)
102 if (info_ptr->valid & PNG_INFO_pCAL)
103 png_write_pCAL(png_ptr, info_ptr->pcal_purpose, info_ptr->pcal_X0,
104 info_ptr->pcal_X1, info_ptr->pcal_type, info_ptr->pcal_nparams,
105 info_ptr->pcal_units, info_ptr->pcal_params);
106#endif
107#if defined(PNG_WRITE_pHYs_SUPPORTED)
108 if (info_ptr->valid & PNG_INFO_pHYs)
109 png_write_pHYs(png_ptr, info_ptr->x_pixels_per_unit,
110 info_ptr->y_pixels_per_unit, info_ptr->phys_unit_type);
111#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500112#if defined(PNG_WRITE_tIME_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600113 if (info_ptr->valid & PNG_INFO_tIME)
Guy Schalnate5a37791996-06-05 15:50:50 -0500114 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600115 png_write_tIME(png_ptr, &(info_ptr->mod_time));
Guy Schalnate5a37791996-06-05 15:50:50 -0500116 png_ptr->flags |= PNG_FLAG_WROTE_tIME;
117 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500118#endif
119#if defined(PNG_WRITE_tEXt_SUPPORTED) || defined(PNG_WRITE_zTXt_SUPPORTED)
Guy Schalnate5a37791996-06-05 15:50:50 -0500120 /* Check to see if we need to write text chunks */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500121 for (i = 0; i < info_ptr->num_text; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500122 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500123 png_debug2(2, "Writing header text chunk %d, type %d\n", i,
124 info_ptr->text[i].compression);
125 /* If we want a compressed text chunk */
126 if (info_ptr->text[i].compression >= PNG_TEXT_COMPRESSION_zTXt)
127 {
128#if defined(PNG_WRITE_zTXt_SUPPORTED)
129 /* write compressed chunk */
130 png_write_zTXt(png_ptr, info_ptr->text[i].key,
131 info_ptr->text[i].text, info_ptr->text[i].text_length,
132 info_ptr->text[i].compression);
133#else
134 png_warning(png_ptr, "Unable to write compressed text\n");
135#endif
136 /* Mark this chunk as written */
137 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
138 }
139 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
140 {
141#if defined(PNG_WRITE_tEXt_SUPPORTED)
142 /* write uncompressed chunk */
143 png_write_tEXt(png_ptr, info_ptr->text[i].key,
144 info_ptr->text[i].text, info_ptr->text[i].text_length);
145#else
146 png_warning(png_ptr, "Unable to write uncompressed text\n");
147#endif
148 /* Mark this chunk as written */
149 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
150 }
151 }
152#endif
153}
Guy Schalnat0d580581995-07-20 02:43:20 -0500154
Andreas Dilger47a0c421997-05-16 02:46:07 -0500155/* Writes the end of the PNG file. If you don't want to write comments or
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600156 * time information, you can pass NULL for info. If you already wrote these
157 * in png_write_info(), do not write them again here. If you have long
158 * comments, I suggest writing them here, and compressing them.
159 */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500160void
161png_write_end(png_structp png_ptr, png_infop info_ptr)
162{
163 png_debug(1, "in png_write_end\n");
164 if (!(png_ptr->mode & PNG_HAVE_IDAT))
165 png_error(png_ptr, "No IDATs written into file");
166
167 /* see if user wants us to write information chunks */
168 if (info_ptr != NULL)
169 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600170#if defined(PNG_WRITE_tEXt_SUPPORTED) || defined(PNG_WRITE_zTXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500171 int i; /* local index variable */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600172#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500173#if defined(PNG_WRITE_tIME_SUPPORTED)
174 /* check to see if user has supplied a time chunk */
175 if (info_ptr->valid & PNG_INFO_tIME &&
176 !(png_ptr->flags & PNG_FLAG_WROTE_tIME))
177 png_write_tIME(png_ptr, &(info_ptr->mod_time));
178#endif
179#if defined(PNG_WRITE_tEXt_SUPPORTED) || defined(PNG_WRITE_zTXt_SUPPORTED)
180 /* loop through comment chunks */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600181 for (i = 0; i < info_ptr->num_text; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500182 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500183 png_debug2(2, "Writing trailer text chunk %d, type %d\n", i,
184 info_ptr->text[i].compression);
185 if (info_ptr->text[i].compression >= PNG_TEXT_COMPRESSION_zTXt)
Guy Schalnat0d580581995-07-20 02:43:20 -0500186 {
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500187#if defined(PNG_WRITE_zTXt_SUPPORTED)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600188 /* write compressed chunk */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600189 png_write_zTXt(png_ptr, info_ptr->text[i].key,
190 info_ptr->text[i].text, info_ptr->text[i].text_length,
191 info_ptr->text[i].compression);
Guy Schalnate5a37791996-06-05 15:50:50 -0500192#else
193 png_warning(png_ptr, "Unable to write compressed text\n");
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500194#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500195 /* Mark this chunk as written */
196 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500197 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500198 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
Guy Schalnat0d580581995-07-20 02:43:20 -0500199 {
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500200#if defined(PNG_WRITE_tEXt_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500201 /* write uncompressed chunk */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600202 png_write_tEXt(png_ptr, info_ptr->text[i].key,
203 info_ptr->text[i].text, info_ptr->text[i].text_length);
Guy Schalnate5a37791996-06-05 15:50:50 -0500204#else
205 png_warning(png_ptr, "Unable to write uncompressed text\n");
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500206#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500207
Andreas Dilger47a0c421997-05-16 02:46:07 -0500208 /* Mark this chunk as written */
209 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500210 }
211 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600212#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500213 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500214
215 png_ptr->mode |= PNG_AFTER_IDAT;
216
Andreas Dilger47a0c421997-05-16 02:46:07 -0500217 /* write end of PNG file */
Guy Schalnat0d580581995-07-20 02:43:20 -0500218 png_write_IEND(png_ptr);
219}
220
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600221#if defined(PNG_TIME_RFC1123_SUPPORTED)
222/* Convert the supplied time into an RFC 1123 string suitable for use in
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600223 * a "Creation Time" or other text-based time string.
224 */
225png_charp
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600226png_convert_to_rfc1123(png_structp png_ptr, png_timep ptime)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600227{
Glenn Randers-Pehrson38d73af1998-03-07 21:30:44 -0600228 static PNG_CONST char short_months[12][4] =
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -0600229 {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
230 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600231
232 if (png_ptr->time_buffer == NULL)
233 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600234 png_ptr->time_buffer = (png_charp)png_malloc(png_ptr, (png_uint_32)(29*
235 sizeof(char)));
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600236 }
237
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600238#ifdef USE_FAR_KEYWORD
239 {
240 char near_time_buf[29];
241 sprintf(near_time_buf, "%d %s %d %02d:%02d:%02d +0000",
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500242 ptime->day % 32, short_months[(ptime->month - 1) % 12],
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600243 ptime->year, ptime->hour % 24, ptime->minute % 60,
244 ptime->second % 61);
245 png_memcpy(png_ptr->time_buffer, near_time_buf,
246 29*sizeof(char));
247 }
248#else
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600249 sprintf(png_ptr->time_buffer, "%d %s %d %02d:%02d:%02d +0000",
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500250 ptime->day % 32, short_months[(ptime->month - 1) % 12],
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600251 ptime->year, ptime->hour % 24, ptime->minute % 60,
252 ptime->second % 61);
253#endif
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600254 return ((png_charp)png_ptr->time_buffer);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600255}
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600256#endif /* PNG_TIME_RFC1123_SUPPORTED */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600257
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500258#if defined(PNG_WRITE_tIME_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500259void
Guy Schalnat6d764711995-12-19 03:22:19 -0600260png_convert_from_struct_tm(png_timep ptime, struct tm FAR * ttime)
Guy Schalnat0d580581995-07-20 02:43:20 -0500261{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500262 png_debug(1, "in png_convert_from_struct_tm\n");
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600263 ptime->year = (png_uint_16)(1900 + ttime->tm_year);
264 ptime->month = (png_byte)(ttime->tm_mon + 1);
265 ptime->day = (png_byte)ttime->tm_mday;
266 ptime->hour = (png_byte)ttime->tm_hour;
267 ptime->minute = (png_byte)ttime->tm_min;
268 ptime->second = (png_byte)ttime->tm_sec;
Guy Schalnat0d580581995-07-20 02:43:20 -0500269}
270
271void
Guy Schalnat6d764711995-12-19 03:22:19 -0600272png_convert_from_time_t(png_timep ptime, time_t ttime)
Guy Schalnat0d580581995-07-20 02:43:20 -0500273{
274 struct tm *tbuf;
275
Andreas Dilger47a0c421997-05-16 02:46:07 -0500276 png_debug(1, "in png_convert_from_time_t\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500277 tbuf = gmtime(&ttime);
278 png_convert_from_struct_tm(ptime, tbuf);
279}
Guy Schalnat6d764711995-12-19 03:22:19 -0600280#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500281
Andreas Dilger47a0c421997-05-16 02:46:07 -0500282/* Initialize png_ptr structure, and allocate any memory needed */
Guy Schalnate5a37791996-06-05 15:50:50 -0500283png_structp
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -0500284png_create_write_struct(png_const_charp user_png_ver, png_voidp error_ptr,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600285 png_error_ptr error_fn, png_error_ptr warn_fn)
Guy Schalnat0d580581995-07-20 02:43:20 -0500286{
Guy Schalnate5a37791996-06-05 15:50:50 -0500287 png_structp png_ptr;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600288#ifdef USE_FAR_KEYWORD
289 jmp_buf jmpbuf;
290#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500291 png_debug(1, "in png_create_write_struct\n");
Guy Schalnate5a37791996-06-05 15:50:50 -0500292 if ((png_ptr = (png_structp)png_create_struct(PNG_STRUCT_PNG)) == NULL)
293 {
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600294 return ((png_structp)NULL);
Guy Schalnate5a37791996-06-05 15:50:50 -0500295 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600296#ifdef USE_FAR_KEYWORD
297 if (setjmp(jmpbuf))
298#else
Guy Schalnate5a37791996-06-05 15:50:50 -0500299 if (setjmp(png_ptr->jmpbuf))
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600300#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500301 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600302 png_free(png_ptr, png_ptr->zbuf);
Guy Schalnate5a37791996-06-05 15:50:50 -0500303 png_destroy_struct(png_ptr);
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600304 return ((png_structp)NULL);
Guy Schalnate5a37791996-06-05 15:50:50 -0500305 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600306#ifdef USE_FAR_KEYWORD
307 png_memcpy(png_ptr->jmpbuf,jmpbuf,sizeof(jmp_buf));
308#endif
309 png_set_error_fn(png_ptr, error_ptr, error_fn, warn_fn);
Guy Schalnate5a37791996-06-05 15:50:50 -0500310
Andreas Dilger47a0c421997-05-16 02:46:07 -0500311 /* Libpng 0.90 and later are binary incompatible with libpng 0.89, so
312 * we must recompile any applications that use any older library version.
313 * For versions after libpng 1.0, we will be compatible, so we need
314 * only check the first digit.
315 */
316 if (user_png_ver == NULL || user_png_ver[0] != png_libpng_ver[0] ||
317 (png_libpng_ver[0] == '0' && user_png_ver[2] < '9'))
Guy Schalnate5a37791996-06-05 15:50:50 -0500318 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500319 png_error(png_ptr,
320 "Incompatible libpng version in application and library");
Guy Schalnate5a37791996-06-05 15:50:50 -0500321 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500322
323 /* initialize zbuf - compression buffer */
324 png_ptr->zbuf_size = PNG_ZBUF_SIZE;
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600325 png_ptr->zbuf = (png_bytep)png_malloc(png_ptr,
326 (png_uint_32)png_ptr->zbuf_size);
Guy Schalnate5a37791996-06-05 15:50:50 -0500327
328 png_set_write_fn(png_ptr, NULL, NULL, NULL);
329
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600330#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
331 png_set_filter_heuristics(png_ptr, PNG_FILTER_HEURISTIC_DEFAULT,
332 1, NULL, NULL);
333#endif
334
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600335 return ((png_structp)png_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500336}
337
338
Andreas Dilger47a0c421997-05-16 02:46:07 -0500339/* Initialize png_ptr structure, and allocate any memory needed */
Guy Schalnate5a37791996-06-05 15:50:50 -0500340void
341png_write_init(png_structp png_ptr)
342{
343 jmp_buf tmp_jmp; /* to save current jump buffer */
344
Andreas Dilger47a0c421997-05-16 02:46:07 -0500345 png_debug(1, "in png_write_init\n");
Guy Schalnate5a37791996-06-05 15:50:50 -0500346 /* save jump buffer and error functions */
347 png_memcpy(tmp_jmp, png_ptr->jmpbuf, sizeof (jmp_buf));
348
349 /* reset all variables to 0 */
350 png_memset(png_ptr, 0, sizeof (png_struct));
351
352 /* restore jump buffer */
353 png_memcpy(png_ptr->jmpbuf, tmp_jmp, sizeof (jmp_buf));
354
355 /* initialize zbuf - compression buffer */
356 png_ptr->zbuf_size = PNG_ZBUF_SIZE;
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600357 png_ptr->zbuf = (png_bytep)png_malloc(png_ptr,
358 (png_uint_32)png_ptr->zbuf_size);
Guy Schalnate5a37791996-06-05 15:50:50 -0500359 png_set_write_fn(png_ptr, NULL, NULL, NULL);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500360
361#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
362 png_set_filter_heuristics(png_ptr, PNG_FILTER_HEURISTIC_DEFAULT,
363 1, NULL, NULL);
364#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500365}
366
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600367/* Write a few rows of image data. If the image is interlaced,
368 * either you will have to write the 7 sub images, or, if you
369 * have called png_set_interlace_handling(), you will have to
370 * "write" the image seven times.
371 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500372void
Guy Schalnat6d764711995-12-19 03:22:19 -0600373png_write_rows(png_structp png_ptr, png_bytepp row,
Guy Schalnat0d580581995-07-20 02:43:20 -0500374 png_uint_32 num_rows)
375{
376 png_uint_32 i; /* row counter */
Guy Schalnat6d764711995-12-19 03:22:19 -0600377 png_bytepp rp; /* row pointer */
Guy Schalnat0d580581995-07-20 02:43:20 -0500378
Andreas Dilger47a0c421997-05-16 02:46:07 -0500379 png_debug(1, "in png_write_rows\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500380 /* loop through the rows */
381 for (i = 0, rp = row; i < num_rows; i++, rp++)
382 {
383 png_write_row(png_ptr, *rp);
384 }
385}
386
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600387/* Write the image. You only need to call this function once, even
388 * if you are writing an interlaced image.
389 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500390void
Guy Schalnat6d764711995-12-19 03:22:19 -0600391png_write_image(png_structp png_ptr, png_bytepp image)
Guy Schalnat0d580581995-07-20 02:43:20 -0500392{
393 png_uint_32 i; /* row index */
394 int pass, num_pass; /* pass variables */
Guy Schalnat6d764711995-12-19 03:22:19 -0600395 png_bytepp rp; /* points to current row */
Guy Schalnat0d580581995-07-20 02:43:20 -0500396
Andreas Dilger47a0c421997-05-16 02:46:07 -0500397 png_debug(1, "in png_write_image\n");
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600398#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500399 /* intialize interlace handling. If image is not interlaced,
400 this will set pass to 1 */
401 num_pass = png_set_interlace_handling(png_ptr);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600402#else
403 num_pass = 1;
404#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500405 /* loop through passes */
406 for (pass = 0; pass < num_pass; pass++)
407 {
408 /* loop through image */
409 for (i = 0, rp = image; i < png_ptr->height; i++, rp++)
410 {
411 png_write_row(png_ptr, *rp);
412 }
413 }
414}
415
Guy Schalnate5a37791996-06-05 15:50:50 -0500416/* called by user to write a row of image data */
Guy Schalnat0d580581995-07-20 02:43:20 -0500417void
Guy Schalnat6d764711995-12-19 03:22:19 -0600418png_write_row(png_structp png_ptr, png_bytep row)
Guy Schalnat0d580581995-07-20 02:43:20 -0500419{
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600420 png_debug2(1, "in png_write_row (row %ld, pass %d)\n",
421 png_ptr->row_number, png_ptr->pass);
Guy Schalnat0d580581995-07-20 02:43:20 -0500422 /* initialize transformations and other stuff if first time */
Guy Schalnat6d764711995-12-19 03:22:19 -0600423 if (png_ptr->row_number == 0 && png_ptr->pass == 0)
Guy Schalnat0d580581995-07-20 02:43:20 -0500424 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500425 /* check for transforms that have been set but were defined out */
426#if !defined(PNG_WRITE_INVERT_SUPPORTED) && defined(PNG_READ_INVERT_SUPPORTED)
427 if (png_ptr->transformations & PNG_INVERT_MONO)
428 png_warning(png_ptr, "PNG_WRITE_INVERT_SUPPORTED is not defined.");
429#endif
430#if !defined(PNG_WRITE_FILLER_SUPPORTED) && defined(PNG_READ_FILLER_SUPPORTED)
431 if (png_ptr->transformations & PNG_FILLER)
432 png_warning(png_ptr, "PNG_WRITE_FILLER_SUPPORTED is not defined.");
433#endif
434#if !defined(PNG_WRITE_PACKSWAP_SUPPORTED) && defined(PNG_READ_PACKSWAP_SUPPORTED)
435 if (png_ptr->transformations & PNG_PACKSWAP)
436 png_warning(png_ptr, "PNG_WRITE_PACKSWAP_SUPPORTED is not defined.");
437#endif
438#if !defined(PNG_WRITE_PACK_SUPPORTED) && defined(PNG_READ_PACK_SUPPORTED)
439 if (png_ptr->transformations & PNG_PACK)
440 png_warning(png_ptr, "PNG_WRITE_PACK_SUPPORTED is not defined.");
441#endif
442#if !defined(PNG_WRITE_SHIFT_SUPPORTED) && defined(PNG_READ_SHIFT_SUPPORTED)
443 if (png_ptr->transformations & PNG_SHIFT)
444 png_warning(png_ptr, "PNG_WRITE_SHIFT_SUPPORTED is not defined.");
445#endif
446#if !defined(PNG_WRITE_BGR_SUPPORTED) && defined(PNG_READ_BGR_SUPPORTED)
447 if (png_ptr->transformations & PNG_BGR)
448 png_warning(png_ptr, "PNG_WRITE_BGR_SUPPORTED is not defined.");
449#endif
450#if !defined(PNG_WRITE_SWAP_SUPPORTED) && defined(PNG_READ_SWAP_SUPPORTED)
451 if (png_ptr->transformations & PNG_SWAP_BYTES)
452 png_warning(png_ptr, "PNG_WRITE_SWAP_SUPPORTED is not defined.");
453#endif
454
Guy Schalnat0d580581995-07-20 02:43:20 -0500455 png_write_start_row(png_ptr);
456 }
457
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500458#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500459 /* if interlaced and not interested in row, return */
460 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
461 {
462 switch (png_ptr->pass)
463 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600464 case 0:
Guy Schalnat0d580581995-07-20 02:43:20 -0500465 if (png_ptr->row_number & 7)
466 {
467 png_write_finish_row(png_ptr);
468 return;
469 }
470 break;
471 case 1:
472 if ((png_ptr->row_number & 7) || png_ptr->width < 5)
473 {
474 png_write_finish_row(png_ptr);
475 return;
476 }
477 break;
478 case 2:
479 if ((png_ptr->row_number & 7) != 4)
480 {
481 png_write_finish_row(png_ptr);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600482 return;
Guy Schalnat0d580581995-07-20 02:43:20 -0500483 }
484 break;
485 case 3:
486 if ((png_ptr->row_number & 3) || png_ptr->width < 3)
487 {
488 png_write_finish_row(png_ptr);
489 return;
490 }
491 break;
492 case 4:
493 if ((png_ptr->row_number & 3) != 2)
494 {
495 png_write_finish_row(png_ptr);
496 return;
497 }
498 break;
499 case 5:
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600500 if ((png_ptr->row_number & 1) || png_ptr->width < 2)
Guy Schalnat0d580581995-07-20 02:43:20 -0500501 {
502 png_write_finish_row(png_ptr);
503 return;
504 }
505 break;
506 case 6:
507 if (!(png_ptr->row_number & 1))
508 {
509 png_write_finish_row(png_ptr);
510 return;
511 }
512 break;
513 }
514 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600515#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500516
517 /* set up row info for transformations */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600518 png_ptr->row_info.color_type = png_ptr->color_type;
Guy Schalnat0d580581995-07-20 02:43:20 -0500519 png_ptr->row_info.width = png_ptr->usr_width;
520 png_ptr->row_info.channels = png_ptr->usr_channels;
521 png_ptr->row_info.bit_depth = png_ptr->usr_bit_depth;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600522 png_ptr->row_info.pixel_depth = (png_byte)(png_ptr->row_info.bit_depth *
523 png_ptr->row_info.channels);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600524
Guy Schalnat0d580581995-07-20 02:43:20 -0500525 png_ptr->row_info.rowbytes = ((png_ptr->row_info.width *
526 (png_uint_32)png_ptr->row_info.pixel_depth + 7) >> 3);
527
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600528 png_debug1(3, "row_info->color_type = %d\n", png_ptr->row_info.color_type);
529 png_debug1(3, "row_info->width = %d\n", png_ptr->row_info.width);
530 png_debug1(3, "row_info->channels = %d\n", png_ptr->row_info.channels);
531 png_debug1(3, "row_info->bit_depth = %d\n", png_ptr->row_info.bit_depth);
532 png_debug1(3, "row_info->pixel_depth = %d\n", png_ptr->row_info.pixel_depth);
533 png_debug1(3, "row_info->rowbytes = %d\n", png_ptr->row_info.rowbytes);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500534
535 /* Copy user's row into buffer, leaving room for filter byte. */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600536 png_memcpy_check(png_ptr, png_ptr->row_buf + 1, row,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600537 png_ptr->row_info.rowbytes);
Guy Schalnat0d580581995-07-20 02:43:20 -0500538
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500539#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500540 /* handle interlacing */
541 if (png_ptr->interlaced && png_ptr->pass < 6 &&
542 (png_ptr->transformations & PNG_INTERLACE))
543 {
544 png_do_write_interlace(&(png_ptr->row_info),
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600545 png_ptr->row_buf + 1, png_ptr->pass);
Guy Schalnat0d580581995-07-20 02:43:20 -0500546 /* this should always get caught above, but still ... */
547 if (!(png_ptr->row_info.width))
548 {
549 png_write_finish_row(png_ptr);
550 return;
551 }
552 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600553#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500554
555 /* handle other transformations */
556 if (png_ptr->transformations)
557 png_do_write_transformations(png_ptr);
558
Andreas Dilger47a0c421997-05-16 02:46:07 -0500559 /* Find a filter if necessary, filter the row and write it out. */
Guy Schalnate5a37791996-06-05 15:50:50 -0500560 png_write_find_filter(png_ptr, &(png_ptr->row_info));
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600561
562 if (png_ptr->write_row_fn != NULL)
563 (*(png_ptr->write_row_fn))(png_ptr, png_ptr->row_number, png_ptr->pass);
Guy Schalnat0d580581995-07-20 02:43:20 -0500564}
565
Guy Schalnat0f716451995-11-28 11:22:13 -0600566#if defined(PNG_WRITE_FLUSH_SUPPORTED)
567/* Set the automatic flush interval or 0 to turn flushing off */
568void
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600569png_set_flush(png_structp png_ptr, int nrows)
Guy Schalnat0f716451995-11-28 11:22:13 -0600570{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500571 png_debug(1, "in png_set_flush\n");
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600572 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
Guy Schalnat0f716451995-11-28 11:22:13 -0600573}
574
575/* flush the current output buffers now */
576void
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600577png_write_flush(png_structp png_ptr)
Guy Schalnat0f716451995-11-28 11:22:13 -0600578{
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600579 int wrote_IDAT;
Guy Schalnat0f716451995-11-28 11:22:13 -0600580
Andreas Dilger47a0c421997-05-16 02:46:07 -0500581 png_debug(1, "in png_write_flush\n");
Guy Schalnate5a37791996-06-05 15:50:50 -0500582 /* We have already written out all of the data */
583 if (png_ptr->row_number >= png_ptr->num_rows)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600584 return;
Guy Schalnat0f716451995-11-28 11:22:13 -0600585
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600586 do
587 {
588 int ret;
Guy Schalnat0f716451995-11-28 11:22:13 -0600589
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600590 /* compress the data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600591 ret = deflate(&png_ptr->zstream, Z_SYNC_FLUSH);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600592 wrote_IDAT = 0;
Guy Schalnat0f716451995-11-28 11:22:13 -0600593
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600594 /* check for compression errors */
595 if (ret != Z_OK)
596 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500597 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600598 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600599 else
600 png_error(png_ptr, "zlib error");
601 }
Guy Schalnat0f716451995-11-28 11:22:13 -0600602
Andreas Dilger47a0c421997-05-16 02:46:07 -0500603 if (!(png_ptr->zstream.avail_out))
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600604 {
605 /* write the IDAT and reset the zlib output buffer */
606 png_write_IDAT(png_ptr, png_ptr->zbuf,
607 png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600608 png_ptr->zstream.next_out = png_ptr->zbuf;
609 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600610 wrote_IDAT = 1;
611 }
612 } while(wrote_IDAT == 1);
Guy Schalnat0f716451995-11-28 11:22:13 -0600613
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600614 /* If there is any data left to be output, write it into a new IDAT */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600615 if (png_ptr->zbuf_size != png_ptr->zstream.avail_out)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600616 {
617 /* write the IDAT and reset the zlib output buffer */
618 png_write_IDAT(png_ptr, png_ptr->zbuf,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600619 png_ptr->zbuf_size - png_ptr->zstream.avail_out);
620 png_ptr->zstream.next_out = png_ptr->zbuf;
621 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600622 }
623 png_ptr->flush_rows = 0;
624 png_flush(png_ptr);
Guy Schalnat0f716451995-11-28 11:22:13 -0600625}
626#endif /* PNG_WRITE_FLUSH_SUPPORTED */
627
Guy Schalnate5a37791996-06-05 15:50:50 -0500628/* free all memory used by the write */
629void
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600630png_destroy_write_struct(png_structpp png_ptr_ptr, png_infopp info_ptr_ptr)
Guy Schalnate5a37791996-06-05 15:50:50 -0500631{
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600632 png_structp png_ptr = NULL;
633 png_infop info_ptr = NULL;
634
Andreas Dilger47a0c421997-05-16 02:46:07 -0500635 png_debug(1, "in png_destroy_write_struct\n");
636 if (png_ptr_ptr != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600637 png_ptr = *png_ptr_ptr;
638
Andreas Dilger47a0c421997-05-16 02:46:07 -0500639 if (info_ptr_ptr != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600640 info_ptr = *info_ptr_ptr;
641
Andreas Dilger47a0c421997-05-16 02:46:07 -0500642 if (info_ptr != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500643 {
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600644#ifdef PNG_WRITE_tEXt_SUPPORTED
645 png_free(png_ptr, info_ptr->text);
646#endif
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600647#if defined(PNG_READ_pCAL_SUPPORTED)
648 png_free(png_ptr, info_ptr->pcal_purpose);
649 png_free(png_ptr, info_ptr->pcal_units);
650 if (info_ptr->pcal_params != NULL)
651 {
652 int i;
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600653 for (i = 0; i < (int)info_ptr->pcal_nparams; i++)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600654 {
655 png_free(png_ptr, info_ptr->pcal_params[i]);
656 }
657 png_free(png_ptr, info_ptr->pcal_params);
658 }
659#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600660 png_destroy_struct((png_voidp)info_ptr);
661 *info_ptr_ptr = (png_infop)NULL;
Guy Schalnate5a37791996-06-05 15:50:50 -0500662 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600663
Andreas Dilger47a0c421997-05-16 02:46:07 -0500664 if (png_ptr != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500665 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600666 png_write_destroy(png_ptr);
667 png_destroy_struct((png_voidp)png_ptr);
668 *png_ptr_ptr = (png_structp)NULL;
Guy Schalnate5a37791996-06-05 15:50:50 -0500669 }
670}
671
672
Andreas Dilger47a0c421997-05-16 02:46:07 -0500673/* Free any memory used in png_ptr struct (old method) */
Guy Schalnat0d580581995-07-20 02:43:20 -0500674void
Guy Schalnat6d764711995-12-19 03:22:19 -0600675png_write_destroy(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500676{
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600677 jmp_buf tmp_jmp; /* save jump buffer */
Guy Schalnate5a37791996-06-05 15:50:50 -0500678 png_error_ptr error_fn;
679 png_error_ptr warning_fn;
680 png_voidp error_ptr;
Guy Schalnat0d580581995-07-20 02:43:20 -0500681
Andreas Dilger47a0c421997-05-16 02:46:07 -0500682 png_debug(1, "in png_write_destroy\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500683 /* free any memory zlib uses */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600684 deflateEnd(&png_ptr->zstream);
Guy Schalnate5a37791996-06-05 15:50:50 -0500685
Guy Schalnat0d580581995-07-20 02:43:20 -0500686 /* free our memory. png_free checks NULL for us. */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600687 png_free(png_ptr, png_ptr->zbuf);
688 png_free(png_ptr, png_ptr->row_buf);
689 png_free(png_ptr, png_ptr->prev_row);
690 png_free(png_ptr, png_ptr->sub_row);
691 png_free(png_ptr, png_ptr->up_row);
692 png_free(png_ptr, png_ptr->avg_row);
693 png_free(png_ptr, png_ptr->paeth_row);
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600694#if defined(PNG_TIME_RFC1123_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600695 png_free(png_ptr, png_ptr->time_buffer);
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600696#endif /* PNG_TIME_RFC1123_SUPPORTED */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500697#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
698 png_free(png_ptr, png_ptr->prev_filters);
699 png_free(png_ptr, png_ptr->filter_weights);
700 png_free(png_ptr, png_ptr->inv_filter_weights);
701 png_free(png_ptr, png_ptr->filter_costs);
702 png_free(png_ptr, png_ptr->inv_filter_costs);
703#endif /* PNG_WRITE_WEIGHTED_FILTER_SUPPORTED */
Guy Schalnate5a37791996-06-05 15:50:50 -0500704
Guy Schalnat0d580581995-07-20 02:43:20 -0500705 /* reset structure */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500706 png_memcpy(tmp_jmp, png_ptr->jmpbuf, sizeof (jmp_buf));
Guy Schalnate5a37791996-06-05 15:50:50 -0500707
708 error_fn = png_ptr->error_fn;
709 warning_fn = png_ptr->warning_fn;
710 error_ptr = png_ptr->error_ptr;
711
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500712 png_memset(png_ptr, 0, sizeof (png_struct));
Guy Schalnate5a37791996-06-05 15:50:50 -0500713
714 png_ptr->error_fn = error_fn;
715 png_ptr->warning_fn = warning_fn;
716 png_ptr->error_ptr = error_ptr;
717
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500718 png_memcpy(png_ptr->jmpbuf, tmp_jmp, sizeof (jmp_buf));
719}
Guy Schalnate5a37791996-06-05 15:50:50 -0500720
Andreas Dilger47a0c421997-05-16 02:46:07 -0500721/* Allow the application to select one or more row filters to use. */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500722void
Guy Schalnate5a37791996-06-05 15:50:50 -0500723png_set_filter(png_structp png_ptr, int method, int filters)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500724{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500725 png_debug(1, "in png_set_filter\n");
726 /* We allow 'method' only for future expansion of the base filter method. */
727 if (method == PNG_FILTER_TYPE_BASE)
Guy Schalnate5a37791996-06-05 15:50:50 -0500728 {
729 switch (filters & (PNG_ALL_FILTERS | 0x07))
730 {
731 case 5:
732 case 6:
Andreas Dilger47a0c421997-05-16 02:46:07 -0500733 case 7: png_warning(png_ptr, "Unknown row filter for method 0");
734 case PNG_FILTER_VALUE_NONE: png_ptr->do_filter=PNG_FILTER_NONE; break;
735 case PNG_FILTER_VALUE_SUB: png_ptr->do_filter=PNG_FILTER_SUB; break;
736 case PNG_FILTER_VALUE_UP: png_ptr->do_filter=PNG_FILTER_UP; break;
737 case PNG_FILTER_VALUE_AVG: png_ptr->do_filter=PNG_FILTER_AVG; break;
738 case PNG_FILTER_VALUE_PAETH: png_ptr->do_filter=PNG_FILTER_PAETH;break;
Guy Schalnate5a37791996-06-05 15:50:50 -0500739 default: png_ptr->do_filter = (png_byte)filters; break;
740 }
741
Andreas Dilger47a0c421997-05-16 02:46:07 -0500742 /* If we have allocated the row_buf, this means we have already started
743 * with the image and we should have allocated all of the filter buffers
744 * that have been selected. If prev_row isn't already allocated, then
745 * it is too late to start using the filters that need it, since we
746 * will be missing the data in the previous row. If an application
747 * wants to start and stop using particular filters during compression,
748 * it should start out with all of the filters, and then add and
749 * remove them after the start of compression.
Guy Schalnate5a37791996-06-05 15:50:50 -0500750 */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500751 if (png_ptr->row_buf != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500752 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500753 if (png_ptr->do_filter & PNG_FILTER_SUB && png_ptr->sub_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500754 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500755 png_ptr->sub_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600756 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500757 png_ptr->sub_row[0] = PNG_FILTER_VALUE_SUB;
Guy Schalnate5a37791996-06-05 15:50:50 -0500758 }
759
Andreas Dilger47a0c421997-05-16 02:46:07 -0500760 if (png_ptr->do_filter & PNG_FILTER_UP && png_ptr->up_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500761 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500762 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500763 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500764 png_warning(png_ptr, "Can't add Up filter after starting");
Guy Schalnate5a37791996-06-05 15:50:50 -0500765 png_ptr->do_filter &= ~PNG_FILTER_UP;
766 }
767 else
768 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500769 png_ptr->up_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600770 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500771 png_ptr->up_row[0] = PNG_FILTER_VALUE_UP;
Guy Schalnate5a37791996-06-05 15:50:50 -0500772 }
773 }
774
Andreas Dilger47a0c421997-05-16 02:46:07 -0500775 if (png_ptr->do_filter & PNG_FILTER_AVG && png_ptr->avg_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500776 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500777 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500778 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500779 png_warning(png_ptr, "Can't add Average filter after starting");
Guy Schalnate5a37791996-06-05 15:50:50 -0500780 png_ptr->do_filter &= ~PNG_FILTER_AVG;
781 }
782 else
783 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500784 png_ptr->avg_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600785 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500786 png_ptr->avg_row[0] = PNG_FILTER_VALUE_AVG;
Guy Schalnate5a37791996-06-05 15:50:50 -0500787 }
788 }
789
Andreas Dilger47a0c421997-05-16 02:46:07 -0500790 if (png_ptr->do_filter & PNG_FILTER_PAETH &&
791 png_ptr->paeth_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500792 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500793 if (png_ptr->prev_row == NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500794 {
795 png_warning(png_ptr, "Can't add Paeth filter after starting");
796 png_ptr->do_filter &= ~PNG_FILTER_PAETH;
797 }
798 else
799 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600800 png_ptr->paeth_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600801 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500802 png_ptr->paeth_row[0] = PNG_FILTER_VALUE_PAETH;
Guy Schalnate5a37791996-06-05 15:50:50 -0500803 }
804 }
805
806 if (png_ptr->do_filter == PNG_NO_FILTERS)
807 png_ptr->do_filter = PNG_FILTER_NONE;
808 }
809 }
810 else
Andreas Dilger47a0c421997-05-16 02:46:07 -0500811 png_error(png_ptr, "Unknown custom filter method");
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500812}
813
Andreas Dilger47a0c421997-05-16 02:46:07 -0500814/* This allows us to influence the way in which libpng chooses the "best"
815 * filter for the current scanline. While the "minimum-sum-of-absolute-
816 * differences metric is relatively fast and effective, there is some
817 * question as to whether it can be improved upon by trying to keep the
818 * filtered data going to zlib more consistent, hopefully resulting in
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600819 * better compression.
820 */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500821#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED) /* GRR 970116 */
822void
823png_set_filter_heuristics(png_structp png_ptr, int heuristic_method,
824 int num_weights, png_doublep filter_weights,
825 png_doublep filter_costs)
826{
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600827#if defined(PNG_WRITE_tEXt_SUPPORTED) || defined(PNG_WRITE_zTXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500828 int i;
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600829#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500830
831 png_debug(1, "in png_set_filter_heuristics\n");
832 if (heuristic_method >= PNG_FILTER_HEURISTIC_LAST)
833 {
834 png_warning(png_ptr, "Unknown filter heuristic method");
835 return;
836 }
837
838 if (heuristic_method == PNG_FILTER_HEURISTIC_DEFAULT)
839 {
840 heuristic_method = PNG_FILTER_HEURISTIC_UNWEIGHTED;
841 }
842
843 if (num_weights < 0 || filter_weights == NULL ||
844 heuristic_method == PNG_FILTER_HEURISTIC_UNWEIGHTED)
845 {
846 num_weights = 0;
847 }
848
849 png_ptr->num_prev_filters = num_weights;
850 png_ptr->heuristic_method = heuristic_method;
851
852 if (num_weights > 0)
853 {
854 if (png_ptr->prev_filters == NULL)
855 {
856 png_ptr->prev_filters = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600857 (png_uint_32)(sizeof(png_byte) * num_weights));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500858
859 /* To make sure that the weighting starts out fairly */
860 for (i = 0; i < num_weights; i++)
861 {
862 png_ptr->prev_filters[i] = 255;
863 }
864 }
865
866 if (png_ptr->filter_weights == NULL)
867 {
Glenn Randers-Pehrson983ec161998-03-07 11:24:03 -0600868 png_ptr->filter_weights = (png_uint_16p) png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600869 (png_uint_32)(sizeof(png_uint_16) * num_weights));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500870
Glenn Randers-Pehrson983ec161998-03-07 11:24:03 -0600871 png_ptr->inv_filter_weights = (png_uint_16p) png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600872 (png_uint_32)(sizeof(png_uint_16) * num_weights));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500873
874 for (i = 0; i < num_weights; i++)
875 {
876 png_ptr->inv_filter_weights[i] =
877 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
878 }
879 }
880
881 for (i = 0; i < num_weights; i++)
882 {
883 if (filter_weights[i] < 0.0)
884 {
885 png_ptr->inv_filter_weights[i] =
886 png_ptr->filter_weights[i] = PNG_WEIGHT_FACTOR;
887 }
888 else
889 {
890 png_ptr->inv_filter_weights[i] =
891 (png_uint_16)((double)PNG_WEIGHT_FACTOR*filter_weights[i]+0.5);
892 png_ptr->filter_weights[i] =
893 (png_uint_16)((double)PNG_WEIGHT_FACTOR/filter_weights[i]+0.5);
894 }
895 }
896 }
897
898 /* If, in the future, there are other filter methods, this would
899 * need to be based on png_ptr->filter.
900 */
901 if (png_ptr->filter_costs == NULL)
902 {
Glenn Randers-Pehrson983ec161998-03-07 11:24:03 -0600903 png_ptr->filter_costs = (png_uint_16p) png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600904 (png_uint_32)(sizeof(png_uint_16) * PNG_FILTER_VALUE_LAST));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500905
Glenn Randers-Pehrson983ec161998-03-07 11:24:03 -0600906 png_ptr->inv_filter_costs = (png_uint_16p) png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600907 (png_uint_32)(sizeof(png_uint_16) * PNG_FILTER_VALUE_LAST));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500908
909 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++)
910 {
911 png_ptr->inv_filter_costs[i] =
912 png_ptr->filter_costs[i] = PNG_COST_FACTOR;
913 }
914 }
915
916 /* Here is where we set the relative costs of the different filters. We
917 * should take the desired compression level into account when setting
918 * the costs, so that Paeth, for instance, has a high relative cost at low
919 * compression levels, while it has a lower relative cost at higher
920 * compression settings. The filter types are in order of increasing
921 * relative cost, so it would be possible to do this with an algorithm.
922 */
923 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++)
924 {
925 if (filter_costs == NULL || filter_costs[i] < 0.0)
926 {
927 png_ptr->inv_filter_costs[i] =
928 png_ptr->filter_costs[i] = PNG_COST_FACTOR;
929 }
930 else if (filter_costs[i] >= 1.0)
931 {
932 png_ptr->inv_filter_costs[i] =
933 (png_uint_16)((double)PNG_COST_FACTOR / filter_costs[i] + 0.5);
934 png_ptr->filter_costs[i] =
935 (png_uint_16)((double)PNG_COST_FACTOR * filter_costs[i] + 0.5);
936 }
937 }
938}
939#endif /* PNG_WRITE_WEIGHTED_FILTER_SUPPORTED */
940
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500941void
Guy Schalnat6d764711995-12-19 03:22:19 -0600942png_set_compression_level(png_structp png_ptr, int level)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500943{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500944 png_debug(1, "in png_set_compression_level\n");
Guy Schalnate5a37791996-06-05 15:50:50 -0500945 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_LEVEL;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500946 png_ptr->zlib_level = level;
947}
948
949void
Guy Schalnat6d764711995-12-19 03:22:19 -0600950png_set_compression_mem_level(png_structp png_ptr, int mem_level)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500951{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500952 png_debug(1, "in png_set_compression_mem_level\n");
Guy Schalnate5a37791996-06-05 15:50:50 -0500953 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600954 png_ptr->zlib_mem_level = mem_level;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500955}
956
957void
Guy Schalnat6d764711995-12-19 03:22:19 -0600958png_set_compression_strategy(png_structp png_ptr, int strategy)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500959{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500960 png_debug(1, "in png_set_compression_strategy\n");
Guy Schalnate5a37791996-06-05 15:50:50 -0500961 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_STRATEGY;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500962 png_ptr->zlib_strategy = strategy;
963}
964
965void
Guy Schalnat6d764711995-12-19 03:22:19 -0600966png_set_compression_window_bits(png_structp png_ptr, int window_bits)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500967{
Guy Schalnate5a37791996-06-05 15:50:50 -0500968 if (window_bits > 15)
969 png_warning(png_ptr, "Only compression windows <= 32k supported by PNG");
970 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500971 png_ptr->zlib_window_bits = window_bits;
972}
973
974void
Guy Schalnat6d764711995-12-19 03:22:19 -0600975png_set_compression_method(png_structp png_ptr, int method)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500976{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500977 png_debug(1, "in png_set_compression_method\n");
Guy Schalnate5a37791996-06-05 15:50:50 -0500978 if (method != 8)
979 png_warning(png_ptr, "Only compression method 8 is supported by PNG");
980 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_METHOD;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500981 png_ptr->zlib_method = method;
Guy Schalnat0d580581995-07-20 02:43:20 -0500982}
983
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600984void
985png_set_write_status_fn(png_structp png_ptr, png_write_status_ptr write_row_fn)
986{
987 png_ptr->write_row_fn = write_row_fn;
988}
989
990#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
991void
992png_set_write_user_transform_fn(png_structp png_ptr, png_user_transform_ptr
993 write_user_transform_fn)
994{
995 png_debug(1, "in png_set_write_user_transform_fn\n");
996 png_ptr->transformations |= PNG_USER_TRANSFORM;
997 png_ptr->write_user_transform_fn = write_user_transform_fn;
998}
999#endif
1000