blob: 459800d406f1eb204d413dcd55b2d30dd22002c5 [file] [log] [blame]
Guy Schalnat0d580581995-07-20 02:43:20 -05001
Andreas Dilger47a0c421997-05-16 02:46:07 -05002/* pngwutil.c - utilities to write a PNG file
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003 *
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05004 * libpng 1.0.5a - October 23, 1999
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-Pehrsonc9442291999-01-06 21:50:16 -06008 * Copyright (c) 1998, 1999 Glenn Randers-Pehrson
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06009 */
Andreas Dilger47a0c421997-05-16 02:46:07 -050010
Guy Schalnat0d580581995-07-20 02:43:20 -050011#define PNG_INTERNAL
12#include "png.h"
13
Andreas Dilger47a0c421997-05-16 02:46:07 -050014/* Place a 32-bit number into a buffer in PNG byte order. We work
15 * with unsigned numbers for convenience, although one supported
16 * ancillary chunk uses signed (two's complement) numbers.
17 */
Guy Schalnat0d580581995-07-20 02:43:20 -050018void
Guy Schalnat6d764711995-12-19 03:22:19 -060019png_save_uint_32(png_bytep buf, png_uint_32 i)
Guy Schalnat0d580581995-07-20 02:43:20 -050020{
21 buf[0] = (png_byte)((i >> 24) & 0xff);
22 buf[1] = (png_byte)((i >> 16) & 0xff);
23 buf[2] = (png_byte)((i >> 8) & 0xff);
24 buf[3] = (png_byte)(i & 0xff);
25}
26
Andreas Dilger47a0c421997-05-16 02:46:07 -050027#if defined(PNG_WRITE_pCAL_SUPPORTED)
28/* The png_save_int_32 function assumes integers are stored in two's
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060029 * complement format. If this isn't the case, then this routine needs to
30 * be modified to write data in two's complement format.
31 */
Andreas Dilger47a0c421997-05-16 02:46:07 -050032void
33png_save_int_32(png_bytep buf, png_int_32 i)
34{
35 buf[0] = (png_byte)((i >> 24) & 0xff);
36 buf[1] = (png_byte)((i >> 16) & 0xff);
37 buf[2] = (png_byte)((i >> 8) & 0xff);
38 buf[3] = (png_byte)(i & 0xff);
39}
40#endif
41
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060042/* Place a 16-bit number into a buffer in PNG byte order.
43 * The parameter is declared unsigned int, not png_uint_16,
44 * just to avoid potential problems on pre-ANSI C compilers.
45 */
Guy Schalnat0d580581995-07-20 02:43:20 -050046void
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060047png_save_uint_16(png_bytep buf, unsigned int i)
Guy Schalnat0d580581995-07-20 02:43:20 -050048{
49 buf[0] = (png_byte)((i >> 8) & 0xff);
50 buf[1] = (png_byte)(i & 0xff);
51}
52
Andreas Dilger47a0c421997-05-16 02:46:07 -050053/* Write a PNG chunk all at once. The type is an array of ASCII characters
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060054 * representing the chunk name. The array must be at least 4 bytes in
55 * length, and does not need to be null terminated. To be safe, pass the
56 * pre-defined chunk names here, and if you need a new one, define it
57 * where the others are defined. The length is the length of the data.
58 * All the data must be present. If that is not possible, use the
59 * png_write_chunk_start(), png_write_chunk_data(), and png_write_chunk_end()
60 * functions instead.
61 */
Guy Schalnat0d580581995-07-20 02:43:20 -050062void
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060063png_write_chunk(png_structp png_ptr, png_bytep chunk_name,
Andreas Dilger47a0c421997-05-16 02:46:07 -050064 png_bytep data, png_size_t length)
Guy Schalnat0d580581995-07-20 02:43:20 -050065{
Andreas Dilger47a0c421997-05-16 02:46:07 -050066 png_write_chunk_start(png_ptr, chunk_name, (png_uint_32)length);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060067 png_write_chunk_data(png_ptr, data, length);
68 png_write_chunk_end(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -050069}
70
Andreas Dilger47a0c421997-05-16 02:46:07 -050071/* Write the start of a PNG chunk. The type is the chunk type.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060072 * The total_length is the sum of the lengths of all the data you will be
73 * passing in png_write_chunk_data().
74 */
Guy Schalnat0d580581995-07-20 02:43:20 -050075void
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060076png_write_chunk_start(png_structp png_ptr, png_bytep chunk_name,
77 png_uint_32 length)
Guy Schalnat0d580581995-07-20 02:43:20 -050078{
Andreas Dilger47a0c421997-05-16 02:46:07 -050079 png_byte buf[4];
80 png_debug2(0, "Writing %s chunk (%d bytes)\n", chunk_name, length);
81
Guy Schalnat0d580581995-07-20 02:43:20 -050082 /* write the length */
Andreas Dilger47a0c421997-05-16 02:46:07 -050083 png_save_uint_32(buf, length);
84 png_write_data(png_ptr, buf, (png_size_t)4);
85
Guy Schalnat0d580581995-07-20 02:43:20 -050086 /* write the chunk name */
Andreas Dilger47a0c421997-05-16 02:46:07 -050087 png_write_data(png_ptr, chunk_name, (png_size_t)4);
Guy Schalnat0d580581995-07-20 02:43:20 -050088 /* reset the crc and run it over the chunk name */
89 png_reset_crc(png_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -050090 png_calculate_crc(png_ptr, chunk_name, (png_size_t)4);
Guy Schalnat0d580581995-07-20 02:43:20 -050091}
92
Andreas Dilger47a0c421997-05-16 02:46:07 -050093/* Write the data of a PNG chunk started with png_write_chunk_start().
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060094 * Note that multiple calls to this function are allowed, and that the
95 * sum of the lengths from these calls *must* add up to the total_length
96 * given to png_write_chunk_start().
97 */
Guy Schalnat0d580581995-07-20 02:43:20 -050098void
Andreas Dilger47a0c421997-05-16 02:46:07 -050099png_write_chunk_data(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnat0d580581995-07-20 02:43:20 -0500100{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500101 /* write the data, and run the CRC over it */
102 if (data != NULL && length > 0)
Guy Schalnat0d580581995-07-20 02:43:20 -0500103 {
104 png_calculate_crc(png_ptr, data, length);
Guy Schalnat6d764711995-12-19 03:22:19 -0600105 png_write_data(png_ptr, data, length);
Guy Schalnat0d580581995-07-20 02:43:20 -0500106 }
107}
108
Andreas Dilger47a0c421997-05-16 02:46:07 -0500109/* Finish a chunk started with png_write_chunk_start(). */
Guy Schalnat0d580581995-07-20 02:43:20 -0500110void
Guy Schalnat6d764711995-12-19 03:22:19 -0600111png_write_chunk_end(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500112{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500113 png_byte buf[4];
114
Guy Schalnat0d580581995-07-20 02:43:20 -0500115 /* write the crc */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500116 png_save_uint_32(buf, png_ptr->crc);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500117
118 png_write_data(png_ptr, buf, (png_size_t)4);
Guy Schalnat0d580581995-07-20 02:43:20 -0500119}
120
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600121/* Simple function to write the signature. If we have already written
122 * the magic bytes of the signature, or more likely, the PNG stream is
123 * being embedded into another stream and doesn't need its own signature,
124 * we should call png_set_sig_bytes() to tell libpng how many of the
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600125 * bytes have already been written.
126 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500127void
Guy Schalnat6d764711995-12-19 03:22:19 -0600128png_write_sig(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500129{
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600130 /* write the rest of the 8 byte signature */
131 png_write_data(png_ptr, &png_sig[png_ptr->sig_bytes],
Andreas Dilger47a0c421997-05-16 02:46:07 -0500132 (png_size_t)8 - png_ptr->sig_bytes);
Guy Schalnat0d580581995-07-20 02:43:20 -0500133}
134
135/* Write the IHDR chunk, and update the png_struct with the necessary
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600136 * information. Note that the rest of this code depends upon this
137 * information being correct.
138 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500139void
Guy Schalnat6d764711995-12-19 03:22:19 -0600140png_write_IHDR(png_structp png_ptr, png_uint_32 width, png_uint_32 height,
Guy Schalnat0d580581995-07-20 02:43:20 -0500141 int bit_depth, int color_type, int compression_type, int filter_type,
142 int interlace_type)
143{
144 png_byte buf[13]; /* buffer to store the IHDR info */
145
Andreas Dilger47a0c421997-05-16 02:46:07 -0500146 png_debug(1, "in png_write_IHDR\n");
Guy Schalnate5a37791996-06-05 15:50:50 -0500147 /* Check that we have valid input data from the application info */
148 switch (color_type)
149 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500150 case PNG_COLOR_TYPE_GRAY:
Guy Schalnate5a37791996-06-05 15:50:50 -0500151 switch (bit_depth)
152 {
153 case 1:
154 case 2:
155 case 4:
156 case 8:
157 case 16: png_ptr->channels = 1; break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500158 default: png_error(png_ptr,"Invalid bit depth for grayscale image");
Guy Schalnate5a37791996-06-05 15:50:50 -0500159 }
160 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500161 case PNG_COLOR_TYPE_RGB:
Guy Schalnate5a37791996-06-05 15:50:50 -0500162 if (bit_depth != 8 && bit_depth != 16)
163 png_error(png_ptr, "Invalid bit depth for RGB image");
164 png_ptr->channels = 3;
165 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500166 case PNG_COLOR_TYPE_PALETTE:
Guy Schalnate5a37791996-06-05 15:50:50 -0500167 switch (bit_depth)
168 {
169 case 1:
170 case 2:
171 case 4:
172 case 8: png_ptr->channels = 1; break;
173 default: png_error(png_ptr, "Invalid bit depth for paletted image");
174 }
175 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500176 case PNG_COLOR_TYPE_GRAY_ALPHA:
Guy Schalnate5a37791996-06-05 15:50:50 -0500177 if (bit_depth != 8 && bit_depth != 16)
178 png_error(png_ptr, "Invalid bit depth for grayscale+alpha image");
179 png_ptr->channels = 2;
180 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500181 case PNG_COLOR_TYPE_RGB_ALPHA:
Guy Schalnate5a37791996-06-05 15:50:50 -0500182 if (bit_depth != 8 && bit_depth != 16)
183 png_error(png_ptr, "Invalid bit depth for RGBA image");
184 png_ptr->channels = 4;
185 break;
186 default:
187 png_error(png_ptr, "Invalid image color type specified");
188 }
189
Andreas Dilger47a0c421997-05-16 02:46:07 -0500190 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
Guy Schalnate5a37791996-06-05 15:50:50 -0500191 {
192 png_warning(png_ptr, "Invalid compression type specified");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500193 compression_type = PNG_COMPRESSION_TYPE_BASE;
Guy Schalnate5a37791996-06-05 15:50:50 -0500194 }
195
Andreas Dilger47a0c421997-05-16 02:46:07 -0500196 if (filter_type != PNG_FILTER_TYPE_BASE)
Guy Schalnate5a37791996-06-05 15:50:50 -0500197 {
198 png_warning(png_ptr, "Invalid filter type specified");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500199 filter_type = PNG_FILTER_TYPE_BASE;
Guy Schalnate5a37791996-06-05 15:50:50 -0500200 }
201
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600202#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500203 if (interlace_type != PNG_INTERLACE_NONE &&
204 interlace_type != PNG_INTERLACE_ADAM7)
Guy Schalnate5a37791996-06-05 15:50:50 -0500205 {
206 png_warning(png_ptr, "Invalid interlace type specified");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500207 interlace_type = PNG_INTERLACE_ADAM7;
Guy Schalnate5a37791996-06-05 15:50:50 -0500208 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600209#else
210 interlace_type=PNG_INTERLACE_NONE;
211#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500212
213 /* save off the relevent information */
214 png_ptr->bit_depth = (png_byte)bit_depth;
215 png_ptr->color_type = (png_byte)color_type;
216 png_ptr->interlaced = (png_byte)interlace_type;
217 png_ptr->width = width;
218 png_ptr->height = height;
219
220 png_ptr->pixel_depth = (png_byte)(bit_depth * png_ptr->channels);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500221 png_ptr->rowbytes = ((width * (png_size_t)png_ptr->pixel_depth + 7) >> 3);
Guy Schalnate5a37791996-06-05 15:50:50 -0500222 /* set the usr info, so any transformations can modify it */
223 png_ptr->usr_width = png_ptr->width;
224 png_ptr->usr_bit_depth = png_ptr->bit_depth;
225 png_ptr->usr_channels = png_ptr->channels;
226
Guy Schalnat0d580581995-07-20 02:43:20 -0500227 /* pack the header information into the buffer */
228 png_save_uint_32(buf, width);
229 png_save_uint_32(buf + 4, height);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600230 buf[8] = (png_byte)bit_depth;
231 buf[9] = (png_byte)color_type;
232 buf[10] = (png_byte)compression_type;
233 buf[11] = (png_byte)filter_type;
234 buf[12] = (png_byte)interlace_type;
Guy Schalnat0d580581995-07-20 02:43:20 -0500235
236 /* write the chunk */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500237 png_write_chunk(png_ptr, png_IHDR, buf, (png_size_t)13);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500238
Andreas Dilger47a0c421997-05-16 02:46:07 -0500239 /* initialize zlib with PNG info */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600240 png_ptr->zstream.zalloc = png_zalloc;
241 png_ptr->zstream.zfree = png_zfree;
242 png_ptr->zstream.opaque = (voidpf)png_ptr;
Guy Schalnate5a37791996-06-05 15:50:50 -0500243 if (!(png_ptr->do_filter))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500244 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500245 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE ||
246 png_ptr->bit_depth < 8)
Guy Schalnate5a37791996-06-05 15:50:50 -0500247 png_ptr->do_filter = PNG_FILTER_NONE;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500248 else
Guy Schalnate5a37791996-06-05 15:50:50 -0500249 png_ptr->do_filter = PNG_ALL_FILTERS;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500250 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500251 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_STRATEGY))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500252 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500253 if (png_ptr->do_filter != PNG_FILTER_NONE)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500254 png_ptr->zlib_strategy = Z_FILTERED;
255 else
256 png_ptr->zlib_strategy = Z_DEFAULT_STRATEGY;
257 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500258 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_LEVEL))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500259 png_ptr->zlib_level = Z_DEFAULT_COMPRESSION;
Guy Schalnate5a37791996-06-05 15:50:50 -0500260 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500261 png_ptr->zlib_mem_level = 8;
Guy Schalnate5a37791996-06-05 15:50:50 -0500262 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500263 png_ptr->zlib_window_bits = 15;
Guy Schalnate5a37791996-06-05 15:50:50 -0500264 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_METHOD))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500265 png_ptr->zlib_method = 8;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600266 deflateInit2(&png_ptr->zstream, png_ptr->zlib_level,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500267 png_ptr->zlib_method, png_ptr->zlib_window_bits,
268 png_ptr->zlib_mem_level, png_ptr->zlib_strategy);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600269 png_ptr->zstream.next_out = png_ptr->zbuf;
270 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500271
Guy Schalnate5a37791996-06-05 15:50:50 -0500272 png_ptr->mode = PNG_HAVE_IHDR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500273}
274
275/* write the palette. We are careful not to trust png_color to be in the
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -0500276 * correct order for PNG, so people can redefine it to any convenient
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600277 * structure.
278 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500279void
Andreas Dilger47a0c421997-05-16 02:46:07 -0500280png_write_PLTE(png_structp png_ptr, png_colorp palette, png_uint_32 num_pal)
Guy Schalnat0d580581995-07-20 02:43:20 -0500281{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500282 png_uint_32 i;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600283 png_colorp pal_ptr;
Guy Schalnat0d580581995-07-20 02:43:20 -0500284 png_byte buf[3];
285
Andreas Dilger47a0c421997-05-16 02:46:07 -0500286 png_debug(1, "in png_write_PLTE\n");
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500287 if ((
288#ifdef PNG_WRITE_EMPTY_PLTE_SUPPORTED
289 !png_ptr->empty_plte_permitted &&
290#endif
291 num_pal == 0) || num_pal > 256)
292 {
293 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
294 {
295 png_error(png_ptr, "Invalid number of colors in palette");
296 }
297 else
298 {
299 png_warning(png_ptr, "Invalid number of colors in palette");
300 return;
301 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500302 }
303
Andreas Dilger47a0c421997-05-16 02:46:07 -0500304 png_ptr->num_palette = (png_uint_16)num_pal;
305 png_debug1(3, "num_palette = %d\n", png_ptr->num_palette);
Guy Schalnate5a37791996-06-05 15:50:50 -0500306
Andreas Dilger47a0c421997-05-16 02:46:07 -0500307 png_write_chunk_start(png_ptr, png_PLTE, num_pal * 3);
308 for (i = 0, pal_ptr = palette; i < num_pal; i++, pal_ptr++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500309 {
310 buf[0] = pal_ptr->red;
311 buf[1] = pal_ptr->green;
312 buf[2] = pal_ptr->blue;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500313 png_write_chunk_data(png_ptr, buf, (png_size_t)3);
Guy Schalnat0d580581995-07-20 02:43:20 -0500314 }
315 png_write_chunk_end(png_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500316 png_ptr->mode |= PNG_HAVE_PLTE;
Guy Schalnat0d580581995-07-20 02:43:20 -0500317}
318
319/* write an IDAT chunk */
320void
Andreas Dilger47a0c421997-05-16 02:46:07 -0500321png_write_IDAT(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnat0d580581995-07-20 02:43:20 -0500322{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500323 png_debug(1, "in png_write_IDAT\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500324 png_write_chunk(png_ptr, png_IDAT, data, length);
Guy Schalnate5a37791996-06-05 15:50:50 -0500325 png_ptr->mode |= PNG_HAVE_IDAT;
Guy Schalnat0d580581995-07-20 02:43:20 -0500326}
327
328/* write an IEND chunk */
329void
Guy Schalnat6d764711995-12-19 03:22:19 -0600330png_write_IEND(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500331{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500332 png_debug(1, "in png_write_IEND\n");
333 png_write_chunk(png_ptr, png_IEND, NULL, (png_size_t)0);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600334 png_ptr->mode |= PNG_HAVE_IEND;
Guy Schalnat0d580581995-07-20 02:43:20 -0500335}
336
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500337#if defined(PNG_WRITE_gAMA_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500338/* write a gAMA chunk */
339void
Andreas Dilger47a0c421997-05-16 02:46:07 -0500340png_write_gAMA(png_structp png_ptr, double file_gamma)
Guy Schalnat0d580581995-07-20 02:43:20 -0500341{
342 png_uint_32 igamma;
343 png_byte buf[4];
344
Andreas Dilger47a0c421997-05-16 02:46:07 -0500345 png_debug(1, "in png_write_gAMA\n");
Glenn Randers-Pehrson8f8fb6a1998-03-09 23:02:06 -0600346 /* file_gamma is saved in 1/1000000ths */
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600347 igamma = (png_uint_32)(file_gamma * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500348 png_save_uint_32(buf, igamma);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500349 png_write_chunk(png_ptr, png_gAMA, buf, (png_size_t)4);
Guy Schalnat0d580581995-07-20 02:43:20 -0500350}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500351#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500352
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600353#if defined(PNG_WRITE_sRGB_SUPPORTED)
354/* write a sRGB chunk */
355void
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600356png_write_sRGB(png_structp png_ptr, int srgb_intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600357{
358 png_byte buf[1];
359
360 png_debug(1, "in png_write_sRGB\n");
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600361 if(srgb_intent >= PNG_sRGB_INTENT_LAST)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600362 png_warning(png_ptr,
363 "Invalid sRGB rendering intent specified");
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600364 buf[0]=(png_byte)srgb_intent;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600365 png_write_chunk(png_ptr, png_sRGB, buf, (png_size_t)1);
366}
367#endif
368
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500369#if defined(PNG_WRITE_sBIT_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500370/* write the sBIT chunk */
371void
Guy Schalnat6d764711995-12-19 03:22:19 -0600372png_write_sBIT(png_structp png_ptr, png_color_8p sbit, int color_type)
Guy Schalnat0d580581995-07-20 02:43:20 -0500373{
374 png_byte buf[4];
Andreas Dilger47a0c421997-05-16 02:46:07 -0500375 png_size_t size;
Guy Schalnat0d580581995-07-20 02:43:20 -0500376
Andreas Dilger47a0c421997-05-16 02:46:07 -0500377 png_debug(1, "in png_write_sBIT\n");
Guy Schalnat6d764711995-12-19 03:22:19 -0600378 /* make sure we don't depend upon the order of PNG_COLOR_8 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500379 if (color_type & PNG_COLOR_MASK_COLOR)
380 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600381 png_byte maxbits;
Guy Schalnate5a37791996-06-05 15:50:50 -0500382
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -0500383 maxbits = (png_byte)(color_type==PNG_COLOR_TYPE_PALETTE ? 8 :
384 png_ptr->usr_bit_depth);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600385 if (sbit->red == 0 || sbit->red > maxbits ||
386 sbit->green == 0 || sbit->green > maxbits ||
Guy Schalnate5a37791996-06-05 15:50:50 -0500387 sbit->blue == 0 || sbit->blue > maxbits)
388 {
389 png_warning(png_ptr, "Invalid sBIT depth specified");
390 return;
391 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500392 buf[0] = sbit->red;
393 buf[1] = sbit->green;
394 buf[2] = sbit->blue;
395 size = 3;
396 }
397 else
398 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500399 if (sbit->gray == 0 || sbit->gray > png_ptr->usr_bit_depth)
400 {
401 png_warning(png_ptr, "Invalid sBIT depth specified");
402 return;
403 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500404 buf[0] = sbit->gray;
405 size = 1;
406 }
407
408 if (color_type & PNG_COLOR_MASK_ALPHA)
409 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500410 if (sbit->alpha == 0 || sbit->alpha > png_ptr->usr_bit_depth)
411 {
412 png_warning(png_ptr, "Invalid sBIT depth specified");
413 return;
414 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500415 buf[size++] = sbit->alpha;
416 }
417
Andreas Dilger47a0c421997-05-16 02:46:07 -0500418 png_write_chunk(png_ptr, png_sBIT, buf, size);
Guy Schalnat0d580581995-07-20 02:43:20 -0500419}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500420#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500421
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500422#if defined(PNG_WRITE_cHRM_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500423/* write the cHRM chunk */
424void
Andreas Dilger47a0c421997-05-16 02:46:07 -0500425png_write_cHRM(png_structp png_ptr, double white_x, double white_y,
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600426 double red_x, double red_y, double green_x, double green_y,
427 double blue_x, double blue_y)
Guy Schalnat0d580581995-07-20 02:43:20 -0500428{
429 png_uint_32 itemp;
430 png_byte buf[32];
431
Andreas Dilger47a0c421997-05-16 02:46:07 -0500432 png_debug(1, "in png_write_cHRM\n");
Glenn Randers-Pehrson8f8fb6a1998-03-09 23:02:06 -0600433 /* each value is saved int 1/1000000ths */
Guy Schalnate5a37791996-06-05 15:50:50 -0500434 if (white_x < 0 || white_x > 0.8 || white_y < 0 || white_y > 0.8 ||
435 white_x + white_y > 1.0)
436 {
437 png_warning(png_ptr, "Invalid cHRM white point specified");
438 return;
439 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600440 itemp = (png_uint_32)(white_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500441 png_save_uint_32(buf, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600442 itemp = (png_uint_32)(white_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500443 png_save_uint_32(buf + 4, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500444
445 if (red_x < 0 || red_x > 0.8 || red_y < 0 || red_y > 0.8 ||
446 red_x + red_y > 1.0)
447 {
448 png_warning(png_ptr, "Invalid cHRM red point specified");
449 return;
450 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600451 itemp = (png_uint_32)(red_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500452 png_save_uint_32(buf + 8, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600453 itemp = (png_uint_32)(red_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500454 png_save_uint_32(buf + 12, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500455
456 if (green_x < 0 || green_x > 0.8 || green_y < 0 || green_y > 0.8 ||
457 green_x + green_y > 1.0)
458 {
459 png_warning(png_ptr, "Invalid cHRM green point specified");
460 return;
461 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600462 itemp = (png_uint_32)(green_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500463 png_save_uint_32(buf + 16, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600464 itemp = (png_uint_32)(green_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500465 png_save_uint_32(buf + 20, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500466
467 if (blue_x < 0 || blue_x > 0.8 || blue_y < 0 || blue_y > 0.8 ||
468 blue_x + blue_y > 1.0)
469 {
470 png_warning(png_ptr, "Invalid cHRM blue point specified");
471 return;
472 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600473 itemp = (png_uint_32)(blue_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500474 png_save_uint_32(buf + 24, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600475 itemp = (png_uint_32)(blue_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500476 png_save_uint_32(buf + 28, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500477
Andreas Dilger47a0c421997-05-16 02:46:07 -0500478 png_write_chunk(png_ptr, png_cHRM, buf, (png_size_t)32);
Guy Schalnat0d580581995-07-20 02:43:20 -0500479}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500480#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500481
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500482#if defined(PNG_WRITE_tRNS_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500483/* write the tRNS chunk */
484void
Guy Schalnat6d764711995-12-19 03:22:19 -0600485png_write_tRNS(png_structp png_ptr, png_bytep trans, png_color_16p tran,
Guy Schalnat0d580581995-07-20 02:43:20 -0500486 int num_trans, int color_type)
487{
488 png_byte buf[6];
489
Andreas Dilger47a0c421997-05-16 02:46:07 -0500490 png_debug(1, "in png_write_tRNS\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500491 if (color_type == PNG_COLOR_TYPE_PALETTE)
492 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600493 if (num_trans <= 0 || num_trans > (int)png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -0500494 {
495 png_warning(png_ptr,"Invalid number of transparent colors specified");
496 return;
497 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500498 /* write the chunk out as it is */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500499 png_write_chunk(png_ptr, png_tRNS, trans, (png_size_t)num_trans);
Guy Schalnat0d580581995-07-20 02:43:20 -0500500 }
501 else if (color_type == PNG_COLOR_TYPE_GRAY)
502 {
503 /* one 16 bit value */
504 png_save_uint_16(buf, tran->gray);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500505 png_write_chunk(png_ptr, png_tRNS, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -0500506 }
507 else if (color_type == PNG_COLOR_TYPE_RGB)
508 {
509 /* three 16 bit values */
510 png_save_uint_16(buf, tran->red);
511 png_save_uint_16(buf + 2, tran->green);
512 png_save_uint_16(buf + 4, tran->blue);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500513 png_write_chunk(png_ptr, png_tRNS, buf, (png_size_t)6);
Guy Schalnat0d580581995-07-20 02:43:20 -0500514 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500515 else
516 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600517 png_warning(png_ptr, "Can't write tRNS with an alpha channel");
Guy Schalnate5a37791996-06-05 15:50:50 -0500518 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500519}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500520#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500521
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500522#if defined(PNG_WRITE_bKGD_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500523/* write the background chunk */
524void
Guy Schalnat6d764711995-12-19 03:22:19 -0600525png_write_bKGD(png_structp png_ptr, png_color_16p back, int color_type)
Guy Schalnat0d580581995-07-20 02:43:20 -0500526{
527 png_byte buf[6];
528
Andreas Dilger47a0c421997-05-16 02:46:07 -0500529 png_debug(1, "in png_write_bKGD\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500530 if (color_type == PNG_COLOR_TYPE_PALETTE)
531 {
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500532 if (
533#ifdef PNG_WRITE_EMPTY_PLTE_SUPPORTED
534 (!png_ptr->empty_plte_permitted ||
535 (png_ptr->empty_plte_permitted && png_ptr->num_palette)) &&
536#endif
537 back->index > png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -0500538 {
539 png_warning(png_ptr, "Invalid background palette index");
540 return;
541 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500542 buf[0] = back->index;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500543 png_write_chunk(png_ptr, png_bKGD, buf, (png_size_t)1);
Guy Schalnat0d580581995-07-20 02:43:20 -0500544 }
545 else if (color_type & PNG_COLOR_MASK_COLOR)
546 {
547 png_save_uint_16(buf, back->red);
548 png_save_uint_16(buf + 2, back->green);
549 png_save_uint_16(buf + 4, back->blue);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500550 png_write_chunk(png_ptr, png_bKGD, buf, (png_size_t)6);
Guy Schalnat0d580581995-07-20 02:43:20 -0500551 }
552 else
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600553 {
Guy Schalnat0d580581995-07-20 02:43:20 -0500554 png_save_uint_16(buf, back->gray);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500555 png_write_chunk(png_ptr, png_bKGD, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -0500556 }
557}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500558#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500559
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500560#if defined(PNG_WRITE_hIST_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500561/* write the histogram */
562void
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600563png_write_hIST(png_structp png_ptr, png_uint_16p hist, int num_hist)
Guy Schalnat0d580581995-07-20 02:43:20 -0500564{
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600565 int i;
Guy Schalnat0d580581995-07-20 02:43:20 -0500566 png_byte buf[3];
567
Andreas Dilger47a0c421997-05-16 02:46:07 -0500568 png_debug(1, "in png_write_hIST\n");
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600569 if (num_hist > (int)png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -0500570 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500571 png_debug2(3, "num_hist = %d, num_palette = %d\n", num_hist,
572 png_ptr->num_palette);
Guy Schalnate5a37791996-06-05 15:50:50 -0500573 png_warning(png_ptr, "Invalid number of histogram entries specified");
574 return;
575 }
576
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600577 png_write_chunk_start(png_ptr, png_hIST, (png_uint_32)(num_hist * 2));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500578 for (i = 0; i < num_hist; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500579 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600580 png_save_uint_16(buf, hist[i]);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500581 png_write_chunk_data(png_ptr, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -0500582 }
583 png_write_chunk_end(png_ptr);
584}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500585#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500586
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500587#if defined(PNG_WRITE_tEXt_SUPPORTED) || defined(PNG_WRITE_zTXt_SUPPORTED) || \
588 defined(PNG_WRITE_pCAL_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600589/* Check that the tEXt or zTXt keyword is valid per PNG 1.0 specification,
590 * and if invalid, correct the keyword rather than discarding the entire
591 * chunk. The PNG 1.0 specification requires keywords 1-79 characters in
592 * length, forbids leading or trailing whitespace, multiple internal spaces,
593 * and the non-break space (0x80) from ISO 8859-1. Returns keyword length.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500594 *
595 * The new_key is allocated to hold the corrected keyword and must be freed
596 * by the calling routine. This avoids problems with trying to write to
597 * static keywords without having to have duplicate copies of the strings.
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600598 */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500599png_size_t
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600600png_check_keyword(png_structp png_ptr, png_charp key, png_charpp new_key)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600601{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500602 png_size_t key_len;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600603 png_charp kp, dp;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600604 int kflag;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600605
Andreas Dilger47a0c421997-05-16 02:46:07 -0500606 png_debug(1, "in png_check_keyword\n");
607 *new_key = NULL;
608
609 if (key == NULL || (key_len = png_strlen(key)) == 0)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600610 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600611 png_chunk_warning(png_ptr, "zero length keyword");
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600612 return ((png_size_t)0);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600613 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600614
Andreas Dilger47a0c421997-05-16 02:46:07 -0500615 png_debug1(2, "Keyword to be checked is '%s'\n", key);
616
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600617 *new_key = (png_charp)png_malloc(png_ptr, (png_uint_32)(key_len + 1));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600618
619 /* Replace non-printing characters with a blank and print a warning */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500620 for (kp = key, dp = *new_key; *kp != '\0'; kp++, dp++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600621 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600622 if (*kp < 0x20 || (*kp > 0x7E && (png_byte)*kp < 0xA1))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500623 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600624#if !defined(PNG_NO_STDIO)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500625 char msg[40];
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600626
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600627 sprintf(msg, "invalid keyword character 0x%02X", *kp);
628 png_chunk_warning(png_ptr, msg);
629#else
630 png_chunk_warning(png_ptr, "invalid character in keyword");
631#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500632 *dp = ' ';
633 }
634 else
635 {
636 *dp = *kp;
637 }
638 }
639 *dp = '\0';
640
641 /* Remove any trailing white space. */
642 kp = *new_key + key_len - 1;
643 if (*kp == ' ')
644 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600645 png_chunk_warning(png_ptr, "trailing spaces removed from keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500646
647 while (*kp == ' ')
648 {
649 *(kp--) = '\0';
650 key_len--;
651 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600652 }
653
654 /* Remove any leading white space. */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500655 kp = *new_key;
656 if (*kp == ' ')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600657 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600658 png_chunk_warning(png_ptr, "leading spaces removed from keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500659
660 while (*kp == ' ')
661 {
662 kp++;
663 key_len--;
664 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600665 }
666
Andreas Dilger47a0c421997-05-16 02:46:07 -0500667 png_debug1(2, "Checking for multiple internal spaces in '%s'\n", kp);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600668
Andreas Dilger47a0c421997-05-16 02:46:07 -0500669 /* Remove multiple internal spaces. */
670 for (kflag = 0, dp = *new_key; *kp != '\0'; kp++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600671 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500672 if (*kp == ' ' && kflag == 0)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600673 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500674 *(dp++) = *kp;
675 kflag = 1;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600676 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500677 else if (*kp == ' ')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600678 {
679 key_len--;
680 }
681 else
682 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500683 *(dp++) = *kp;
684 kflag = 0;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600685 }
686 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500687 *dp = '\0';
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600688
689 if (key_len == 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500690 {
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500691 png_free(png_ptr, *new_key);
692 *new_key=NULL;
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600693 png_chunk_warning(png_ptr, "zero length keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500694 }
695
696 if (key_len > 79)
697 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600698 png_chunk_warning(png_ptr, "keyword length must be 1 - 79 characters");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500699 new_key[79] = '\0';
700 key_len = 79;
701 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600702
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600703 return (key_len);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600704}
705#endif
706
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500707#if defined(PNG_WRITE_tEXt_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500708/* write a tEXt chunk */
709void
Guy Schalnat6d764711995-12-19 03:22:19 -0600710png_write_tEXt(png_structp png_ptr, png_charp key, png_charp text,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500711 png_size_t text_len)
Guy Schalnat0d580581995-07-20 02:43:20 -0500712{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500713 png_size_t key_len;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600714 png_charp new_key;
Guy Schalnat0d580581995-07-20 02:43:20 -0500715
Andreas Dilger47a0c421997-05-16 02:46:07 -0500716 png_debug(1, "in png_write_tEXt\n");
717 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
718 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600719 png_warning(png_ptr, "Empty keyword in tEXt chunk");
Guy Schalnate5a37791996-06-05 15:50:50 -0500720 return;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500721 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500722
Andreas Dilger47a0c421997-05-16 02:46:07 -0500723 if (text == NULL || *text == '\0')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600724 text_len = 0;
725
726 /* make sure we include the 0 after the key */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500727 png_write_chunk_start(png_ptr, png_tEXt, (png_uint_32)key_len+text_len+1);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500728 /*
729 * We leave it to the application to meet PNG-1.0 requirements on the
730 * contents of the text. PNG-1.0 through PNG-1.2 discourage the use of
731 * any non-Latin-1 characters except for NEWLINE. ISO PNG will forbid them.
732 */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600733 png_write_chunk_data(png_ptr, (png_bytep)new_key, key_len + 1);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600734 if (text_len)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500735 png_write_chunk_data(png_ptr, (png_bytep)text, text_len);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600736
Guy Schalnat0d580581995-07-20 02:43:20 -0500737 png_write_chunk_end(png_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500738 png_free(png_ptr, new_key);
Guy Schalnat0d580581995-07-20 02:43:20 -0500739}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500740#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500741
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500742#if defined(PNG_WRITE_zTXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500743/* write a compressed text chunk */
Guy Schalnat0d580581995-07-20 02:43:20 -0500744void
Guy Schalnat6d764711995-12-19 03:22:19 -0600745png_write_zTXt(png_structp png_ptr, png_charp key, png_charp text,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500746 png_size_t text_len, int compression)
Guy Schalnat0d580581995-07-20 02:43:20 -0500747{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500748 png_size_t key_len;
Guy Schalnat0d580581995-07-20 02:43:20 -0500749 char buf[1];
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600750 png_charp new_key;
Guy Schalnat0d580581995-07-20 02:43:20 -0500751 int i, ret;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600752 png_charpp output_ptr = NULL; /* array of pointers to output */
Guy Schalnat0d580581995-07-20 02:43:20 -0500753 int num_output_ptr = 0; /* number of output pointers used */
754 int max_output_ptr = 0; /* size of output_ptr */
755
Andreas Dilger47a0c421997-05-16 02:46:07 -0500756 png_debug(1, "in png_write_zTXt\n");
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600757
Andreas Dilger47a0c421997-05-16 02:46:07 -0500758 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
Guy Schalnate5a37791996-06-05 15:50:50 -0500759 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600760 png_warning(png_ptr, "Empty keyword in zTXt chunk");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500761 return;
Guy Schalnate5a37791996-06-05 15:50:50 -0500762 }
763
Andreas Dilger47a0c421997-05-16 02:46:07 -0500764 if (text == NULL || *text == '\0' || compression==PNG_TEXT_COMPRESSION_NONE)
765 {
766 png_write_tEXt(png_ptr, new_key, text, (png_size_t)0);
767 png_free(png_ptr, new_key);
768 return;
769 }
770
771 png_free(png_ptr, new_key);
772
773 if (compression >= PNG_TEXT_COMPRESSION_LAST)
774 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600775#if !defined(PNG_NO_STDIO)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500776 char msg[50];
777 sprintf(msg, "Unknown zTXt compression type %d", compression);
778 png_warning(png_ptr, msg);
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600779#else
780 png_warning(png_ptr, "Unknown zTXt compression type");
781#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500782 compression = PNG_TEXT_COMPRESSION_zTXt;
783 }
784
785 /* We can't write the chunk until we find out how much data we have,
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500786 * which means we need to run the compressor first and save the
Andreas Dilger47a0c421997-05-16 02:46:07 -0500787 * output. This shouldn't be a problem, as the vast majority of
788 * comments should be reasonable, but we will set up an array of
789 * malloc'd pointers to be sure.
790 *
791 * If we knew the application was well behaved, we could simplify this
792 * greatly by assuming we can always malloc an output buffer large
793 * enough to hold the compressed text ((1001 * text_len / 1000) + 12)
794 * and malloc this directly. The only time this would be a bad idea is
795 * if we can't malloc more than 64K and we have 64K of random input
796 * data, or if the input string is incredibly large (although this
797 * wouldn't cause a failure, just a slowdown due to swapping).
798 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500799
800 /* set up the compression buffers */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600801 png_ptr->zstream.avail_in = (uInt)text_len;
802 png_ptr->zstream.next_in = (Bytef *)text;
803 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
804 png_ptr->zstream.next_out = (Bytef *)png_ptr->zbuf;
Guy Schalnat0d580581995-07-20 02:43:20 -0500805
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600806 /* this is the same compression loop as in png_write_row() */
Guy Schalnat0d580581995-07-20 02:43:20 -0500807 do
808 {
809 /* compress the data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600810 ret = deflate(&png_ptr->zstream, Z_NO_FLUSH);
Guy Schalnat0d580581995-07-20 02:43:20 -0500811 if (ret != Z_OK)
812 {
813 /* error */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500814 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600815 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnat0d580581995-07-20 02:43:20 -0500816 else
Guy Schalnat6d764711995-12-19 03:22:19 -0600817 png_error(png_ptr, "zlib error");
Guy Schalnat0d580581995-07-20 02:43:20 -0500818 }
819 /* check to see if we need more room */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600820 if (!png_ptr->zstream.avail_out && png_ptr->zstream.avail_in)
Guy Schalnat0d580581995-07-20 02:43:20 -0500821 {
822 /* make sure the output array has room */
823 if (num_output_ptr >= max_output_ptr)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600824 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500825 int old_max;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500826
827 old_max = max_output_ptr;
Guy Schalnat0d580581995-07-20 02:43:20 -0500828 max_output_ptr = num_output_ptr + 4;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500829 if (output_ptr != NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600830 {
831 png_charpp old_ptr;
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600832
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600833 old_ptr = output_ptr;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600834 output_ptr = (png_charpp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600835 (png_uint_32)(max_output_ptr * sizeof (png_charpp)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500836 png_memcpy(output_ptr, old_ptr, old_max * sizeof (png_charp));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600837 png_free(png_ptr, old_ptr);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600838 }
839 else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600840 output_ptr = (png_charpp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600841 (png_uint_32)(max_output_ptr * sizeof (png_charp)));
Guy Schalnat0d580581995-07-20 02:43:20 -0500842 }
843
844 /* save the data */
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600845 output_ptr[num_output_ptr] = (png_charp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600846 (png_uint_32)png_ptr->zbuf_size);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500847 png_memcpy(output_ptr[num_output_ptr], png_ptr->zbuf,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500848 png_ptr->zbuf_size);
Guy Schalnat0d580581995-07-20 02:43:20 -0500849 num_output_ptr++;
850
851 /* and reset the buffer */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600852 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
853 png_ptr->zstream.next_out = png_ptr->zbuf;
Guy Schalnat0d580581995-07-20 02:43:20 -0500854 }
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -0500855 /* continue until we don't have any more to compress */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600856 } while (png_ptr->zstream.avail_in);
Guy Schalnat0d580581995-07-20 02:43:20 -0500857
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600858 /* finish the compression */
Guy Schalnat0d580581995-07-20 02:43:20 -0500859 do
860 {
861 /* tell zlib we are finished */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600862 ret = deflate(&png_ptr->zstream, Z_FINISH);
Guy Schalnat0d580581995-07-20 02:43:20 -0500863 if (ret != Z_OK && ret != Z_STREAM_END)
864 {
865 /* we got an error */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500866 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600867 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnat0d580581995-07-20 02:43:20 -0500868 else
Guy Schalnat6d764711995-12-19 03:22:19 -0600869 png_error(png_ptr, "zlib error");
Guy Schalnat0d580581995-07-20 02:43:20 -0500870 }
871
872 /* check to see if we need more room */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500873 if (!(png_ptr->zstream.avail_out) && ret == Z_OK)
Guy Schalnat0d580581995-07-20 02:43:20 -0500874 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600875 /* check to make sure our output array has room */
876 if (num_output_ptr >= max_output_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500877 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500878 int old_max;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500879
880 old_max = max_output_ptr;
Guy Schalnat0d580581995-07-20 02:43:20 -0500881 max_output_ptr = num_output_ptr + 4;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500882 if (output_ptr != NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600883 {
884 png_charpp old_ptr;
Guy Schalnat0d580581995-07-20 02:43:20 -0500885
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600886 old_ptr = output_ptr;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500887 /* This could be optimized to realloc() */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600888 output_ptr = (png_charpp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600889 (png_uint_32)(max_output_ptr * sizeof (png_charpp)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500890 png_memcpy(output_ptr, old_ptr, old_max * sizeof (png_charp));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600891 png_free(png_ptr, old_ptr);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600892 }
893 else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600894 output_ptr = (png_charpp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600895 (png_uint_32)(max_output_ptr * sizeof (png_charp)));
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600896 }
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600897
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600898 /* save off the data */
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600899 output_ptr[num_output_ptr] = (png_charp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600900 (png_uint_32)png_ptr->zbuf_size);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600901 png_memcpy(output_ptr[num_output_ptr], png_ptr->zbuf,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500902 png_ptr->zbuf_size);
Guy Schalnat0d580581995-07-20 02:43:20 -0500903 num_output_ptr++;
904
905 /* and reset the buffer pointers */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600906 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
907 png_ptr->zstream.next_out = png_ptr->zbuf;
Guy Schalnat0d580581995-07-20 02:43:20 -0500908 }
909 } while (ret != Z_STREAM_END);
910
911 /* text length is number of buffers plus last buffer */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600912 text_len = png_ptr->zbuf_size * num_output_ptr;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600913 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500914 text_len += png_ptr->zbuf_size - (png_size_t)png_ptr->zstream.avail_out;
Guy Schalnat0d580581995-07-20 02:43:20 -0500915
916 /* write start of chunk */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500917 png_write_chunk_start(png_ptr, png_zTXt, (png_uint_32)(key_len+text_len+2));
Guy Schalnat0d580581995-07-20 02:43:20 -0500918 /* write key */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500919 png_write_chunk_data(png_ptr, (png_bytep)key, key_len + 1);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600920 buf[0] = (png_byte)compression;
Guy Schalnat0d580581995-07-20 02:43:20 -0500921 /* write compression */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500922 png_write_chunk_data(png_ptr, (png_bytep)buf, (png_size_t)1);
Guy Schalnat0d580581995-07-20 02:43:20 -0500923
924 /* write saved output buffers, if any */
925 for (i = 0; i < num_output_ptr; i++)
926 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500927 png_write_chunk_data(png_ptr,(png_bytep)output_ptr[i],png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600928 png_free(png_ptr, output_ptr[i]);
Guy Schalnat0d580581995-07-20 02:43:20 -0500929 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500930 if (max_output_ptr != 0)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600931 png_free(png_ptr, output_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -0500932 /* write anything left in zbuf */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500933 if (png_ptr->zstream.avail_out < (png_uint_32)png_ptr->zbuf_size)
Guy Schalnat0d580581995-07-20 02:43:20 -0500934 png_write_chunk_data(png_ptr, png_ptr->zbuf,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600935 png_ptr->zbuf_size - png_ptr->zstream.avail_out);
Guy Schalnat0d580581995-07-20 02:43:20 -0500936 /* close the chunk */
937 png_write_chunk_end(png_ptr);
938
939 /* reset zlib for another zTXt or the image data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600940 deflateReset(&png_ptr->zstream);
Guy Schalnat0d580581995-07-20 02:43:20 -0500941}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500942#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500943
Andreas Dilger47a0c421997-05-16 02:46:07 -0500944
945#if defined(PNG_WRITE_oFFs_SUPPORTED)
946/* write the oFFs chunk */
947void
948png_write_oFFs(png_structp png_ptr, png_uint_32 x_offset,
949 png_uint_32 y_offset,
950 int unit_type)
951{
952 png_byte buf[9];
953
954 png_debug(1, "in png_write_oFFs\n");
955 if (unit_type >= PNG_OFFSET_LAST)
956 png_warning(png_ptr, "Unrecognized unit type for oFFs chunk");
957
958 png_save_uint_32(buf, x_offset);
959 png_save_uint_32(buf + 4, y_offset);
960 buf[8] = (png_byte)unit_type;
961
962 png_write_chunk(png_ptr, png_oFFs, buf, (png_size_t)9);
963}
964#endif
965
966#if defined(PNG_WRITE_pCAL_SUPPORTED)
967/* write the pCAL chunk (png-scivis-19970203) */
968void
969png_write_pCAL(png_structp png_ptr, png_charp purpose, png_int_32 X0,
970 png_int_32 X1, int type, int nparams, png_charp units, png_charpp params)
971{
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600972 png_size_t purpose_len, units_len, total_len;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500973 png_uint_32p params_len;
974 png_byte buf[10];
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600975 png_charp new_purpose;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500976 int i;
977
978 png_debug1(1, "in png_write_pCAL (%d parameters)\n", nparams);
979 if (type >= PNG_EQUATION_LAST)
980 png_warning(png_ptr, "Unrecognized equation type for pCAL chunk");
981
982 purpose_len = png_check_keyword(png_ptr, purpose, &new_purpose) + 1;
983 png_debug1(3, "pCAL purpose length = %d\n", purpose_len);
984 units_len = png_strlen(units) + (nparams == 0 ? 0 : 1);
985 png_debug1(3, "pCAL units length = %d\n", units_len);
986 total_len = purpose_len + units_len + 10;
987
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600988 params_len = (png_uint_32p)png_malloc(png_ptr, (png_uint_32)(nparams
989 *sizeof(png_uint_32)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500990
991 /* Find the length of each parameter, making sure we don't count the
992 null terminator for the last parameter. */
993 for (i = 0; i < nparams; i++)
994 {
995 params_len[i] = png_strlen(params[i]) + (i == nparams - 1 ? 0 : 1);
996 png_debug2(3, "pCAL parameter %d length = %d\n", i, params_len[i]);
997 total_len += (png_size_t)params_len[i];
998 }
999
1000 png_debug1(3, "pCAL total length = %d\n", total_len);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001001 png_write_chunk_start(png_ptr, png_pCAL, (png_uint_32)total_len);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001002 png_write_chunk_data(png_ptr, (png_bytep)new_purpose, purpose_len);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001003 png_save_int_32(buf, X0);
1004 png_save_int_32(buf + 4, X1);
1005 buf[8] = (png_byte)type;
1006 buf[9] = (png_byte)nparams;
1007 png_write_chunk_data(png_ptr, buf, (png_size_t)10);
1008 png_write_chunk_data(png_ptr, (png_bytep)units, (png_size_t)units_len);
1009
1010 png_free(png_ptr, new_purpose);
1011
1012 for (i = 0; i < nparams; i++)
1013 {
1014 png_write_chunk_data(png_ptr, (png_bytep)params[i],
1015 (png_size_t)params_len[i]);
1016 }
1017
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001018 png_free(png_ptr, params_len);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001019 png_write_chunk_end(png_ptr);
1020}
1021#endif
1022
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001023#if defined(PNG_WRITE_pHYs_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001024/* write the pHYs chunk */
1025void
Guy Schalnat6d764711995-12-19 03:22:19 -06001026png_write_pHYs(png_structp png_ptr, png_uint_32 x_pixels_per_unit,
Guy Schalnat0d580581995-07-20 02:43:20 -05001027 png_uint_32 y_pixels_per_unit,
1028 int unit_type)
1029{
1030 png_byte buf[9];
1031
Andreas Dilger47a0c421997-05-16 02:46:07 -05001032 png_debug(1, "in png_write_pHYs\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001033 if (unit_type >= PNG_RESOLUTION_LAST)
1034 png_warning(png_ptr, "Unrecognized unit type for pHYs chunk");
1035
Guy Schalnat0d580581995-07-20 02:43:20 -05001036 png_save_uint_32(buf, x_pixels_per_unit);
1037 png_save_uint_32(buf + 4, y_pixels_per_unit);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001038 buf[8] = (png_byte)unit_type;
Guy Schalnat0d580581995-07-20 02:43:20 -05001039
Andreas Dilger47a0c421997-05-16 02:46:07 -05001040 png_write_chunk(png_ptr, png_pHYs, buf, (png_size_t)9);
Guy Schalnat0d580581995-07-20 02:43:20 -05001041}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001042#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001043
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001044#if defined(PNG_WRITE_tIME_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001045/* Write the tIME chunk. Use either png_convert_from_struct_tm()
1046 * or png_convert_from_time_t(), or fill in the structure yourself.
1047 */
Guy Schalnat0d580581995-07-20 02:43:20 -05001048void
Guy Schalnat6d764711995-12-19 03:22:19 -06001049png_write_tIME(png_structp png_ptr, png_timep mod_time)
Guy Schalnat0d580581995-07-20 02:43:20 -05001050{
1051 png_byte buf[7];
1052
Andreas Dilger47a0c421997-05-16 02:46:07 -05001053 png_debug(1, "in png_write_tIME\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001054 if (mod_time->month > 12 || mod_time->month < 1 ||
1055 mod_time->day > 31 || mod_time->day < 1 ||
1056 mod_time->hour > 23 || mod_time->second > 60)
1057 {
1058 png_warning(png_ptr, "Invalid time specified for tIME chunk");
1059 return;
1060 }
1061
Guy Schalnat0d580581995-07-20 02:43:20 -05001062 png_save_uint_16(buf, mod_time->year);
1063 buf[2] = mod_time->month;
1064 buf[3] = mod_time->day;
1065 buf[4] = mod_time->hour;
1066 buf[5] = mod_time->minute;
1067 buf[6] = mod_time->second;
1068
Andreas Dilger47a0c421997-05-16 02:46:07 -05001069 png_write_chunk(png_ptr, png_tIME, buf, (png_size_t)7);
Guy Schalnat0d580581995-07-20 02:43:20 -05001070}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001071#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001072
1073/* initializes the row writing capability of libpng */
1074void
Guy Schalnat6d764711995-12-19 03:22:19 -06001075png_write_start_row(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05001076{
Andreas Dilger47a0c421997-05-16 02:46:07 -05001077 png_size_t buf_size;
1078
1079 png_debug(1, "in png_write_start_row\n");
1080 buf_size = (png_size_t)(((png_ptr->width * png_ptr->usr_channels *
1081 png_ptr->usr_bit_depth + 7) >> 3) + 1);
1082
Guy Schalnat0d580581995-07-20 02:43:20 -05001083 /* set up row buffer */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001084 png_ptr->row_buf = (png_bytep)png_malloc(png_ptr, (png_uint_32)buf_size);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001085 png_ptr->row_buf[0] = PNG_FILTER_VALUE_NONE;
Guy Schalnate5a37791996-06-05 15:50:50 -05001086
1087 /* set up filtering buffer, if using this filter */
1088 if (png_ptr->do_filter & PNG_FILTER_SUB)
Guy Schalnat0d580581995-07-20 02:43:20 -05001089 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001090 png_ptr->sub_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001091 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001092 png_ptr->sub_row[0] = PNG_FILTER_VALUE_SUB;
Guy Schalnate5a37791996-06-05 15:50:50 -05001093 }
1094
Andreas Dilger47a0c421997-05-16 02:46:07 -05001095 /* We only need to keep the previous row if we are using one of these. */
Guy Schalnate5a37791996-06-05 15:50:50 -05001096 if (png_ptr->do_filter & (PNG_FILTER_AVG | PNG_FILTER_UP | PNG_FILTER_PAETH))
1097 {
1098 /* set up previous row buffer */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001099 png_ptr->prev_row = (png_bytep)png_malloc(png_ptr, (png_uint_32)buf_size);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001100 png_memset(png_ptr->prev_row, 0, buf_size);
Guy Schalnate5a37791996-06-05 15:50:50 -05001101
1102 if (png_ptr->do_filter & PNG_FILTER_UP)
1103 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001104 png_ptr->up_row = (png_bytep )png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001105 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001106 png_ptr->up_row[0] = PNG_FILTER_VALUE_UP;
Guy Schalnate5a37791996-06-05 15:50:50 -05001107 }
1108
1109 if (png_ptr->do_filter & PNG_FILTER_AVG)
1110 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001111 png_ptr->avg_row = (png_bytep)png_malloc(png_ptr,
1112 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001113 png_ptr->avg_row[0] = PNG_FILTER_VALUE_AVG;
Guy Schalnate5a37791996-06-05 15:50:50 -05001114 }
1115
1116 if (png_ptr->do_filter & PNG_FILTER_PAETH)
1117 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001118 png_ptr->paeth_row = (png_bytep )png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001119 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001120 png_ptr->paeth_row[0] = PNG_FILTER_VALUE_PAETH;
Guy Schalnate5a37791996-06-05 15:50:50 -05001121 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001122 }
1123
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001124#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05001125 /* if interlaced, we need to set up width and height of pass */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001126 if (png_ptr->interlaced)
Guy Schalnat0d580581995-07-20 02:43:20 -05001127 {
1128 if (!(png_ptr->transformations & PNG_INTERLACE))
1129 {
1130 png_ptr->num_rows = (png_ptr->height + png_pass_yinc[0] - 1 -
1131 png_pass_ystart[0]) / png_pass_yinc[0];
Andreas Dilger47a0c421997-05-16 02:46:07 -05001132 png_ptr->usr_width = (png_ptr->width + png_pass_inc[0] - 1 -
1133 png_pass_start[0]) / png_pass_inc[0];
Guy Schalnat0d580581995-07-20 02:43:20 -05001134 }
1135 else
1136 {
1137 png_ptr->num_rows = png_ptr->height;
1138 png_ptr->usr_width = png_ptr->width;
1139 }
1140 }
1141 else
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001142#endif
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001143 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001144 png_ptr->num_rows = png_ptr->height;
1145 png_ptr->usr_width = png_ptr->width;
1146 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001147 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
1148 png_ptr->zstream.next_out = png_ptr->zbuf;
Guy Schalnat0d580581995-07-20 02:43:20 -05001149}
1150
Andreas Dilger47a0c421997-05-16 02:46:07 -05001151/* Internal use only. Called when finished processing a row of data. */
Guy Schalnat0d580581995-07-20 02:43:20 -05001152void
Guy Schalnat6d764711995-12-19 03:22:19 -06001153png_write_finish_row(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05001154{
1155 int ret;
1156
Andreas Dilger47a0c421997-05-16 02:46:07 -05001157 png_debug(1, "in png_write_finish_row\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001158 /* next row */
1159 png_ptr->row_number++;
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001160
Guy Schalnat0d580581995-07-20 02:43:20 -05001161 /* see if we are done */
Guy Schalnat6d764711995-12-19 03:22:19 -06001162 if (png_ptr->row_number < png_ptr->num_rows)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001163 return;
Guy Schalnat0d580581995-07-20 02:43:20 -05001164
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001165#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05001166 /* if interlaced, go to next pass */
1167 if (png_ptr->interlaced)
1168 {
1169 png_ptr->row_number = 0;
1170 if (png_ptr->transformations & PNG_INTERLACE)
1171 {
1172 png_ptr->pass++;
1173 }
1174 else
1175 {
1176 /* loop until we find a non-zero width or height pass */
1177 do
1178 {
1179 png_ptr->pass++;
1180 if (png_ptr->pass >= 7)
1181 break;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001182 png_ptr->usr_width = (png_ptr->width +
Guy Schalnat0d580581995-07-20 02:43:20 -05001183 png_pass_inc[png_ptr->pass] - 1 -
1184 png_pass_start[png_ptr->pass]) /
1185 png_pass_inc[png_ptr->pass];
1186 png_ptr->num_rows = (png_ptr->height +
1187 png_pass_yinc[png_ptr->pass] - 1 -
1188 png_pass_ystart[png_ptr->pass]) /
1189 png_pass_yinc[png_ptr->pass];
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001190 if (png_ptr->transformations & PNG_INTERLACE)
1191 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05001192 } while (png_ptr->usr_width == 0 || png_ptr->num_rows == 0);
1193
1194 }
1195
Guy Schalnate5a37791996-06-05 15:50:50 -05001196 /* reset the row above the image for the next pass */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001197 if (png_ptr->pass < 7)
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001198 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001199 if (png_ptr->prev_row != NULL)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001200 png_memset(png_ptr->prev_row, 0,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001201 (png_size_t) (((png_uint_32)png_ptr->usr_channels *
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001202 (png_uint_32)png_ptr->usr_bit_depth *
1203 png_ptr->width + 7) >> 3) + 1);
Guy Schalnat0d580581995-07-20 02:43:20 -05001204 return;
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001205 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001206 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001207#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001208
1209 /* if we get here, we've just written the last row, so we need
1210 to flush the compressor */
1211 do
1212 {
1213 /* tell the compressor we are done */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001214 ret = deflate(&png_ptr->zstream, Z_FINISH);
Guy Schalnat0d580581995-07-20 02:43:20 -05001215 /* check for an error */
1216 if (ret != Z_OK && ret != Z_STREAM_END)
1217 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001218 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001219 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnat0d580581995-07-20 02:43:20 -05001220 else
Guy Schalnat6d764711995-12-19 03:22:19 -06001221 png_error(png_ptr, "zlib error");
Guy Schalnat0d580581995-07-20 02:43:20 -05001222 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001223 /* check to see if we need more room */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001224 if (!(png_ptr->zstream.avail_out) && ret == Z_OK)
Guy Schalnat0d580581995-07-20 02:43:20 -05001225 {
1226 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001227 png_ptr->zstream.next_out = png_ptr->zbuf;
1228 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnat0d580581995-07-20 02:43:20 -05001229 }
1230 } while (ret != Z_STREAM_END);
1231
1232 /* write any extra space */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001233 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size)
Guy Schalnat0d580581995-07-20 02:43:20 -05001234 {
1235 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size -
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001236 png_ptr->zstream.avail_out);
Guy Schalnat0d580581995-07-20 02:43:20 -05001237 }
1238
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001239 deflateReset(&png_ptr->zstream);
Guy Schalnat0d580581995-07-20 02:43:20 -05001240}
1241
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001242#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001243/* Pick out the correct pixels for the interlace pass.
1244 * The basic idea here is to go through the row with a source
1245 * pointer and a destination pointer (sp and dp), and copy the
1246 * correct pixels for the pass. As the row gets compacted,
1247 * sp will always be >= dp, so we should never overwrite anything.
1248 * See the default: case for the easiest code to understand.
1249 */
Guy Schalnat0d580581995-07-20 02:43:20 -05001250void
Guy Schalnat6d764711995-12-19 03:22:19 -06001251png_do_write_interlace(png_row_infop row_info, png_bytep row, int pass)
Guy Schalnat0d580581995-07-20 02:43:20 -05001252{
Andreas Dilger47a0c421997-05-16 02:46:07 -05001253 png_debug(1, "in png_do_write_interlace\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001254 /* we don't have to do anything on the last pass (6) */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001255#if defined(PNG_USELESS_TESTS_SUPPORTED)
1256 if (row != NULL && row_info != NULL && pass < 6)
1257#else
1258 if (pass < 6)
1259#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001260 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001261 /* each pixel depth is handled separately */
Guy Schalnat0d580581995-07-20 02:43:20 -05001262 switch (row_info->pixel_depth)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001263 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001264 case 1:
1265 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001266 png_bytep sp;
1267 png_bytep dp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001268 int shift;
1269 int d;
1270 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001271 png_uint_32 i;
1272 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001273
1274 dp = row;
1275 d = 0;
1276 shift = 7;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001277 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001278 i += png_pass_inc[pass])
1279 {
1280 sp = row + (png_size_t)(i >> 3);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001281 value = (int)(*sp >> (7 - (int)(i & 7))) & 0x1;
Guy Schalnat0d580581995-07-20 02:43:20 -05001282 d |= (value << shift);
1283
1284 if (shift == 0)
1285 {
1286 shift = 7;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001287 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001288 d = 0;
1289 }
1290 else
1291 shift--;
1292
1293 }
1294 if (shift != 7)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001295 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001296 break;
1297 }
1298 case 2:
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001299 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001300 png_bytep sp;
1301 png_bytep dp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001302 int shift;
1303 int d;
1304 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001305 png_uint_32 i;
1306 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001307
1308 dp = row;
1309 shift = 6;
1310 d = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001311 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001312 i += png_pass_inc[pass])
1313 {
1314 sp = row + (png_size_t)(i >> 2);
1315 value = (*sp >> ((3 - (int)(i & 3)) << 1)) & 0x3;
1316 d |= (value << shift);
1317
1318 if (shift == 0)
1319 {
1320 shift = 6;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001321 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001322 d = 0;
1323 }
1324 else
1325 shift -= 2;
1326 }
1327 if (shift != 6)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001328 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001329 break;
1330 }
1331 case 4:
1332 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001333 png_bytep sp;
1334 png_bytep dp;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001335 int shift;
Guy Schalnat0d580581995-07-20 02:43:20 -05001336 int d;
1337 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001338 png_uint_32 i;
1339 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001340
1341 dp = row;
1342 shift = 4;
1343 d = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001344 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001345 i += png_pass_inc[pass])
1346 {
1347 sp = row + (png_size_t)(i >> 1);
1348 value = (*sp >> ((1 - (int)(i & 1)) << 2)) & 0xf;
1349 d |= (value << shift);
1350
1351 if (shift == 0)
1352 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001353 shift = 4;
1354 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001355 d = 0;
1356 }
1357 else
1358 shift -= 4;
1359 }
1360 if (shift != 4)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001361 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001362 break;
1363 }
1364 default:
1365 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001366 png_bytep sp;
1367 png_bytep dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001368 png_uint_32 i;
1369 png_uint_32 row_width = row_info->width;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001370 png_size_t pixel_bytes;
Guy Schalnat0d580581995-07-20 02:43:20 -05001371
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001372 /* start at the beginning */
Guy Schalnat0d580581995-07-20 02:43:20 -05001373 dp = row;
1374 /* find out how many bytes each pixel takes up */
1375 pixel_bytes = (row_info->pixel_depth >> 3);
1376 /* loop through the row, only looking at the pixels that
1377 matter */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001378 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001379 i += png_pass_inc[pass])
1380 {
1381 /* find out where the original pixel is */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001382 sp = row + (png_size_t)i * pixel_bytes;
Guy Schalnat0d580581995-07-20 02:43:20 -05001383 /* move the pixel */
1384 if (dp != sp)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001385 png_memcpy(dp, sp, pixel_bytes);
Guy Schalnat0d580581995-07-20 02:43:20 -05001386 /* next pixel */
1387 dp += pixel_bytes;
1388 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001389 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05001390 }
1391 }
1392 /* set new row width */
1393 row_info->width = (row_info->width +
1394 png_pass_inc[pass] - 1 -
1395 png_pass_start[pass]) /
1396 png_pass_inc[pass];
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001397 row_info->rowbytes = ((row_info->width *
1398 row_info->pixel_depth + 7) >> 3);
Guy Schalnat0d580581995-07-20 02:43:20 -05001399 }
1400}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001401#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001402
Andreas Dilger47a0c421997-05-16 02:46:07 -05001403/* This filters the row, chooses which filter to use, if it has not already
1404 * been specified by the application, and then writes the row out with the
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001405 * chosen filter.
1406 */
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001407#define PNG_MAXSUM (~((png_uint_32)0) >> 1)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001408#define PNG_HISHIFT 10
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001409#define PNG_LOMASK ((png_uint_32)0xffffL)
1410#define PNG_HIMASK ((png_uint_32)(~PNG_LOMASK >> PNG_HISHIFT))
Guy Schalnat0d580581995-07-20 02:43:20 -05001411void
Guy Schalnate5a37791996-06-05 15:50:50 -05001412png_write_find_filter(png_structp png_ptr, png_row_infop row_info)
Guy Schalnat0d580581995-07-20 02:43:20 -05001413{
Guy Schalnate5a37791996-06-05 15:50:50 -05001414 png_bytep prev_row, best_row, row_buf;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001415 png_uint_32 mins, bpp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001416 png_byte filter_to_do = png_ptr->do_filter;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001417 png_uint_32 row_bytes = row_info->rowbytes;
1418#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1419 int num_p_filters = (int)png_ptr->num_prev_filters;
1420#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001421
Andreas Dilger47a0c421997-05-16 02:46:07 -05001422 png_debug(1, "in png_write_find_filter\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001423 /* find out how many bytes offset each pixel is */
1424 bpp = (row_info->pixel_depth + 7) / 8;
Guy Schalnate5a37791996-06-05 15:50:50 -05001425
1426 prev_row = png_ptr->prev_row;
1427 best_row = row_buf = png_ptr->row_buf;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001428 mins = PNG_MAXSUM;
Guy Schalnat0d580581995-07-20 02:43:20 -05001429
Andreas Dilger47a0c421997-05-16 02:46:07 -05001430 /* The prediction method we use is to find which method provides the
1431 * smallest value when summing the absolute values of the distances
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -05001432 * from zero, using anything >= 128 as negative numbers. This is known
Andreas Dilger47a0c421997-05-16 02:46:07 -05001433 * as the "minimum sum of absolute differences" heuristic. Other
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001434 * heuristics are the "weighted minimum sum of absolute differences"
Andreas Dilger47a0c421997-05-16 02:46:07 -05001435 * (experimental and can in theory improve compression), and the "zlib
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001436 * predictive" method (not implemented yet), which does test compressions
1437 * of lines using different filter methods, and then chooses the
1438 * (series of) filter(s) that give minimum compressed data size (VERY
Andreas Dilger47a0c421997-05-16 02:46:07 -05001439 * computationally expensive).
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001440 *
1441 * GRR 980525: consider also
1442 * (1) minimum sum of absolute differences from running average (i.e.,
1443 * keep running sum of non-absolute differences & count of bytes)
1444 * [track dispersion, too? restart average if dispersion too large?]
1445 * (1b) minimum sum of absolute differences from sliding average, probably
1446 * with window size <= deflate window (usually 32K)
1447 * (2) minimum sum of squared differences from zero or running average
1448 * (i.e., ~ root-mean-square approach)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001449 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001450
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001451
Guy Schalnate5a37791996-06-05 15:50:50 -05001452 /* We don't need to test the 'no filter' case if this is the only filter
Andreas Dilger47a0c421997-05-16 02:46:07 -05001453 * that has been chosen, as it doesn't actually do anything to the data.
1454 */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001455 if (filter_to_do & PNG_FILTER_NONE &&
1456 filter_to_do != PNG_FILTER_NONE)
Guy Schalnat0d580581995-07-20 02:43:20 -05001457 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001458 png_bytep rp;
1459 png_uint_32 sum = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001460 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001461 int v;
Guy Schalnat0d580581995-07-20 02:43:20 -05001462
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001463 for (i = 0, rp = row_buf + 1; i < row_bytes; i++, rp++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001464 {
1465 v = *rp;
1466 sum += (v < 128) ? v : 256 - v;
1467 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001468
1469#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1470 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1471 {
1472 png_uint_32 sumhi, sumlo;
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001473 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001474 sumlo = sum & PNG_LOMASK;
1475 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK; /* Gives us some footroom */
1476
1477 /* Reduce the sum if we match any of the previous rows */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001478 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001479 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001480 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_NONE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001481 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001482 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001483 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001484 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001485 PNG_WEIGHT_SHIFT;
1486 }
1487 }
1488
1489 /* Factor in the cost of this filter (this is here for completeness,
1490 * but it makes no sense to have a "cost" for the NONE filter, as
1491 * it has the minimum possible computational cost - none).
1492 */
1493 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_NONE]) >>
1494 PNG_COST_SHIFT;
1495 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_NONE]) >>
1496 PNG_COST_SHIFT;
1497
1498 if (sumhi > PNG_HIMASK)
1499 sum = PNG_MAXSUM;
1500 else
1501 sum = (sumhi << PNG_HISHIFT) + sumlo;
1502 }
1503#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001504 mins = sum;
Guy Schalnat0d580581995-07-20 02:43:20 -05001505 }
1506
Guy Schalnate5a37791996-06-05 15:50:50 -05001507 /* sub filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001508 if (filter_to_do == PNG_FILTER_SUB)
1509 /* it's the only filter so no testing is needed */
1510 {
1511 png_bytep rp, lp, dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001512 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001513 for (i = 0, rp = row_buf + 1, dp = png_ptr->sub_row + 1; i < bpp;
1514 i++, rp++, dp++)
1515 {
1516 *dp = *rp;
1517 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001518 for (lp = row_buf + 1; i < row_bytes;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001519 i++, rp++, lp++, dp++)
1520 {
1521 *dp = (png_byte)(((int)*rp - (int)*lp) & 0xff);
1522 }
1523 best_row = png_ptr->sub_row;
1524 }
1525
1526 else if (filter_to_do & PNG_FILTER_SUB)
Guy Schalnat0d580581995-07-20 02:43:20 -05001527 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001528 png_bytep rp, dp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001529 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001530 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001531 int v;
1532
1533#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001534 /* We temporarily increase the "minimum sum" by the factor we
Andreas Dilger47a0c421997-05-16 02:46:07 -05001535 * would reduce the sum of this filter, so that we can do the
1536 * early exit comparison without scaling the sum each time.
1537 */
1538 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1539 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001540 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001541 png_uint_32 lmhi, lmlo;
1542 lmlo = lmins & PNG_LOMASK;
1543 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
1544
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001545 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001546 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001547 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_SUB)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001548 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001549 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001550 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001551 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001552 PNG_WEIGHT_SHIFT;
1553 }
1554 }
1555
1556 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
1557 PNG_COST_SHIFT;
1558 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
1559 PNG_COST_SHIFT;
1560
1561 if (lmhi > PNG_HIMASK)
1562 lmins = PNG_MAXSUM;
1563 else
1564 lmins = (lmhi << PNG_HISHIFT) + lmlo;
1565 }
1566#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001567
Guy Schalnate5a37791996-06-05 15:50:50 -05001568 for (i = 0, rp = row_buf + 1, dp = png_ptr->sub_row + 1; i < bpp;
1569 i++, rp++, dp++)
1570 {
1571 v = *dp = *rp;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001572
Guy Schalnate5a37791996-06-05 15:50:50 -05001573 sum += (v < 128) ? v : 256 - v;
1574 }
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001575 for (lp = row_buf + 1; i < row_info->rowbytes;
1576 i++, rp++, lp++, dp++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001577 {
1578 v = *dp = (png_byte)(((int)*rp - (int)*lp) & 0xff);
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001579
Guy Schalnate5a37791996-06-05 15:50:50 -05001580 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001581
1582 if (sum > lmins) /* We are already worse, don't continue. */
1583 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05001584 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001585
1586#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1587 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1588 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001589 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001590 png_uint_32 sumhi, sumlo;
1591 sumlo = sum & PNG_LOMASK;
1592 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
1593
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001594 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001595 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001596 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_SUB)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001597 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001598 sumlo = (sumlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001599 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001600 sumhi = (sumhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001601 PNG_WEIGHT_SHIFT;
1602 }
1603 }
1604
1605 sumlo = (sumlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
1606 PNG_COST_SHIFT;
1607 sumhi = (sumhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
1608 PNG_COST_SHIFT;
1609
1610 if (sumhi > PNG_HIMASK)
1611 sum = PNG_MAXSUM;
1612 else
1613 sum = (sumhi << PNG_HISHIFT) + sumlo;
1614 }
1615#endif
1616
Guy Schalnate5a37791996-06-05 15:50:50 -05001617 if (sum < mins)
1618 {
1619 mins = sum;
1620 best_row = png_ptr->sub_row;
1621 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001622 }
1623
Guy Schalnate5a37791996-06-05 15:50:50 -05001624 /* up filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001625 if (filter_to_do == PNG_FILTER_UP)
1626 {
1627 png_bytep rp, dp, pp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001628 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001629
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001630 for (i = 0, rp = row_buf + 1, dp = png_ptr->up_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001631 pp = prev_row + 1; i < row_bytes;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001632 i++, rp++, pp++, dp++)
1633 {
1634 *dp = (png_byte)(((int)*rp - (int)*pp) & 0xff);
1635 }
1636 best_row = png_ptr->up_row;
1637 }
1638
1639 else if (filter_to_do & PNG_FILTER_UP)
Guy Schalnat0d580581995-07-20 02:43:20 -05001640 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001641 png_bytep rp, dp, pp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001642 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001643 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001644 int v;
1645
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001646
Andreas Dilger47a0c421997-05-16 02:46:07 -05001647#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1648 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1649 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001650 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001651 png_uint_32 lmhi, lmlo;
1652 lmlo = lmins & PNG_LOMASK;
1653 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
1654
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001655 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001656 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001657 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_UP)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001658 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001659 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001660 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001661 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001662 PNG_WEIGHT_SHIFT;
1663 }
1664 }
1665
1666 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_UP]) >>
1667 PNG_COST_SHIFT;
1668 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_UP]) >>
1669 PNG_COST_SHIFT;
1670
1671 if (lmhi > PNG_HIMASK)
1672 lmins = PNG_MAXSUM;
1673 else
1674 lmins = (lmhi << PNG_HISHIFT) + lmlo;
1675 }
1676#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001677
1678 for (i = 0, rp = row_buf + 1, dp = png_ptr->up_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001679 pp = prev_row + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001680 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001681 v = *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05001682
1683 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001684
1685 if (sum > lmins) /* We are already worse, don't continue. */
1686 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05001687 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001688
1689#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1690 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1691 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001692 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001693 png_uint_32 sumhi, sumlo;
1694 sumlo = sum & PNG_LOMASK;
1695 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
1696
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001697 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001698 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001699 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_UP)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001700 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001701 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001702 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001703 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001704 PNG_WEIGHT_SHIFT;
1705 }
1706 }
1707
1708 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_UP]) >>
1709 PNG_COST_SHIFT;
1710 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_UP]) >>
1711 PNG_COST_SHIFT;
1712
1713 if (sumhi > PNG_HIMASK)
1714 sum = PNG_MAXSUM;
1715 else
1716 sum = (sumhi << PNG_HISHIFT) + sumlo;
1717 }
1718#endif
1719
Guy Schalnate5a37791996-06-05 15:50:50 -05001720 if (sum < mins)
1721 {
1722 mins = sum;
1723 best_row = png_ptr->up_row;
1724 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001725 }
1726
Guy Schalnate5a37791996-06-05 15:50:50 -05001727 /* avg filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001728 if (filter_to_do == PNG_FILTER_AVG)
1729 {
1730 png_bytep rp, dp, pp, lp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001731 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001732 for (i = 0, rp = row_buf + 1, dp = png_ptr->avg_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001733 pp = prev_row + 1; i < bpp; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001734 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001735 *dp++ = (png_byte)(((int)*rp++ - ((int)*pp++ / 2)) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001736 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001737 for (lp = row_buf + 1; i < row_bytes; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001738 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001739 *dp++ = (png_byte)(((int)*rp++ - (((int)*pp++ + (int)*lp++) / 2))
1740 & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001741 }
1742 best_row = png_ptr->avg_row;
1743 }
1744
1745 else if (filter_to_do & PNG_FILTER_AVG)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001746 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001747 png_bytep rp, dp, pp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001748 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001749 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001750 int v;
1751
1752#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1753 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1754 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001755 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001756 png_uint_32 lmhi, lmlo;
1757 lmlo = lmins & PNG_LOMASK;
1758 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
1759
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001760 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001761 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001762 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_AVG)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001763 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001764 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001765 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001766 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001767 PNG_WEIGHT_SHIFT;
1768 }
1769 }
1770
1771 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_AVG]) >>
1772 PNG_COST_SHIFT;
1773 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_AVG]) >>
1774 PNG_COST_SHIFT;
1775
1776 if (lmhi > PNG_HIMASK)
1777 lmins = PNG_MAXSUM;
1778 else
1779 lmins = (lmhi << PNG_HISHIFT) + lmlo;
1780 }
1781#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001782
1783 for (i = 0, rp = row_buf + 1, dp = png_ptr->avg_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001784 pp = prev_row + 1; i < bpp; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001785 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001786 v = *dp++ = (png_byte)(((int)*rp++ - ((int)*pp++ / 2)) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05001787
1788 sum += (v < 128) ? v : 256 - v;
1789 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001790 for (lp = row_buf + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001791 {
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001792 v = *dp++ =
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001793 (png_byte)(((int)*rp++ - (((int)*pp++ + (int)*lp++) / 2)) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05001794
1795 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001796
1797 if (sum > lmins) /* We are already worse, don't continue. */
1798 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05001799 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001800
1801#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1802 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1803 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001804 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001805 png_uint_32 sumhi, sumlo;
1806 sumlo = sum & PNG_LOMASK;
1807 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
1808
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001809 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001810 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001811 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_NONE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001812 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001813 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001814 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001815 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001816 PNG_WEIGHT_SHIFT;
1817 }
1818 }
1819
1820 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_AVG]) >>
1821 PNG_COST_SHIFT;
1822 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_AVG]) >>
1823 PNG_COST_SHIFT;
1824
1825 if (sumhi > PNG_HIMASK)
1826 sum = PNG_MAXSUM;
1827 else
1828 sum = (sumhi << PNG_HISHIFT) + sumlo;
1829 }
1830#endif
1831
Guy Schalnate5a37791996-06-05 15:50:50 -05001832 if (sum < mins)
1833 {
1834 mins = sum;
1835 best_row = png_ptr->avg_row;
1836 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001837 }
1838
Andreas Dilger47a0c421997-05-16 02:46:07 -05001839 /* Paeth filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001840 if (filter_to_do == PNG_FILTER_PAETH)
1841 {
1842 png_bytep rp, dp, pp, cp, lp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001843 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001844 for (i = 0, rp = row_buf + 1, dp = png_ptr->paeth_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001845 pp = prev_row + 1; i < bpp; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001846 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001847 *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001848 }
1849
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001850 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001851 {
1852 int a, b, c, pa, pb, pc, p;
1853
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001854 b = *pp++;
1855 c = *cp++;
1856 a = *lp++;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001857
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001858 p = b - c;
1859 pc = a - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001860
1861#ifdef PNG_USE_ABS
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001862 pa = abs(p);
1863 pb = abs(pc);
1864 pc = abs(p + pc);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001865#else
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001866 pa = p < 0 ? -p : p;
1867 pb = pc < 0 ? -pc : pc;
1868 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001869#endif
1870
1871 p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
1872
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001873 *dp++ = (png_byte)(((int)*rp++ - p) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001874 }
1875 best_row = png_ptr->paeth_row;
1876 }
1877
1878 else if (filter_to_do & PNG_FILTER_PAETH)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001879 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001880 png_bytep rp, dp, pp, cp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001881 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001882 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001883 int v;
1884
1885#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1886 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1887 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001888 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001889 png_uint_32 lmhi, lmlo;
1890 lmlo = lmins & PNG_LOMASK;
1891 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
1892
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001893 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001894 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001895 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_PAETH)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001896 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001897 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001898 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001899 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001900 PNG_WEIGHT_SHIFT;
1901 }
1902 }
1903
1904 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_PAETH]) >>
1905 PNG_COST_SHIFT;
1906 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_PAETH]) >>
1907 PNG_COST_SHIFT;
1908
1909 if (lmhi > PNG_HIMASK)
1910 lmins = PNG_MAXSUM;
1911 else
1912 lmins = (lmhi << PNG_HISHIFT) + lmlo;
1913 }
1914#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001915
1916 for (i = 0, rp = row_buf + 1, dp = png_ptr->paeth_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001917 pp = prev_row + 1; i < bpp; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001918 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001919 v = *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05001920
1921 sum += (v < 128) ? v : 256 - v;
1922 }
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001923
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001924 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001925 {
1926 int a, b, c, pa, pb, pc, p;
1927
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001928 b = *pp++;
1929 c = *cp++;
1930 a = *lp++;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001931
1932#ifndef PNG_SLOW_PAETH
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001933 p = b - c;
1934 pc = a - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001935#ifdef PNG_USE_ABS
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001936 pa = abs(p);
1937 pb = abs(pc);
1938 pc = abs(p + pc);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001939#else
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001940 pa = p < 0 ? -p : p;
1941 pb = pc < 0 ? -pc : pc;
1942 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001943#endif
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001944 p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
1945#else /* PNG_SLOW_PAETH */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001946 p = a + b - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001947 pa = abs(p - a);
1948 pb = abs(p - b);
1949 pc = abs(p - c);
Guy Schalnate5a37791996-06-05 15:50:50 -05001950 if (pa <= pb && pa <= pc)
1951 p = a;
1952 else if (pb <= pc)
1953 p = b;
1954 else
1955 p = c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001956#endif /* PNG_SLOW_PAETH */
Guy Schalnate5a37791996-06-05 15:50:50 -05001957
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001958 v = *dp++ = (png_byte)(((int)*rp++ - p) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05001959
1960 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001961
1962 if (sum > lmins) /* We are already worse, don't continue. */
1963 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05001964 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001965
1966#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1967 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1968 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001969 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001970 png_uint_32 sumhi, sumlo;
1971 sumlo = sum & PNG_LOMASK;
1972 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
1973
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001974 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001975 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001976 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_PAETH)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001977 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001978 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001979 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001980 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001981 PNG_WEIGHT_SHIFT;
1982 }
1983 }
1984
1985 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_PAETH]) >>
1986 PNG_COST_SHIFT;
1987 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_PAETH]) >>
1988 PNG_COST_SHIFT;
1989
1990 if (sumhi > PNG_HIMASK)
1991 sum = PNG_MAXSUM;
1992 else
1993 sum = (sumhi << PNG_HISHIFT) + sumlo;
1994 }
1995#endif
1996
Guy Schalnate5a37791996-06-05 15:50:50 -05001997 if (sum < mins)
1998 {
1999 best_row = png_ptr->paeth_row;
2000 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002001 }
2002
Andreas Dilger47a0c421997-05-16 02:46:07 -05002003 /* Do the actual writing of the filtered row data from the chosen filter. */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002004
Guy Schalnate5a37791996-06-05 15:50:50 -05002005 png_write_filtered_row(png_ptr, best_row);
Andreas Dilger47a0c421997-05-16 02:46:07 -05002006
2007#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2008 /* Save the type of filter we picked this time for future calculations */
2009 if (png_ptr->num_prev_filters > 0)
2010 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002011 int j;
2012 for (j = 1; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002013 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002014 png_ptr->prev_filters[j] = png_ptr->prev_filters[j - 1];
Andreas Dilger47a0c421997-05-16 02:46:07 -05002015 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002016 png_ptr->prev_filters[j] = best_row[0];
Andreas Dilger47a0c421997-05-16 02:46:07 -05002017 }
2018#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002019}
2020
2021
Andreas Dilger47a0c421997-05-16 02:46:07 -05002022/* Do the actual writing of a previously filtered row. */
Guy Schalnate5a37791996-06-05 15:50:50 -05002023void
2024png_write_filtered_row(png_structp png_ptr, png_bytep filtered_row)
2025{
Andreas Dilger47a0c421997-05-16 02:46:07 -05002026 png_debug(1, "in png_write_filtered_row\n");
2027 png_debug1(2, "filter = %d\n", filtered_row[0]);
Guy Schalnate5a37791996-06-05 15:50:50 -05002028 /* set up the zlib input buffer */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002029 png_ptr->zstream.next_in = filtered_row;
2030 png_ptr->zstream.avail_in = (uInt)png_ptr->row_info.rowbytes + 1;
Guy Schalnate5a37791996-06-05 15:50:50 -05002031 /* repeat until we have compressed all the data */
2032 do
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002033 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002034 int ret; /* return of zlib */
Guy Schalnat0d580581995-07-20 02:43:20 -05002035
Guy Schalnate5a37791996-06-05 15:50:50 -05002036 /* compress the data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002037 ret = deflate(&png_ptr->zstream, Z_NO_FLUSH);
Guy Schalnate5a37791996-06-05 15:50:50 -05002038 /* check for compression errors */
2039 if (ret != Z_OK)
2040 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05002041 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002042 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnate5a37791996-06-05 15:50:50 -05002043 else
2044 png_error(png_ptr, "zlib error");
2045 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002046
Guy Schalnate5a37791996-06-05 15:50:50 -05002047 /* see if it is time to write another IDAT */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002048 if (!(png_ptr->zstream.avail_out))
Guy Schalnate5a37791996-06-05 15:50:50 -05002049 {
2050 /* write the IDAT and reset the zlib output buffer */
2051 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002052 png_ptr->zstream.next_out = png_ptr->zbuf;
2053 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnate5a37791996-06-05 15:50:50 -05002054 }
2055 /* repeat until all data has been compressed */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002056 } while (png_ptr->zstream.avail_in);
Guy Schalnate5a37791996-06-05 15:50:50 -05002057
Guy Schalnatc21f90c1996-06-17 16:24:45 -05002058 /* swap the current and previous rows */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002059 if (png_ptr->prev_row != NULL)
Guy Schalnatc21f90c1996-06-17 16:24:45 -05002060 {
2061 png_bytep tptr;
2062
2063 tptr = png_ptr->prev_row;
2064 png_ptr->prev_row = png_ptr->row_buf;
2065 png_ptr->row_buf = tptr;
2066 }
2067
Guy Schalnate5a37791996-06-05 15:50:50 -05002068 /* finish row - updates counters and flushes zlib if last row */
2069 png_write_finish_row(png_ptr);
2070
2071#if defined(PNG_WRITE_FLUSH_SUPPORTED)
2072 png_ptr->flush_rows++;
2073
2074 if (png_ptr->flush_dist > 0 &&
2075 png_ptr->flush_rows >= png_ptr->flush_dist)
Guy Schalnat0d580581995-07-20 02:43:20 -05002076 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002077 png_write_flush(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002078 }
Guy Schalnate5a37791996-06-05 15:50:50 -05002079#endif /* PNG_WRITE_FLUSH_SUPPORTED */
Guy Schalnat0d580581995-07-20 02:43:20 -05002080}