blob: e7a6a3c0e134faee53654170e24781e6c1420c40 [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-Pehrson4393a9a1999-09-17 12:27:26 -05004 * libpng 1.0.4 - September 17, 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-Pehrson5c6aeb21998-12-29 11:47:59 -0600383 maxbits = color_type==PNG_COLOR_TYPE_PALETTE ? 8 : png_ptr->usr_bit_depth;
384 if (sbit->red == 0 || sbit->red > maxbits ||
385 sbit->green == 0 || sbit->green > maxbits ||
Guy Schalnate5a37791996-06-05 15:50:50 -0500386 sbit->blue == 0 || sbit->blue > maxbits)
387 {
388 png_warning(png_ptr, "Invalid sBIT depth specified");
389 return;
390 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500391 buf[0] = sbit->red;
392 buf[1] = sbit->green;
393 buf[2] = sbit->blue;
394 size = 3;
395 }
396 else
397 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500398 if (sbit->gray == 0 || sbit->gray > png_ptr->usr_bit_depth)
399 {
400 png_warning(png_ptr, "Invalid sBIT depth specified");
401 return;
402 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500403 buf[0] = sbit->gray;
404 size = 1;
405 }
406
407 if (color_type & PNG_COLOR_MASK_ALPHA)
408 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500409 if (sbit->alpha == 0 || sbit->alpha > png_ptr->usr_bit_depth)
410 {
411 png_warning(png_ptr, "Invalid sBIT depth specified");
412 return;
413 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500414 buf[size++] = sbit->alpha;
415 }
416
Andreas Dilger47a0c421997-05-16 02:46:07 -0500417 png_write_chunk(png_ptr, png_sBIT, buf, size);
Guy Schalnat0d580581995-07-20 02:43:20 -0500418}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500419#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500420
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500421#if defined(PNG_WRITE_cHRM_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500422/* write the cHRM chunk */
423void
Andreas Dilger47a0c421997-05-16 02:46:07 -0500424png_write_cHRM(png_structp png_ptr, double white_x, double white_y,
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600425 double red_x, double red_y, double green_x, double green_y,
426 double blue_x, double blue_y)
Guy Schalnat0d580581995-07-20 02:43:20 -0500427{
428 png_uint_32 itemp;
429 png_byte buf[32];
430
Andreas Dilger47a0c421997-05-16 02:46:07 -0500431 png_debug(1, "in png_write_cHRM\n");
Glenn Randers-Pehrson8f8fb6a1998-03-09 23:02:06 -0600432 /* each value is saved int 1/1000000ths */
Guy Schalnate5a37791996-06-05 15:50:50 -0500433 if (white_x < 0 || white_x > 0.8 || white_y < 0 || white_y > 0.8 ||
434 white_x + white_y > 1.0)
435 {
436 png_warning(png_ptr, "Invalid cHRM white point specified");
437 return;
438 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600439 itemp = (png_uint_32)(white_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500440 png_save_uint_32(buf, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600441 itemp = (png_uint_32)(white_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500442 png_save_uint_32(buf + 4, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500443
444 if (red_x < 0 || red_x > 0.8 || red_y < 0 || red_y > 0.8 ||
445 red_x + red_y > 1.0)
446 {
447 png_warning(png_ptr, "Invalid cHRM red point specified");
448 return;
449 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600450 itemp = (png_uint_32)(red_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500451 png_save_uint_32(buf + 8, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600452 itemp = (png_uint_32)(red_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500453 png_save_uint_32(buf + 12, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500454
455 if (green_x < 0 || green_x > 0.8 || green_y < 0 || green_y > 0.8 ||
456 green_x + green_y > 1.0)
457 {
458 png_warning(png_ptr, "Invalid cHRM green point specified");
459 return;
460 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600461 itemp = (png_uint_32)(green_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500462 png_save_uint_32(buf + 16, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600463 itemp = (png_uint_32)(green_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500464 png_save_uint_32(buf + 20, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500465
466 if (blue_x < 0 || blue_x > 0.8 || blue_y < 0 || blue_y > 0.8 ||
467 blue_x + blue_y > 1.0)
468 {
469 png_warning(png_ptr, "Invalid cHRM blue point specified");
470 return;
471 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600472 itemp = (png_uint_32)(blue_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500473 png_save_uint_32(buf + 24, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600474 itemp = (png_uint_32)(blue_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500475 png_save_uint_32(buf + 28, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500476
Andreas Dilger47a0c421997-05-16 02:46:07 -0500477 png_write_chunk(png_ptr, png_cHRM, buf, (png_size_t)32);
Guy Schalnat0d580581995-07-20 02:43:20 -0500478}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500479#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500480
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500481#if defined(PNG_WRITE_tRNS_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500482/* write the tRNS chunk */
483void
Guy Schalnat6d764711995-12-19 03:22:19 -0600484png_write_tRNS(png_structp png_ptr, png_bytep trans, png_color_16p tran,
Guy Schalnat0d580581995-07-20 02:43:20 -0500485 int num_trans, int color_type)
486{
487 png_byte buf[6];
488
Andreas Dilger47a0c421997-05-16 02:46:07 -0500489 png_debug(1, "in png_write_tRNS\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500490 if (color_type == PNG_COLOR_TYPE_PALETTE)
491 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600492 if (num_trans <= 0 || num_trans > (int)png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -0500493 {
494 png_warning(png_ptr,"Invalid number of transparent colors specified");
495 return;
496 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500497 /* write the chunk out as it is */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500498 png_write_chunk(png_ptr, png_tRNS, trans, (png_size_t)num_trans);
Guy Schalnat0d580581995-07-20 02:43:20 -0500499 }
500 else if (color_type == PNG_COLOR_TYPE_GRAY)
501 {
502 /* one 16 bit value */
503 png_save_uint_16(buf, tran->gray);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500504 png_write_chunk(png_ptr, png_tRNS, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -0500505 }
506 else if (color_type == PNG_COLOR_TYPE_RGB)
507 {
508 /* three 16 bit values */
509 png_save_uint_16(buf, tran->red);
510 png_save_uint_16(buf + 2, tran->green);
511 png_save_uint_16(buf + 4, tran->blue);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500512 png_write_chunk(png_ptr, png_tRNS, buf, (png_size_t)6);
Guy Schalnat0d580581995-07-20 02:43:20 -0500513 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500514 else
515 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600516 png_warning(png_ptr, "Can't write tRNS with an alpha channel");
Guy Schalnate5a37791996-06-05 15:50:50 -0500517 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500518}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500519#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500520
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500521#if defined(PNG_WRITE_bKGD_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500522/* write the background chunk */
523void
Guy Schalnat6d764711995-12-19 03:22:19 -0600524png_write_bKGD(png_structp png_ptr, png_color_16p back, int color_type)
Guy Schalnat0d580581995-07-20 02:43:20 -0500525{
526 png_byte buf[6];
527
Andreas Dilger47a0c421997-05-16 02:46:07 -0500528 png_debug(1, "in png_write_bKGD\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500529 if (color_type == PNG_COLOR_TYPE_PALETTE)
530 {
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500531 if (
532#ifdef PNG_WRITE_EMPTY_PLTE_SUPPORTED
533 (!png_ptr->empty_plte_permitted ||
534 (png_ptr->empty_plte_permitted && png_ptr->num_palette)) &&
535#endif
536 back->index > png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -0500537 {
538 png_warning(png_ptr, "Invalid background palette index");
539 return;
540 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500541 buf[0] = back->index;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500542 png_write_chunk(png_ptr, png_bKGD, buf, (png_size_t)1);
Guy Schalnat0d580581995-07-20 02:43:20 -0500543 }
544 else if (color_type & PNG_COLOR_MASK_COLOR)
545 {
546 png_save_uint_16(buf, back->red);
547 png_save_uint_16(buf + 2, back->green);
548 png_save_uint_16(buf + 4, back->blue);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500549 png_write_chunk(png_ptr, png_bKGD, buf, (png_size_t)6);
Guy Schalnat0d580581995-07-20 02:43:20 -0500550 }
551 else
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600552 {
Guy Schalnat0d580581995-07-20 02:43:20 -0500553 png_save_uint_16(buf, back->gray);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500554 png_write_chunk(png_ptr, png_bKGD, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -0500555 }
556}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500557#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500558
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500559#if defined(PNG_WRITE_hIST_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500560/* write the histogram */
561void
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600562png_write_hIST(png_structp png_ptr, png_uint_16p hist, int num_hist)
Guy Schalnat0d580581995-07-20 02:43:20 -0500563{
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600564 int i;
Guy Schalnat0d580581995-07-20 02:43:20 -0500565 png_byte buf[3];
566
Andreas Dilger47a0c421997-05-16 02:46:07 -0500567 png_debug(1, "in png_write_hIST\n");
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600568 if (num_hist > (int)png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -0500569 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500570 png_debug2(3, "num_hist = %d, num_palette = %d\n", num_hist,
571 png_ptr->num_palette);
Guy Schalnate5a37791996-06-05 15:50:50 -0500572 png_warning(png_ptr, "Invalid number of histogram entries specified");
573 return;
574 }
575
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600576 png_write_chunk_start(png_ptr, png_hIST, (png_uint_32)(num_hist * 2));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500577 for (i = 0; i < num_hist; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500578 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600579 png_save_uint_16(buf, hist[i]);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500580 png_write_chunk_data(png_ptr, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -0500581 }
582 png_write_chunk_end(png_ptr);
583}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500584#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500585
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500586#if defined(PNG_WRITE_tEXt_SUPPORTED) || defined(PNG_WRITE_zTXt_SUPPORTED) || \
587 defined(PNG_WRITE_pCAL_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600588/* Check that the tEXt or zTXt keyword is valid per PNG 1.0 specification,
589 * and if invalid, correct the keyword rather than discarding the entire
590 * chunk. The PNG 1.0 specification requires keywords 1-79 characters in
591 * length, forbids leading or trailing whitespace, multiple internal spaces,
592 * and the non-break space (0x80) from ISO 8859-1. Returns keyword length.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500593 *
594 * The new_key is allocated to hold the corrected keyword and must be freed
595 * by the calling routine. This avoids problems with trying to write to
596 * static keywords without having to have duplicate copies of the strings.
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600597 */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500598png_size_t
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600599png_check_keyword(png_structp png_ptr, png_charp key, png_charpp new_key)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600600{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500601 png_size_t key_len;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600602 png_charp kp, dp;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600603 int kflag;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600604
Andreas Dilger47a0c421997-05-16 02:46:07 -0500605 png_debug(1, "in png_check_keyword\n");
606 *new_key = NULL;
607
608 if (key == NULL || (key_len = png_strlen(key)) == 0)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600609 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600610 png_chunk_warning(png_ptr, "zero length keyword");
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600611 return ((png_size_t)0);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600612 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600613
Andreas Dilger47a0c421997-05-16 02:46:07 -0500614 png_debug1(2, "Keyword to be checked is '%s'\n", key);
615
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600616 *new_key = (png_charp)png_malloc(png_ptr, (png_uint_32)(key_len + 1));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600617
618 /* Replace non-printing characters with a blank and print a warning */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500619 for (kp = key, dp = *new_key; *kp != '\0'; kp++, dp++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600620 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600621 if (*kp < 0x20 || (*kp > 0x7E && (png_byte)*kp < 0xA1))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500622 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600623#if !defined(PNG_NO_STDIO)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500624 char msg[40];
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600625
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600626 sprintf(msg, "invalid keyword character 0x%02X", *kp);
627 png_chunk_warning(png_ptr, msg);
628#else
629 png_chunk_warning(png_ptr, "invalid character in keyword");
630#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500631 *dp = ' ';
632 }
633 else
634 {
635 *dp = *kp;
636 }
637 }
638 *dp = '\0';
639
640 /* Remove any trailing white space. */
641 kp = *new_key + key_len - 1;
642 if (*kp == ' ')
643 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600644 png_chunk_warning(png_ptr, "trailing spaces removed from keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500645
646 while (*kp == ' ')
647 {
648 *(kp--) = '\0';
649 key_len--;
650 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600651 }
652
653 /* Remove any leading white space. */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500654 kp = *new_key;
655 if (*kp == ' ')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600656 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600657 png_chunk_warning(png_ptr, "leading spaces removed from keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500658
659 while (*kp == ' ')
660 {
661 kp++;
662 key_len--;
663 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600664 }
665
Andreas Dilger47a0c421997-05-16 02:46:07 -0500666 png_debug1(2, "Checking for multiple internal spaces in '%s'\n", kp);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600667
Andreas Dilger47a0c421997-05-16 02:46:07 -0500668 /* Remove multiple internal spaces. */
669 for (kflag = 0, dp = *new_key; *kp != '\0'; kp++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600670 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500671 if (*kp == ' ' && kflag == 0)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600672 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500673 *(dp++) = *kp;
674 kflag = 1;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600675 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500676 else if (*kp == ' ')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600677 {
678 key_len--;
679 }
680 else
681 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500682 *(dp++) = *kp;
683 kflag = 0;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600684 }
685 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500686 *dp = '\0';
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600687
688 if (key_len == 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500689 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600690 png_chunk_warning(png_ptr, "zero length keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500691 }
692
693 if (key_len > 79)
694 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600695 png_chunk_warning(png_ptr, "keyword length must be 1 - 79 characters");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500696 new_key[79] = '\0';
697 key_len = 79;
698 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600699
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600700 return (key_len);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600701}
702#endif
703
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500704#if defined(PNG_WRITE_tEXt_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500705/* write a tEXt chunk */
706void
Guy Schalnat6d764711995-12-19 03:22:19 -0600707png_write_tEXt(png_structp png_ptr, png_charp key, png_charp text,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500708 png_size_t text_len)
Guy Schalnat0d580581995-07-20 02:43:20 -0500709{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500710 png_size_t key_len;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600711 png_charp new_key;
Guy Schalnat0d580581995-07-20 02:43:20 -0500712
Andreas Dilger47a0c421997-05-16 02:46:07 -0500713 png_debug(1, "in png_write_tEXt\n");
714 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
715 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600716 png_warning(png_ptr, "Empty keyword in tEXt chunk");
Guy Schalnate5a37791996-06-05 15:50:50 -0500717 return;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500718 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500719
Andreas Dilger47a0c421997-05-16 02:46:07 -0500720 if (text == NULL || *text == '\0')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600721 text_len = 0;
722
723 /* make sure we include the 0 after the key */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500724 png_write_chunk_start(png_ptr, png_tEXt, (png_uint_32)key_len+text_len+1);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500725 /*
726 * We leave it to the application to meet PNG-1.0 requirements on the
727 * contents of the text. PNG-1.0 through PNG-1.2 discourage the use of
728 * any non-Latin-1 characters except for NEWLINE. ISO PNG will forbid them.
729 */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600730 png_write_chunk_data(png_ptr, (png_bytep)new_key, key_len + 1);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600731 if (text_len)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500732 png_write_chunk_data(png_ptr, (png_bytep)text, text_len);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600733
Guy Schalnat0d580581995-07-20 02:43:20 -0500734 png_write_chunk_end(png_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500735 png_free(png_ptr, new_key);
Guy Schalnat0d580581995-07-20 02:43:20 -0500736}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500737#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500738
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500739#if defined(PNG_WRITE_zTXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500740/* write a compressed text chunk */
Guy Schalnat0d580581995-07-20 02:43:20 -0500741void
Guy Schalnat6d764711995-12-19 03:22:19 -0600742png_write_zTXt(png_structp png_ptr, png_charp key, png_charp text,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500743 png_size_t text_len, int compression)
Guy Schalnat0d580581995-07-20 02:43:20 -0500744{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500745 png_size_t key_len;
Guy Schalnat0d580581995-07-20 02:43:20 -0500746 char buf[1];
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600747 png_charp new_key;
Guy Schalnat0d580581995-07-20 02:43:20 -0500748 int i, ret;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600749 png_charpp output_ptr = NULL; /* array of pointers to output */
Guy Schalnat0d580581995-07-20 02:43:20 -0500750 int num_output_ptr = 0; /* number of output pointers used */
751 int max_output_ptr = 0; /* size of output_ptr */
752
Andreas Dilger47a0c421997-05-16 02:46:07 -0500753 png_debug(1, "in png_write_zTXt\n");
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600754
Andreas Dilger47a0c421997-05-16 02:46:07 -0500755 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
Guy Schalnate5a37791996-06-05 15:50:50 -0500756 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600757 png_warning(png_ptr, "Empty keyword in zTXt chunk");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500758 return;
Guy Schalnate5a37791996-06-05 15:50:50 -0500759 }
760
Andreas Dilger47a0c421997-05-16 02:46:07 -0500761 if (text == NULL || *text == '\0' || compression==PNG_TEXT_COMPRESSION_NONE)
762 {
763 png_write_tEXt(png_ptr, new_key, text, (png_size_t)0);
764 png_free(png_ptr, new_key);
765 return;
766 }
767
768 png_free(png_ptr, new_key);
769
770 if (compression >= PNG_TEXT_COMPRESSION_LAST)
771 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600772#if !defined(PNG_NO_STDIO)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500773 char msg[50];
774 sprintf(msg, "Unknown zTXt compression type %d", compression);
775 png_warning(png_ptr, msg);
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600776#else
777 png_warning(png_ptr, "Unknown zTXt compression type");
778#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500779 compression = PNG_TEXT_COMPRESSION_zTXt;
780 }
781
782 /* We can't write the chunk until we find out how much data we have,
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500783 * which means we need to run the compressor first and save the
Andreas Dilger47a0c421997-05-16 02:46:07 -0500784 * output. This shouldn't be a problem, as the vast majority of
785 * comments should be reasonable, but we will set up an array of
786 * malloc'd pointers to be sure.
787 *
788 * If we knew the application was well behaved, we could simplify this
789 * greatly by assuming we can always malloc an output buffer large
790 * enough to hold the compressed text ((1001 * text_len / 1000) + 12)
791 * and malloc this directly. The only time this would be a bad idea is
792 * if we can't malloc more than 64K and we have 64K of random input
793 * data, or if the input string is incredibly large (although this
794 * wouldn't cause a failure, just a slowdown due to swapping).
795 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500796
797 /* set up the compression buffers */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600798 png_ptr->zstream.avail_in = (uInt)text_len;
799 png_ptr->zstream.next_in = (Bytef *)text;
800 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
801 png_ptr->zstream.next_out = (Bytef *)png_ptr->zbuf;
Guy Schalnat0d580581995-07-20 02:43:20 -0500802
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600803 /* this is the same compression loop as in png_write_row() */
Guy Schalnat0d580581995-07-20 02:43:20 -0500804 do
805 {
806 /* compress the data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600807 ret = deflate(&png_ptr->zstream, Z_NO_FLUSH);
Guy Schalnat0d580581995-07-20 02:43:20 -0500808 if (ret != Z_OK)
809 {
810 /* error */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500811 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600812 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnat0d580581995-07-20 02:43:20 -0500813 else
Guy Schalnat6d764711995-12-19 03:22:19 -0600814 png_error(png_ptr, "zlib error");
Guy Schalnat0d580581995-07-20 02:43:20 -0500815 }
816 /* check to see if we need more room */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600817 if (!png_ptr->zstream.avail_out && png_ptr->zstream.avail_in)
Guy Schalnat0d580581995-07-20 02:43:20 -0500818 {
819 /* make sure the output array has room */
820 if (num_output_ptr >= max_output_ptr)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600821 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500822 int old_max;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500823
824 old_max = max_output_ptr;
Guy Schalnat0d580581995-07-20 02:43:20 -0500825 max_output_ptr = num_output_ptr + 4;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500826 if (output_ptr != NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600827 {
828 png_charpp old_ptr;
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600829
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600830 old_ptr = output_ptr;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600831 output_ptr = (png_charpp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600832 (png_uint_32)(max_output_ptr * sizeof (png_charpp)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500833 png_memcpy(output_ptr, old_ptr, old_max * sizeof (png_charp));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600834 png_free(png_ptr, old_ptr);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600835 }
836 else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600837 output_ptr = (png_charpp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600838 (png_uint_32)(max_output_ptr * sizeof (png_charp)));
Guy Schalnat0d580581995-07-20 02:43:20 -0500839 }
840
841 /* save the data */
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600842 output_ptr[num_output_ptr] = (png_charp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600843 (png_uint_32)png_ptr->zbuf_size);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500844 png_memcpy(output_ptr[num_output_ptr], png_ptr->zbuf,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500845 png_ptr->zbuf_size);
Guy Schalnat0d580581995-07-20 02:43:20 -0500846 num_output_ptr++;
847
848 /* and reset the buffer */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600849 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
850 png_ptr->zstream.next_out = png_ptr->zbuf;
Guy Schalnat0d580581995-07-20 02:43:20 -0500851 }
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -0500852 /* continue until we don't have any more to compress */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600853 } while (png_ptr->zstream.avail_in);
Guy Schalnat0d580581995-07-20 02:43:20 -0500854
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600855 /* finish the compression */
Guy Schalnat0d580581995-07-20 02:43:20 -0500856 do
857 {
858 /* tell zlib we are finished */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600859 ret = deflate(&png_ptr->zstream, Z_FINISH);
Guy Schalnat0d580581995-07-20 02:43:20 -0500860 if (ret != Z_OK && ret != Z_STREAM_END)
861 {
862 /* we got an error */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500863 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600864 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnat0d580581995-07-20 02:43:20 -0500865 else
Guy Schalnat6d764711995-12-19 03:22:19 -0600866 png_error(png_ptr, "zlib error");
Guy Schalnat0d580581995-07-20 02:43:20 -0500867 }
868
869 /* check to see if we need more room */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500870 if (!(png_ptr->zstream.avail_out) && ret == Z_OK)
Guy Schalnat0d580581995-07-20 02:43:20 -0500871 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600872 /* check to make sure our output array has room */
873 if (num_output_ptr >= max_output_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500874 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500875 int old_max;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500876
877 old_max = max_output_ptr;
Guy Schalnat0d580581995-07-20 02:43:20 -0500878 max_output_ptr = num_output_ptr + 4;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500879 if (output_ptr != NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600880 {
881 png_charpp old_ptr;
Guy Schalnat0d580581995-07-20 02:43:20 -0500882
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600883 old_ptr = output_ptr;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500884 /* This could be optimized to realloc() */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600885 output_ptr = (png_charpp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600886 (png_uint_32)(max_output_ptr * sizeof (png_charpp)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500887 png_memcpy(output_ptr, old_ptr, old_max * sizeof (png_charp));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600888 png_free(png_ptr, old_ptr);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600889 }
890 else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600891 output_ptr = (png_charpp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600892 (png_uint_32)(max_output_ptr * sizeof (png_charp)));
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600893 }
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600894
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600895 /* save off the data */
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600896 output_ptr[num_output_ptr] = (png_charp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600897 (png_uint_32)png_ptr->zbuf_size);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600898 png_memcpy(output_ptr[num_output_ptr], png_ptr->zbuf,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500899 png_ptr->zbuf_size);
Guy Schalnat0d580581995-07-20 02:43:20 -0500900 num_output_ptr++;
901
902 /* and reset the buffer pointers */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600903 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
904 png_ptr->zstream.next_out = png_ptr->zbuf;
Guy Schalnat0d580581995-07-20 02:43:20 -0500905 }
906 } while (ret != Z_STREAM_END);
907
908 /* text length is number of buffers plus last buffer */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600909 text_len = png_ptr->zbuf_size * num_output_ptr;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600910 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500911 text_len += png_ptr->zbuf_size - (png_size_t)png_ptr->zstream.avail_out;
Guy Schalnat0d580581995-07-20 02:43:20 -0500912
913 /* write start of chunk */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500914 png_write_chunk_start(png_ptr, png_zTXt, (png_uint_32)(key_len+text_len+2));
Guy Schalnat0d580581995-07-20 02:43:20 -0500915 /* write key */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500916 png_write_chunk_data(png_ptr, (png_bytep)key, key_len + 1);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600917 buf[0] = (png_byte)compression;
Guy Schalnat0d580581995-07-20 02:43:20 -0500918 /* write compression */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500919 png_write_chunk_data(png_ptr, (png_bytep)buf, (png_size_t)1);
Guy Schalnat0d580581995-07-20 02:43:20 -0500920
921 /* write saved output buffers, if any */
922 for (i = 0; i < num_output_ptr; i++)
923 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500924 png_write_chunk_data(png_ptr,(png_bytep)output_ptr[i],png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600925 png_free(png_ptr, output_ptr[i]);
Guy Schalnat0d580581995-07-20 02:43:20 -0500926 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500927 if (max_output_ptr != 0)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600928 png_free(png_ptr, output_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -0500929 /* write anything left in zbuf */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500930 if (png_ptr->zstream.avail_out < (png_uint_32)png_ptr->zbuf_size)
Guy Schalnat0d580581995-07-20 02:43:20 -0500931 png_write_chunk_data(png_ptr, png_ptr->zbuf,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600932 png_ptr->zbuf_size - png_ptr->zstream.avail_out);
Guy Schalnat0d580581995-07-20 02:43:20 -0500933 /* close the chunk */
934 png_write_chunk_end(png_ptr);
935
936 /* reset zlib for another zTXt or the image data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600937 deflateReset(&png_ptr->zstream);
Guy Schalnat0d580581995-07-20 02:43:20 -0500938}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500939#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500940
Andreas Dilger47a0c421997-05-16 02:46:07 -0500941
942#if defined(PNG_WRITE_oFFs_SUPPORTED)
943/* write the oFFs chunk */
944void
945png_write_oFFs(png_structp png_ptr, png_uint_32 x_offset,
946 png_uint_32 y_offset,
947 int unit_type)
948{
949 png_byte buf[9];
950
951 png_debug(1, "in png_write_oFFs\n");
952 if (unit_type >= PNG_OFFSET_LAST)
953 png_warning(png_ptr, "Unrecognized unit type for oFFs chunk");
954
955 png_save_uint_32(buf, x_offset);
956 png_save_uint_32(buf + 4, y_offset);
957 buf[8] = (png_byte)unit_type;
958
959 png_write_chunk(png_ptr, png_oFFs, buf, (png_size_t)9);
960}
961#endif
962
963#if defined(PNG_WRITE_pCAL_SUPPORTED)
964/* write the pCAL chunk (png-scivis-19970203) */
965void
966png_write_pCAL(png_structp png_ptr, png_charp purpose, png_int_32 X0,
967 png_int_32 X1, int type, int nparams, png_charp units, png_charpp params)
968{
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600969 png_size_t purpose_len, units_len, total_len;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500970 png_uint_32p params_len;
971 png_byte buf[10];
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600972 png_charp new_purpose;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500973 int i;
974
975 png_debug1(1, "in png_write_pCAL (%d parameters)\n", nparams);
976 if (type >= PNG_EQUATION_LAST)
977 png_warning(png_ptr, "Unrecognized equation type for pCAL chunk");
978
979 purpose_len = png_check_keyword(png_ptr, purpose, &new_purpose) + 1;
980 png_debug1(3, "pCAL purpose length = %d\n", purpose_len);
981 units_len = png_strlen(units) + (nparams == 0 ? 0 : 1);
982 png_debug1(3, "pCAL units length = %d\n", units_len);
983 total_len = purpose_len + units_len + 10;
984
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600985 params_len = (png_uint_32p)png_malloc(png_ptr, (png_uint_32)(nparams
986 *sizeof(png_uint_32)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500987
988 /* Find the length of each parameter, making sure we don't count the
989 null terminator for the last parameter. */
990 for (i = 0; i < nparams; i++)
991 {
992 params_len[i] = png_strlen(params[i]) + (i == nparams - 1 ? 0 : 1);
993 png_debug2(3, "pCAL parameter %d length = %d\n", i, params_len[i]);
994 total_len += (png_size_t)params_len[i];
995 }
996
997 png_debug1(3, "pCAL total length = %d\n", total_len);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600998 png_write_chunk_start(png_ptr, png_pCAL, (png_uint_32)total_len);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600999 png_write_chunk_data(png_ptr, (png_bytep)new_purpose, purpose_len);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001000 png_save_int_32(buf, X0);
1001 png_save_int_32(buf + 4, X1);
1002 buf[8] = (png_byte)type;
1003 buf[9] = (png_byte)nparams;
1004 png_write_chunk_data(png_ptr, buf, (png_size_t)10);
1005 png_write_chunk_data(png_ptr, (png_bytep)units, (png_size_t)units_len);
1006
1007 png_free(png_ptr, new_purpose);
1008
1009 for (i = 0; i < nparams; i++)
1010 {
1011 png_write_chunk_data(png_ptr, (png_bytep)params[i],
1012 (png_size_t)params_len[i]);
1013 }
1014
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001015 png_free(png_ptr, params_len);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001016 png_write_chunk_end(png_ptr);
1017}
1018#endif
1019
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001020#if defined(PNG_WRITE_pHYs_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001021/* write the pHYs chunk */
1022void
Guy Schalnat6d764711995-12-19 03:22:19 -06001023png_write_pHYs(png_structp png_ptr, png_uint_32 x_pixels_per_unit,
Guy Schalnat0d580581995-07-20 02:43:20 -05001024 png_uint_32 y_pixels_per_unit,
1025 int unit_type)
1026{
1027 png_byte buf[9];
1028
Andreas Dilger47a0c421997-05-16 02:46:07 -05001029 png_debug(1, "in png_write_pHYs\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001030 if (unit_type >= PNG_RESOLUTION_LAST)
1031 png_warning(png_ptr, "Unrecognized unit type for pHYs chunk");
1032
Guy Schalnat0d580581995-07-20 02:43:20 -05001033 png_save_uint_32(buf, x_pixels_per_unit);
1034 png_save_uint_32(buf + 4, y_pixels_per_unit);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001035 buf[8] = (png_byte)unit_type;
Guy Schalnat0d580581995-07-20 02:43:20 -05001036
Andreas Dilger47a0c421997-05-16 02:46:07 -05001037 png_write_chunk(png_ptr, png_pHYs, buf, (png_size_t)9);
Guy Schalnat0d580581995-07-20 02:43:20 -05001038}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001039#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001040
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001041#if defined(PNG_WRITE_tIME_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001042/* Write the tIME chunk. Use either png_convert_from_struct_tm()
1043 * or png_convert_from_time_t(), or fill in the structure yourself.
1044 */
Guy Schalnat0d580581995-07-20 02:43:20 -05001045void
Guy Schalnat6d764711995-12-19 03:22:19 -06001046png_write_tIME(png_structp png_ptr, png_timep mod_time)
Guy Schalnat0d580581995-07-20 02:43:20 -05001047{
1048 png_byte buf[7];
1049
Andreas Dilger47a0c421997-05-16 02:46:07 -05001050 png_debug(1, "in png_write_tIME\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001051 if (mod_time->month > 12 || mod_time->month < 1 ||
1052 mod_time->day > 31 || mod_time->day < 1 ||
1053 mod_time->hour > 23 || mod_time->second > 60)
1054 {
1055 png_warning(png_ptr, "Invalid time specified for tIME chunk");
1056 return;
1057 }
1058
Guy Schalnat0d580581995-07-20 02:43:20 -05001059 png_save_uint_16(buf, mod_time->year);
1060 buf[2] = mod_time->month;
1061 buf[3] = mod_time->day;
1062 buf[4] = mod_time->hour;
1063 buf[5] = mod_time->minute;
1064 buf[6] = mod_time->second;
1065
Andreas Dilger47a0c421997-05-16 02:46:07 -05001066 png_write_chunk(png_ptr, png_tIME, buf, (png_size_t)7);
Guy Schalnat0d580581995-07-20 02:43:20 -05001067}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001068#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001069
1070/* initializes the row writing capability of libpng */
1071void
Guy Schalnat6d764711995-12-19 03:22:19 -06001072png_write_start_row(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05001073{
Andreas Dilger47a0c421997-05-16 02:46:07 -05001074 png_size_t buf_size;
1075
1076 png_debug(1, "in png_write_start_row\n");
1077 buf_size = (png_size_t)(((png_ptr->width * png_ptr->usr_channels *
1078 png_ptr->usr_bit_depth + 7) >> 3) + 1);
1079
Guy Schalnat0d580581995-07-20 02:43:20 -05001080 /* set up row buffer */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001081 png_ptr->row_buf = (png_bytep)png_malloc(png_ptr, (png_uint_32)buf_size);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001082 png_ptr->row_buf[0] = PNG_FILTER_VALUE_NONE;
Guy Schalnate5a37791996-06-05 15:50:50 -05001083
1084 /* set up filtering buffer, if using this filter */
1085 if (png_ptr->do_filter & PNG_FILTER_SUB)
Guy Schalnat0d580581995-07-20 02:43:20 -05001086 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001087 png_ptr->sub_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001088 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001089 png_ptr->sub_row[0] = PNG_FILTER_VALUE_SUB;
Guy Schalnate5a37791996-06-05 15:50:50 -05001090 }
1091
Andreas Dilger47a0c421997-05-16 02:46:07 -05001092 /* We only need to keep the previous row if we are using one of these. */
Guy Schalnate5a37791996-06-05 15:50:50 -05001093 if (png_ptr->do_filter & (PNG_FILTER_AVG | PNG_FILTER_UP | PNG_FILTER_PAETH))
1094 {
1095 /* set up previous row buffer */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001096 png_ptr->prev_row = (png_bytep)png_malloc(png_ptr, (png_uint_32)buf_size);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001097 png_memset(png_ptr->prev_row, 0, buf_size);
Guy Schalnate5a37791996-06-05 15:50:50 -05001098
1099 if (png_ptr->do_filter & PNG_FILTER_UP)
1100 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001101 png_ptr->up_row = (png_bytep )png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001102 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001103 png_ptr->up_row[0] = PNG_FILTER_VALUE_UP;
Guy Schalnate5a37791996-06-05 15:50:50 -05001104 }
1105
1106 if (png_ptr->do_filter & PNG_FILTER_AVG)
1107 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001108 png_ptr->avg_row = (png_bytep)png_malloc(png_ptr,
1109 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001110 png_ptr->avg_row[0] = PNG_FILTER_VALUE_AVG;
Guy Schalnate5a37791996-06-05 15:50:50 -05001111 }
1112
1113 if (png_ptr->do_filter & PNG_FILTER_PAETH)
1114 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001115 png_ptr->paeth_row = (png_bytep )png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001116 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001117 png_ptr->paeth_row[0] = PNG_FILTER_VALUE_PAETH;
Guy Schalnate5a37791996-06-05 15:50:50 -05001118 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001119 }
1120
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001121#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05001122 /* if interlaced, we need to set up width and height of pass */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001123 if (png_ptr->interlaced)
Guy Schalnat0d580581995-07-20 02:43:20 -05001124 {
1125 if (!(png_ptr->transformations & PNG_INTERLACE))
1126 {
1127 png_ptr->num_rows = (png_ptr->height + png_pass_yinc[0] - 1 -
1128 png_pass_ystart[0]) / png_pass_yinc[0];
Andreas Dilger47a0c421997-05-16 02:46:07 -05001129 png_ptr->usr_width = (png_ptr->width + png_pass_inc[0] - 1 -
1130 png_pass_start[0]) / png_pass_inc[0];
Guy Schalnat0d580581995-07-20 02:43:20 -05001131 }
1132 else
1133 {
1134 png_ptr->num_rows = png_ptr->height;
1135 png_ptr->usr_width = png_ptr->width;
1136 }
1137 }
1138 else
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001139#endif
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001140 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001141 png_ptr->num_rows = png_ptr->height;
1142 png_ptr->usr_width = png_ptr->width;
1143 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001144 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
1145 png_ptr->zstream.next_out = png_ptr->zbuf;
Guy Schalnat0d580581995-07-20 02:43:20 -05001146}
1147
Andreas Dilger47a0c421997-05-16 02:46:07 -05001148/* Internal use only. Called when finished processing a row of data. */
Guy Schalnat0d580581995-07-20 02:43:20 -05001149void
Guy Schalnat6d764711995-12-19 03:22:19 -06001150png_write_finish_row(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05001151{
1152 int ret;
1153
Andreas Dilger47a0c421997-05-16 02:46:07 -05001154 png_debug(1, "in png_write_finish_row\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001155 /* next row */
1156 png_ptr->row_number++;
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001157
Guy Schalnat0d580581995-07-20 02:43:20 -05001158 /* see if we are done */
Guy Schalnat6d764711995-12-19 03:22:19 -06001159 if (png_ptr->row_number < png_ptr->num_rows)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001160 return;
Guy Schalnat0d580581995-07-20 02:43:20 -05001161
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001162#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05001163 /* if interlaced, go to next pass */
1164 if (png_ptr->interlaced)
1165 {
1166 png_ptr->row_number = 0;
1167 if (png_ptr->transformations & PNG_INTERLACE)
1168 {
1169 png_ptr->pass++;
1170 }
1171 else
1172 {
1173 /* loop until we find a non-zero width or height pass */
1174 do
1175 {
1176 png_ptr->pass++;
1177 if (png_ptr->pass >= 7)
1178 break;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001179 png_ptr->usr_width = (png_ptr->width +
Guy Schalnat0d580581995-07-20 02:43:20 -05001180 png_pass_inc[png_ptr->pass] - 1 -
1181 png_pass_start[png_ptr->pass]) /
1182 png_pass_inc[png_ptr->pass];
1183 png_ptr->num_rows = (png_ptr->height +
1184 png_pass_yinc[png_ptr->pass] - 1 -
1185 png_pass_ystart[png_ptr->pass]) /
1186 png_pass_yinc[png_ptr->pass];
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001187 if (png_ptr->transformations & PNG_INTERLACE)
1188 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05001189 } while (png_ptr->usr_width == 0 || png_ptr->num_rows == 0);
1190
1191 }
1192
Guy Schalnate5a37791996-06-05 15:50:50 -05001193 /* reset the row above the image for the next pass */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001194 if (png_ptr->pass < 7)
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001195 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001196 if (png_ptr->prev_row != NULL)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001197 png_memset(png_ptr->prev_row, 0,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001198 (png_size_t) (((png_uint_32)png_ptr->usr_channels *
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001199 (png_uint_32)png_ptr->usr_bit_depth *
1200 png_ptr->width + 7) >> 3) + 1);
Guy Schalnat0d580581995-07-20 02:43:20 -05001201 return;
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001202 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001203 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001204#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001205
1206 /* if we get here, we've just written the last row, so we need
1207 to flush the compressor */
1208 do
1209 {
1210 /* tell the compressor we are done */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001211 ret = deflate(&png_ptr->zstream, Z_FINISH);
Guy Schalnat0d580581995-07-20 02:43:20 -05001212 /* check for an error */
1213 if (ret != Z_OK && ret != Z_STREAM_END)
1214 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001215 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001216 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnat0d580581995-07-20 02:43:20 -05001217 else
Guy Schalnat6d764711995-12-19 03:22:19 -06001218 png_error(png_ptr, "zlib error");
Guy Schalnat0d580581995-07-20 02:43:20 -05001219 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001220 /* check to see if we need more room */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001221 if (!(png_ptr->zstream.avail_out) && ret == Z_OK)
Guy Schalnat0d580581995-07-20 02:43:20 -05001222 {
1223 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001224 png_ptr->zstream.next_out = png_ptr->zbuf;
1225 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnat0d580581995-07-20 02:43:20 -05001226 }
1227 } while (ret != Z_STREAM_END);
1228
1229 /* write any extra space */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001230 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size)
Guy Schalnat0d580581995-07-20 02:43:20 -05001231 {
1232 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size -
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001233 png_ptr->zstream.avail_out);
Guy Schalnat0d580581995-07-20 02:43:20 -05001234 }
1235
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001236 deflateReset(&png_ptr->zstream);
Guy Schalnat0d580581995-07-20 02:43:20 -05001237}
1238
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001239#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001240/* Pick out the correct pixels for the interlace pass.
1241 * The basic idea here is to go through the row with a source
1242 * pointer and a destination pointer (sp and dp), and copy the
1243 * correct pixels for the pass. As the row gets compacted,
1244 * sp will always be >= dp, so we should never overwrite anything.
1245 * See the default: case for the easiest code to understand.
1246 */
Guy Schalnat0d580581995-07-20 02:43:20 -05001247void
Guy Schalnat6d764711995-12-19 03:22:19 -06001248png_do_write_interlace(png_row_infop row_info, png_bytep row, int pass)
Guy Schalnat0d580581995-07-20 02:43:20 -05001249{
Andreas Dilger47a0c421997-05-16 02:46:07 -05001250 png_debug(1, "in png_do_write_interlace\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001251 /* we don't have to do anything on the last pass (6) */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001252#if defined(PNG_USELESS_TESTS_SUPPORTED)
1253 if (row != NULL && row_info != NULL && pass < 6)
1254#else
1255 if (pass < 6)
1256#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001257 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001258 /* each pixel depth is handled separately */
Guy Schalnat0d580581995-07-20 02:43:20 -05001259 switch (row_info->pixel_depth)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001260 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001261 case 1:
1262 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001263 png_bytep sp;
1264 png_bytep dp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001265 int shift;
1266 int d;
1267 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001268 png_uint_32 i;
1269 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001270
1271 dp = row;
1272 d = 0;
1273 shift = 7;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001274 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001275 i += png_pass_inc[pass])
1276 {
1277 sp = row + (png_size_t)(i >> 3);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001278 value = (int)(*sp >> (7 - (int)(i & 7))) & 0x1;
Guy Schalnat0d580581995-07-20 02:43:20 -05001279 d |= (value << shift);
1280
1281 if (shift == 0)
1282 {
1283 shift = 7;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001284 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001285 d = 0;
1286 }
1287 else
1288 shift--;
1289
1290 }
1291 if (shift != 7)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001292 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001293 break;
1294 }
1295 case 2:
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001296 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001297 png_bytep sp;
1298 png_bytep dp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001299 int shift;
1300 int d;
1301 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001302 png_uint_32 i;
1303 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001304
1305 dp = row;
1306 shift = 6;
1307 d = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001308 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001309 i += png_pass_inc[pass])
1310 {
1311 sp = row + (png_size_t)(i >> 2);
1312 value = (*sp >> ((3 - (int)(i & 3)) << 1)) & 0x3;
1313 d |= (value << shift);
1314
1315 if (shift == 0)
1316 {
1317 shift = 6;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001318 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001319 d = 0;
1320 }
1321 else
1322 shift -= 2;
1323 }
1324 if (shift != 6)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001325 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001326 break;
1327 }
1328 case 4:
1329 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001330 png_bytep sp;
1331 png_bytep dp;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001332 int shift;
Guy Schalnat0d580581995-07-20 02:43:20 -05001333 int d;
1334 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001335 png_uint_32 i;
1336 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001337
1338 dp = row;
1339 shift = 4;
1340 d = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001341 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001342 i += png_pass_inc[pass])
1343 {
1344 sp = row + (png_size_t)(i >> 1);
1345 value = (*sp >> ((1 - (int)(i & 1)) << 2)) & 0xf;
1346 d |= (value << shift);
1347
1348 if (shift == 0)
1349 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001350 shift = 4;
1351 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001352 d = 0;
1353 }
1354 else
1355 shift -= 4;
1356 }
1357 if (shift != 4)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001358 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001359 break;
1360 }
1361 default:
1362 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001363 png_bytep sp;
1364 png_bytep dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001365 png_uint_32 i;
1366 png_uint_32 row_width = row_info->width;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001367 png_size_t pixel_bytes;
Guy Schalnat0d580581995-07-20 02:43:20 -05001368
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001369 /* start at the beginning */
Guy Schalnat0d580581995-07-20 02:43:20 -05001370 dp = row;
1371 /* find out how many bytes each pixel takes up */
1372 pixel_bytes = (row_info->pixel_depth >> 3);
1373 /* loop through the row, only looking at the pixels that
1374 matter */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001375 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001376 i += png_pass_inc[pass])
1377 {
1378 /* find out where the original pixel is */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001379 sp = row + (png_size_t)i * pixel_bytes;
Guy Schalnat0d580581995-07-20 02:43:20 -05001380 /* move the pixel */
1381 if (dp != sp)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001382 png_memcpy(dp, sp, pixel_bytes);
Guy Schalnat0d580581995-07-20 02:43:20 -05001383 /* next pixel */
1384 dp += pixel_bytes;
1385 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001386 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05001387 }
1388 }
1389 /* set new row width */
1390 row_info->width = (row_info->width +
1391 png_pass_inc[pass] - 1 -
1392 png_pass_start[pass]) /
1393 png_pass_inc[pass];
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001394 row_info->rowbytes = ((row_info->width *
1395 row_info->pixel_depth + 7) >> 3);
Guy Schalnat0d580581995-07-20 02:43:20 -05001396 }
1397}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001398#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001399
Andreas Dilger47a0c421997-05-16 02:46:07 -05001400/* This filters the row, chooses which filter to use, if it has not already
1401 * been specified by the application, and then writes the row out with the
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001402 * chosen filter.
1403 */
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001404#define PNG_MAXSUM (~((png_uint_32)0) >> 1)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001405#define PNG_HISHIFT 10
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001406#define PNG_LOMASK ((png_uint_32)0xffffL)
1407#define PNG_HIMASK ((png_uint_32)(~PNG_LOMASK >> PNG_HISHIFT))
Guy Schalnat0d580581995-07-20 02:43:20 -05001408void
Guy Schalnate5a37791996-06-05 15:50:50 -05001409png_write_find_filter(png_structp png_ptr, png_row_infop row_info)
Guy Schalnat0d580581995-07-20 02:43:20 -05001410{
Guy Schalnate5a37791996-06-05 15:50:50 -05001411 png_bytep prev_row, best_row, row_buf;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001412 png_uint_32 mins, bpp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001413 png_byte filter_to_do = png_ptr->do_filter;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001414 png_uint_32 row_bytes = row_info->rowbytes;
1415#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1416 int num_p_filters = (int)png_ptr->num_prev_filters;
1417#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001418
Andreas Dilger47a0c421997-05-16 02:46:07 -05001419 png_debug(1, "in png_write_find_filter\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001420 /* find out how many bytes offset each pixel is */
1421 bpp = (row_info->pixel_depth + 7) / 8;
Guy Schalnate5a37791996-06-05 15:50:50 -05001422
1423 prev_row = png_ptr->prev_row;
1424 best_row = row_buf = png_ptr->row_buf;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001425 mins = PNG_MAXSUM;
Guy Schalnat0d580581995-07-20 02:43:20 -05001426
Andreas Dilger47a0c421997-05-16 02:46:07 -05001427 /* The prediction method we use is to find which method provides the
1428 * smallest value when summing the absolute values of the distances
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -05001429 * from zero, using anything >= 128 as negative numbers. This is known
Andreas Dilger47a0c421997-05-16 02:46:07 -05001430 * as the "minimum sum of absolute differences" heuristic. Other
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001431 * heuristics are the "weighted minimum sum of absolute differences"
Andreas Dilger47a0c421997-05-16 02:46:07 -05001432 * (experimental and can in theory improve compression), and the "zlib
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001433 * predictive" method (not implemented yet), which does test compressions
1434 * of lines using different filter methods, and then chooses the
1435 * (series of) filter(s) that give minimum compressed data size (VERY
Andreas Dilger47a0c421997-05-16 02:46:07 -05001436 * computationally expensive).
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001437 *
1438 * GRR 980525: consider also
1439 * (1) minimum sum of absolute differences from running average (i.e.,
1440 * keep running sum of non-absolute differences & count of bytes)
1441 * [track dispersion, too? restart average if dispersion too large?]
1442 * (1b) minimum sum of absolute differences from sliding average, probably
1443 * with window size <= deflate window (usually 32K)
1444 * (2) minimum sum of squared differences from zero or running average
1445 * (i.e., ~ root-mean-square approach)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001446 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001447
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001448
Guy Schalnate5a37791996-06-05 15:50:50 -05001449 /* We don't need to test the 'no filter' case if this is the only filter
Andreas Dilger47a0c421997-05-16 02:46:07 -05001450 * that has been chosen, as it doesn't actually do anything to the data.
1451 */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001452 if (filter_to_do & PNG_FILTER_NONE &&
1453 filter_to_do != PNG_FILTER_NONE)
Guy Schalnat0d580581995-07-20 02:43:20 -05001454 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001455 png_bytep rp;
1456 png_uint_32 sum = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001457 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001458 int v;
Guy Schalnat0d580581995-07-20 02:43:20 -05001459
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001460 for (i = 0, rp = row_buf + 1; i < row_bytes; i++, rp++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001461 {
1462 v = *rp;
1463 sum += (v < 128) ? v : 256 - v;
1464 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001465
1466#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1467 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1468 {
1469 png_uint_32 sumhi, sumlo;
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001470 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001471 sumlo = sum & PNG_LOMASK;
1472 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK; /* Gives us some footroom */
1473
1474 /* Reduce the sum if we match any of the previous rows */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001475 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001476 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001477 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_NONE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001478 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001479 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001480 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001481 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001482 PNG_WEIGHT_SHIFT;
1483 }
1484 }
1485
1486 /* Factor in the cost of this filter (this is here for completeness,
1487 * but it makes no sense to have a "cost" for the NONE filter, as
1488 * it has the minimum possible computational cost - none).
1489 */
1490 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_NONE]) >>
1491 PNG_COST_SHIFT;
1492 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_NONE]) >>
1493 PNG_COST_SHIFT;
1494
1495 if (sumhi > PNG_HIMASK)
1496 sum = PNG_MAXSUM;
1497 else
1498 sum = (sumhi << PNG_HISHIFT) + sumlo;
1499 }
1500#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001501 mins = sum;
Guy Schalnat0d580581995-07-20 02:43:20 -05001502 }
1503
Guy Schalnate5a37791996-06-05 15:50:50 -05001504 /* sub filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001505 if (filter_to_do == PNG_FILTER_SUB)
1506 /* it's the only filter so no testing is needed */
1507 {
1508 png_bytep rp, lp, dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001509 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001510 for (i = 0, rp = row_buf + 1, dp = png_ptr->sub_row + 1; i < bpp;
1511 i++, rp++, dp++)
1512 {
1513 *dp = *rp;
1514 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001515 for (lp = row_buf + 1; i < row_bytes;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001516 i++, rp++, lp++, dp++)
1517 {
1518 *dp = (png_byte)(((int)*rp - (int)*lp) & 0xff);
1519 }
1520 best_row = png_ptr->sub_row;
1521 }
1522
1523 else if (filter_to_do & PNG_FILTER_SUB)
Guy Schalnat0d580581995-07-20 02:43:20 -05001524 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001525 png_bytep rp, dp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001526 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001527 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001528 int v;
1529
1530#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001531 /* We temporarily increase the "minimum sum" by the factor we
Andreas Dilger47a0c421997-05-16 02:46:07 -05001532 * would reduce the sum of this filter, so that we can do the
1533 * early exit comparison without scaling the sum each time.
1534 */
1535 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1536 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001537 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001538 png_uint_32 lmhi, lmlo;
1539 lmlo = lmins & PNG_LOMASK;
1540 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
1541
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001542 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001543 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001544 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_SUB)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001545 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001546 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001547 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001548 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001549 PNG_WEIGHT_SHIFT;
1550 }
1551 }
1552
1553 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
1554 PNG_COST_SHIFT;
1555 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
1556 PNG_COST_SHIFT;
1557
1558 if (lmhi > PNG_HIMASK)
1559 lmins = PNG_MAXSUM;
1560 else
1561 lmins = (lmhi << PNG_HISHIFT) + lmlo;
1562 }
1563#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001564
Guy Schalnate5a37791996-06-05 15:50:50 -05001565 for (i = 0, rp = row_buf + 1, dp = png_ptr->sub_row + 1; i < bpp;
1566 i++, rp++, dp++)
1567 {
1568 v = *dp = *rp;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001569
Guy Schalnate5a37791996-06-05 15:50:50 -05001570 sum += (v < 128) ? v : 256 - v;
1571 }
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001572 for (lp = row_buf + 1; i < row_info->rowbytes;
1573 i++, rp++, lp++, dp++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001574 {
1575 v = *dp = (png_byte)(((int)*rp - (int)*lp) & 0xff);
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001576
Guy Schalnate5a37791996-06-05 15:50:50 -05001577 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001578
1579 if (sum > lmins) /* We are already worse, don't continue. */
1580 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05001581 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001582
1583#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1584 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1585 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001586 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001587 png_uint_32 sumhi, sumlo;
1588 sumlo = sum & PNG_LOMASK;
1589 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
1590
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001591 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001592 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001593 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_SUB)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001594 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001595 sumlo = (sumlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001596 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001597 sumhi = (sumhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001598 PNG_WEIGHT_SHIFT;
1599 }
1600 }
1601
1602 sumlo = (sumlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
1603 PNG_COST_SHIFT;
1604 sumhi = (sumhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
1605 PNG_COST_SHIFT;
1606
1607 if (sumhi > PNG_HIMASK)
1608 sum = PNG_MAXSUM;
1609 else
1610 sum = (sumhi << PNG_HISHIFT) + sumlo;
1611 }
1612#endif
1613
Guy Schalnate5a37791996-06-05 15:50:50 -05001614 if (sum < mins)
1615 {
1616 mins = sum;
1617 best_row = png_ptr->sub_row;
1618 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001619 }
1620
Guy Schalnate5a37791996-06-05 15:50:50 -05001621 /* up filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001622 if (filter_to_do == PNG_FILTER_UP)
1623 {
1624 png_bytep rp, dp, pp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001625 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001626
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001627 for (i = 0, rp = row_buf + 1, dp = png_ptr->up_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001628 pp = prev_row + 1; i < row_bytes;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001629 i++, rp++, pp++, dp++)
1630 {
1631 *dp = (png_byte)(((int)*rp - (int)*pp) & 0xff);
1632 }
1633 best_row = png_ptr->up_row;
1634 }
1635
1636 else if (filter_to_do & PNG_FILTER_UP)
Guy Schalnat0d580581995-07-20 02:43:20 -05001637 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001638 png_bytep rp, dp, pp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001639 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001640 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001641 int v;
1642
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001643
Andreas Dilger47a0c421997-05-16 02:46:07 -05001644#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1645 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1646 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001647 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001648 png_uint_32 lmhi, lmlo;
1649 lmlo = lmins & PNG_LOMASK;
1650 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
1651
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001652 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001653 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001654 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_UP)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001655 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001656 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001657 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001658 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001659 PNG_WEIGHT_SHIFT;
1660 }
1661 }
1662
1663 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_UP]) >>
1664 PNG_COST_SHIFT;
1665 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_UP]) >>
1666 PNG_COST_SHIFT;
1667
1668 if (lmhi > PNG_HIMASK)
1669 lmins = PNG_MAXSUM;
1670 else
1671 lmins = (lmhi << PNG_HISHIFT) + lmlo;
1672 }
1673#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001674
1675 for (i = 0, rp = row_buf + 1, dp = png_ptr->up_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001676 pp = prev_row + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001677 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001678 v = *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05001679
1680 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001681
1682 if (sum > lmins) /* We are already worse, don't continue. */
1683 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05001684 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001685
1686#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1687 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1688 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001689 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001690 png_uint_32 sumhi, sumlo;
1691 sumlo = sum & PNG_LOMASK;
1692 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
1693
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001694 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001695 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001696 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_UP)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001697 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001698 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001699 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001700 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001701 PNG_WEIGHT_SHIFT;
1702 }
1703 }
1704
1705 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_UP]) >>
1706 PNG_COST_SHIFT;
1707 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_UP]) >>
1708 PNG_COST_SHIFT;
1709
1710 if (sumhi > PNG_HIMASK)
1711 sum = PNG_MAXSUM;
1712 else
1713 sum = (sumhi << PNG_HISHIFT) + sumlo;
1714 }
1715#endif
1716
Guy Schalnate5a37791996-06-05 15:50:50 -05001717 if (sum < mins)
1718 {
1719 mins = sum;
1720 best_row = png_ptr->up_row;
1721 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001722 }
1723
Guy Schalnate5a37791996-06-05 15:50:50 -05001724 /* avg filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001725 if (filter_to_do == PNG_FILTER_AVG)
1726 {
1727 png_bytep rp, dp, pp, lp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001728 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001729 for (i = 0, rp = row_buf + 1, dp = png_ptr->avg_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001730 pp = prev_row + 1; i < bpp; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001731 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001732 *dp++ = (png_byte)(((int)*rp++ - ((int)*pp++ / 2)) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001733 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001734 for (lp = row_buf + 1; i < row_bytes; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001735 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001736 *dp++ = (png_byte)(((int)*rp++ - (((int)*pp++ + (int)*lp++) / 2))
1737 & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001738 }
1739 best_row = png_ptr->avg_row;
1740 }
1741
1742 else if (filter_to_do & PNG_FILTER_AVG)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001743 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001744 png_bytep rp, dp, pp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001745 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001746 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001747 int v;
1748
1749#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1750 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1751 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001752 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001753 png_uint_32 lmhi, lmlo;
1754 lmlo = lmins & PNG_LOMASK;
1755 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
1756
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001757 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001758 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001759 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_AVG)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001760 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001761 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001762 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001763 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001764 PNG_WEIGHT_SHIFT;
1765 }
1766 }
1767
1768 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_AVG]) >>
1769 PNG_COST_SHIFT;
1770 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_AVG]) >>
1771 PNG_COST_SHIFT;
1772
1773 if (lmhi > PNG_HIMASK)
1774 lmins = PNG_MAXSUM;
1775 else
1776 lmins = (lmhi << PNG_HISHIFT) + lmlo;
1777 }
1778#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001779
1780 for (i = 0, rp = row_buf + 1, dp = png_ptr->avg_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001781 pp = prev_row + 1; i < bpp; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001782 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001783 v = *dp++ = (png_byte)(((int)*rp++ - ((int)*pp++ / 2)) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05001784
1785 sum += (v < 128) ? v : 256 - v;
1786 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001787 for (lp = row_buf + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001788 {
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001789 v = *dp++ =
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001790 (png_byte)(((int)*rp++ - (((int)*pp++ + (int)*lp++) / 2)) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05001791
1792 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001793
1794 if (sum > lmins) /* We are already worse, don't continue. */
1795 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05001796 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001797
1798#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1799 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1800 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001801 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001802 png_uint_32 sumhi, sumlo;
1803 sumlo = sum & PNG_LOMASK;
1804 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
1805
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001806 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001807 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001808 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_NONE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001809 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001810 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001811 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001812 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001813 PNG_WEIGHT_SHIFT;
1814 }
1815 }
1816
1817 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_AVG]) >>
1818 PNG_COST_SHIFT;
1819 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_AVG]) >>
1820 PNG_COST_SHIFT;
1821
1822 if (sumhi > PNG_HIMASK)
1823 sum = PNG_MAXSUM;
1824 else
1825 sum = (sumhi << PNG_HISHIFT) + sumlo;
1826 }
1827#endif
1828
Guy Schalnate5a37791996-06-05 15:50:50 -05001829 if (sum < mins)
1830 {
1831 mins = sum;
1832 best_row = png_ptr->avg_row;
1833 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001834 }
1835
Andreas Dilger47a0c421997-05-16 02:46:07 -05001836 /* Paeth filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001837 if (filter_to_do == PNG_FILTER_PAETH)
1838 {
1839 png_bytep rp, dp, pp, cp, lp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001840 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001841 for (i = 0, rp = row_buf + 1, dp = png_ptr->paeth_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001842 pp = prev_row + 1; i < bpp; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001843 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001844 *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001845 }
1846
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001847 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001848 {
1849 int a, b, c, pa, pb, pc, p;
1850
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001851 b = *pp++;
1852 c = *cp++;
1853 a = *lp++;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001854
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001855 p = b - c;
1856 pc = a - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001857
1858#ifdef PNG_USE_ABS
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001859 pa = abs(p);
1860 pb = abs(pc);
1861 pc = abs(p + pc);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001862#else
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001863 pa = p < 0 ? -p : p;
1864 pb = pc < 0 ? -pc : pc;
1865 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001866#endif
1867
1868 p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
1869
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001870 *dp++ = (png_byte)(((int)*rp++ - p) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001871 }
1872 best_row = png_ptr->paeth_row;
1873 }
1874
1875 else if (filter_to_do & PNG_FILTER_PAETH)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001876 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001877 png_bytep rp, dp, pp, cp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001878 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001879 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001880 int v;
1881
1882#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1883 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1884 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001885 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001886 png_uint_32 lmhi, lmlo;
1887 lmlo = lmins & PNG_LOMASK;
1888 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
1889
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001890 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001891 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001892 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_PAETH)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001893 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001894 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001895 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001896 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001897 PNG_WEIGHT_SHIFT;
1898 }
1899 }
1900
1901 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_PAETH]) >>
1902 PNG_COST_SHIFT;
1903 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_PAETH]) >>
1904 PNG_COST_SHIFT;
1905
1906 if (lmhi > PNG_HIMASK)
1907 lmins = PNG_MAXSUM;
1908 else
1909 lmins = (lmhi << PNG_HISHIFT) + lmlo;
1910 }
1911#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001912
1913 for (i = 0, rp = row_buf + 1, dp = png_ptr->paeth_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001914 pp = prev_row + 1; i < bpp; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001915 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001916 v = *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05001917
1918 sum += (v < 128) ? v : 256 - v;
1919 }
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001920
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001921 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001922 {
1923 int a, b, c, pa, pb, pc, p;
1924
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001925 b = *pp++;
1926 c = *cp++;
1927 a = *lp++;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001928
1929#ifndef PNG_SLOW_PAETH
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001930 p = b - c;
1931 pc = a - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001932#ifdef PNG_USE_ABS
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001933 pa = abs(p);
1934 pb = abs(pc);
1935 pc = abs(p + pc);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001936#else
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001937 pa = p < 0 ? -p : p;
1938 pb = pc < 0 ? -pc : pc;
1939 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001940#endif
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001941 p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
1942#else /* PNG_SLOW_PAETH */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001943 p = a + b - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001944 pa = abs(p - a);
1945 pb = abs(p - b);
1946 pc = abs(p - c);
Guy Schalnate5a37791996-06-05 15:50:50 -05001947 if (pa <= pb && pa <= pc)
1948 p = a;
1949 else if (pb <= pc)
1950 p = b;
1951 else
1952 p = c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001953#endif /* PNG_SLOW_PAETH */
Guy Schalnate5a37791996-06-05 15:50:50 -05001954
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001955 v = *dp++ = (png_byte)(((int)*rp++ - p) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05001956
1957 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001958
1959 if (sum > lmins) /* We are already worse, don't continue. */
1960 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05001961 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001962
1963#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1964 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1965 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001966 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001967 png_uint_32 sumhi, sumlo;
1968 sumlo = sum & PNG_LOMASK;
1969 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
1970
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001971 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001972 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001973 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_PAETH)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001974 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001975 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001976 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001977 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001978 PNG_WEIGHT_SHIFT;
1979 }
1980 }
1981
1982 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_PAETH]) >>
1983 PNG_COST_SHIFT;
1984 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_PAETH]) >>
1985 PNG_COST_SHIFT;
1986
1987 if (sumhi > PNG_HIMASK)
1988 sum = PNG_MAXSUM;
1989 else
1990 sum = (sumhi << PNG_HISHIFT) + sumlo;
1991 }
1992#endif
1993
Guy Schalnate5a37791996-06-05 15:50:50 -05001994 if (sum < mins)
1995 {
1996 best_row = png_ptr->paeth_row;
1997 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001998 }
1999
Andreas Dilger47a0c421997-05-16 02:46:07 -05002000 /* Do the actual writing of the filtered row data from the chosen filter. */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002001
Guy Schalnate5a37791996-06-05 15:50:50 -05002002 png_write_filtered_row(png_ptr, best_row);
Andreas Dilger47a0c421997-05-16 02:46:07 -05002003
2004#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2005 /* Save the type of filter we picked this time for future calculations */
2006 if (png_ptr->num_prev_filters > 0)
2007 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002008 int j;
2009 for (j = 1; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002010 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002011 png_ptr->prev_filters[j] = png_ptr->prev_filters[j - 1];
Andreas Dilger47a0c421997-05-16 02:46:07 -05002012 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002013 png_ptr->prev_filters[j] = best_row[0];
Andreas Dilger47a0c421997-05-16 02:46:07 -05002014 }
2015#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002016}
2017
2018
Andreas Dilger47a0c421997-05-16 02:46:07 -05002019/* Do the actual writing of a previously filtered row. */
Guy Schalnate5a37791996-06-05 15:50:50 -05002020void
2021png_write_filtered_row(png_structp png_ptr, png_bytep filtered_row)
2022{
Andreas Dilger47a0c421997-05-16 02:46:07 -05002023 png_debug(1, "in png_write_filtered_row\n");
2024 png_debug1(2, "filter = %d\n", filtered_row[0]);
Guy Schalnate5a37791996-06-05 15:50:50 -05002025 /* set up the zlib input buffer */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002026 png_ptr->zstream.next_in = filtered_row;
2027 png_ptr->zstream.avail_in = (uInt)png_ptr->row_info.rowbytes + 1;
Guy Schalnate5a37791996-06-05 15:50:50 -05002028 /* repeat until we have compressed all the data */
2029 do
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002030 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002031 int ret; /* return of zlib */
Guy Schalnat0d580581995-07-20 02:43:20 -05002032
Guy Schalnate5a37791996-06-05 15:50:50 -05002033 /* compress the data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002034 ret = deflate(&png_ptr->zstream, Z_NO_FLUSH);
Guy Schalnate5a37791996-06-05 15:50:50 -05002035 /* check for compression errors */
2036 if (ret != Z_OK)
2037 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05002038 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002039 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnate5a37791996-06-05 15:50:50 -05002040 else
2041 png_error(png_ptr, "zlib error");
2042 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002043
Guy Schalnate5a37791996-06-05 15:50:50 -05002044 /* see if it is time to write another IDAT */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002045 if (!(png_ptr->zstream.avail_out))
Guy Schalnate5a37791996-06-05 15:50:50 -05002046 {
2047 /* write the IDAT and reset the zlib output buffer */
2048 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002049 png_ptr->zstream.next_out = png_ptr->zbuf;
2050 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnate5a37791996-06-05 15:50:50 -05002051 }
2052 /* repeat until all data has been compressed */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002053 } while (png_ptr->zstream.avail_in);
Guy Schalnate5a37791996-06-05 15:50:50 -05002054
Guy Schalnatc21f90c1996-06-17 16:24:45 -05002055 /* swap the current and previous rows */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002056 if (png_ptr->prev_row != NULL)
Guy Schalnatc21f90c1996-06-17 16:24:45 -05002057 {
2058 png_bytep tptr;
2059
2060 tptr = png_ptr->prev_row;
2061 png_ptr->prev_row = png_ptr->row_buf;
2062 png_ptr->row_buf = tptr;
2063 }
2064
Guy Schalnate5a37791996-06-05 15:50:50 -05002065 /* finish row - updates counters and flushes zlib if last row */
2066 png_write_finish_row(png_ptr);
2067
2068#if defined(PNG_WRITE_FLUSH_SUPPORTED)
2069 png_ptr->flush_rows++;
2070
2071 if (png_ptr->flush_dist > 0 &&
2072 png_ptr->flush_rows >= png_ptr->flush_dist)
Guy Schalnat0d580581995-07-20 02:43:20 -05002073 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002074 png_write_flush(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002075 }
Guy Schalnate5a37791996-06-05 15:50:50 -05002076#endif /* PNG_WRITE_FLUSH_SUPPORTED */
Guy Schalnat0d580581995-07-20 02:43:20 -05002077}