blob: 973b0aea0589a798ec99cea27b3c38738b54b3ee [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-Pehrson520a7642000-03-21 05:13:06 -06004 * libpng 1.0.6 - March 21, 2000
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-Pehrson61c32d92000-02-04 23:40:16 -06008 * Copyright (c) 1998, 1999, 2000 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{
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600130 png_byte png_signature[8] = {137, 80, 78, 71, 13, 10, 26, 10};
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600131 /* write the rest of the 8 byte signature */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600132 png_write_data(png_ptr, &png_signature[png_ptr->sig_bytes],
Andreas Dilger47a0c421997-05-16 02:46:07 -0500133 (png_size_t)8 - png_ptr->sig_bytes);
Guy Schalnat0d580581995-07-20 02:43:20 -0500134}
135
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600136#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_iCCP_SUPPORTED)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600137/*
138 * This pair of functions encapsulates the operation of (a) compressing a
139 * text string, and (b) issuing it later as a series of chunk data writes.
140 * The compression_state structure is shared context for these functions
141 * set up by the caller in order to make the whole mess thread-safe.
142 */
143
144typedef struct
145{
146 char *input; /* the uncompressed input data */
147 int input_len; /* its length */
148 int num_output_ptr; /* number of output pointers used */
149 int max_output_ptr; /* size of output_ptr */
150 png_charpp output_ptr; /* array of pointers to output */
151} compression_state;
152
153/* compress given text into storage in the png_ptr structure */
154static int
155png_text_compress(png_structp png_ptr,
156 png_charp text, png_size_t text_len, int compression,
157 compression_state *comp)
158{
159 int ret;
160
161 comp->num_output_ptr = comp->max_output_ptr = 0;
162 comp->output_ptr = NULL;
163 comp->input = NULL;
164
165 /* we may just want to pass the text right through */
166 if (compression == PNG_TEXT_COMPRESSION_NONE)
167 {
168 comp->input = text;
169 comp->input_len = text_len;
170 return(text_len);
171 }
172
173 if (compression >= PNG_TEXT_COMPRESSION_LAST)
174 {
175#if !defined(PNG_NO_STDIO)
176 char msg[50];
177 sprintf(msg, "Unknown compression type %d", compression);
178 png_warning(png_ptr, msg);
179#else
180 png_warning(png_ptr, "Unknown compression type");
181#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600182 }
183
184 /* We can't write the chunk until we find out how much data we have,
185 * which means we need to run the compressor first and save the
186 * output. This shouldn't be a problem, as the vast majority of
187 * comments should be reasonable, but we will set up an array of
188 * malloc'd pointers to be sure.
189 *
190 * If we knew the application was well behaved, we could simplify this
191 * greatly by assuming we can always malloc an output buffer large
192 * enough to hold the compressed text ((1001 * text_len / 1000) + 12)
193 * and malloc this directly. The only time this would be a bad idea is
194 * if we can't malloc more than 64K and we have 64K of random input
195 * data, or if the input string is incredibly large (although this
196 * wouldn't cause a failure, just a slowdown due to swapping).
197 */
198
199 /* set up the compression buffers */
200 png_ptr->zstream.avail_in = (uInt)text_len;
201 png_ptr->zstream.next_in = (Bytef *)text;
202 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
203 png_ptr->zstream.next_out = (Bytef *)png_ptr->zbuf;
204
205 /* this is the same compression loop as in png_write_row() */
206 do
207 {
208 /* compress the data */
209 ret = deflate(&png_ptr->zstream, Z_NO_FLUSH);
210 if (ret != Z_OK)
211 {
212 /* error */
213 if (png_ptr->zstream.msg != NULL)
214 png_error(png_ptr, png_ptr->zstream.msg);
215 else
216 png_error(png_ptr, "zlib error");
217 }
218 /* check to see if we need more room */
219 if (!png_ptr->zstream.avail_out && png_ptr->zstream.avail_in)
220 {
221 /* make sure the output array has room */
222 if (comp->num_output_ptr >= comp->max_output_ptr)
223 {
224 int old_max;
225
226 old_max = comp->max_output_ptr;
227 comp->max_output_ptr = comp->num_output_ptr + 4;
228 if (comp->output_ptr != NULL)
229 {
230 png_charpp old_ptr;
231
232 old_ptr = comp->output_ptr;
233 comp->output_ptr = (png_charpp)png_malloc(png_ptr,
234 (png_uint_32)(comp->max_output_ptr * sizeof (png_charpp)));
235 png_memcpy(comp->output_ptr, old_ptr,
236 old_max * sizeof (png_charp));
237 png_free(png_ptr, old_ptr);
238 }
239 else
240 comp->output_ptr = (png_charpp)png_malloc(png_ptr,
241 (png_uint_32)(comp->max_output_ptr * sizeof (png_charp)));
242 }
243
244 /* save the data */
245 comp->output_ptr[comp->num_output_ptr] = (png_charp)png_malloc(png_ptr,
246 (png_uint_32)png_ptr->zbuf_size);
247 png_memcpy(comp->output_ptr[comp->num_output_ptr], png_ptr->zbuf,
248 png_ptr->zbuf_size);
249 comp->num_output_ptr++;
250
251 /* and reset the buffer */
252 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
253 png_ptr->zstream.next_out = png_ptr->zbuf;
254 }
255 /* continue until we don't have any more to compress */
256 } while (png_ptr->zstream.avail_in);
257
258 /* finish the compression */
259 do
260 {
261 /* tell zlib we are finished */
262 ret = deflate(&png_ptr->zstream, Z_FINISH);
263 if (ret != Z_OK && ret != Z_STREAM_END)
264 {
265 /* we got an error */
266 if (png_ptr->zstream.msg != NULL)
267 png_error(png_ptr, png_ptr->zstream.msg);
268 else
269 png_error(png_ptr, "zlib error");
270 }
271
272 /* check to see if we need more room */
273 if (!(png_ptr->zstream.avail_out) && ret == Z_OK)
274 {
275 /* check to make sure our output array has room */
276 if (comp->num_output_ptr >= comp->max_output_ptr)
277 {
278 int old_max;
279
280 old_max = comp->max_output_ptr;
281 comp->max_output_ptr = comp->num_output_ptr + 4;
282 if (comp->output_ptr != NULL)
283 {
284 png_charpp old_ptr;
285
286 old_ptr = comp->output_ptr;
287 /* This could be optimized to realloc() */
288 comp->output_ptr = (png_charpp)png_malloc(png_ptr,
289 (png_uint_32)(comp->max_output_ptr * sizeof (png_charpp)));
290 png_memcpy(comp->output_ptr, old_ptr,
291 old_max * sizeof (png_charp));
292 png_free(png_ptr, old_ptr);
293 }
294 else
295 comp->output_ptr = (png_charpp)png_malloc(png_ptr,
296 (png_uint_32)(comp->max_output_ptr * sizeof (png_charp)));
297 }
298
299 /* save off the data */
300 comp->output_ptr[comp->num_output_ptr] = (png_charp)png_malloc(png_ptr,
301 (png_uint_32)png_ptr->zbuf_size);
302 png_memcpy(comp->output_ptr[comp->num_output_ptr], png_ptr->zbuf,
303 png_ptr->zbuf_size);
304 comp->num_output_ptr++;
305
306 /* and reset the buffer pointers */
307 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
308 png_ptr->zstream.next_out = png_ptr->zbuf;
309 }
310 } while (ret != Z_STREAM_END);
311
312 /* text length is number of buffers plus last buffer */
313 text_len = png_ptr->zbuf_size * comp->num_output_ptr;
314 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size)
315 text_len += png_ptr->zbuf_size - (png_size_t)png_ptr->zstream.avail_out;
316
317 return(text_len);
318}
319
320/* ship the compressed text out via chunk writes */
321static void
322png_write_compressed_data_out(png_structp png_ptr, compression_state *comp)
323{
324 int i;
325
326 /* handle the no-compression case */
327 if (comp->input)
328 {
329 png_write_chunk_data(png_ptr, (png_bytep)comp->input, comp->input_len);
330 return;
331 }
332
333 /* write saved output buffers, if any */
334 for (i = 0; i < comp->num_output_ptr; i++)
335 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600336 png_write_chunk_data(png_ptr,(png_bytep)comp->output_ptr[i],
337 png_ptr->zbuf_size);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600338 png_free(png_ptr, comp->output_ptr[i]);
339 }
340 if (comp->max_output_ptr != 0)
341 png_free(png_ptr, comp->output_ptr);
342 /* write anything left in zbuf */
343 if (png_ptr->zstream.avail_out < (png_uint_32)png_ptr->zbuf_size)
344 png_write_chunk_data(png_ptr, png_ptr->zbuf,
345 png_ptr->zbuf_size - png_ptr->zstream.avail_out);
346
347 /* reset zlib for another zTXt/iTXt or the image data */
348 deflateReset(&png_ptr->zstream);
349
350}
351#endif
352
Guy Schalnat0d580581995-07-20 02:43:20 -0500353/* Write the IHDR chunk, and update the png_struct with the necessary
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600354 * information. Note that the rest of this code depends upon this
355 * information being correct.
356 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500357void
Guy Schalnat6d764711995-12-19 03:22:19 -0600358png_write_IHDR(png_structp png_ptr, png_uint_32 width, png_uint_32 height,
Guy Schalnat0d580581995-07-20 02:43:20 -0500359 int bit_depth, int color_type, int compression_type, int filter_type,
360 int interlace_type)
361{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600362#ifdef PNG_USE_LOCAL_ARRAYS
363 PNG_IHDR;
364#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500365 png_byte buf[13]; /* buffer to store the IHDR info */
366
Andreas Dilger47a0c421997-05-16 02:46:07 -0500367 png_debug(1, "in png_write_IHDR\n");
Guy Schalnate5a37791996-06-05 15:50:50 -0500368 /* Check that we have valid input data from the application info */
369 switch (color_type)
370 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500371 case PNG_COLOR_TYPE_GRAY:
Guy Schalnate5a37791996-06-05 15:50:50 -0500372 switch (bit_depth)
373 {
374 case 1:
375 case 2:
376 case 4:
377 case 8:
378 case 16: png_ptr->channels = 1; break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500379 default: png_error(png_ptr,"Invalid bit depth for grayscale image");
Guy Schalnate5a37791996-06-05 15:50:50 -0500380 }
381 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500382 case PNG_COLOR_TYPE_RGB:
Guy Schalnate5a37791996-06-05 15:50:50 -0500383 if (bit_depth != 8 && bit_depth != 16)
384 png_error(png_ptr, "Invalid bit depth for RGB image");
385 png_ptr->channels = 3;
386 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500387 case PNG_COLOR_TYPE_PALETTE:
Guy Schalnate5a37791996-06-05 15:50:50 -0500388 switch (bit_depth)
389 {
390 case 1:
391 case 2:
392 case 4:
393 case 8: png_ptr->channels = 1; break;
394 default: png_error(png_ptr, "Invalid bit depth for paletted image");
395 }
396 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500397 case PNG_COLOR_TYPE_GRAY_ALPHA:
Guy Schalnate5a37791996-06-05 15:50:50 -0500398 if (bit_depth != 8 && bit_depth != 16)
399 png_error(png_ptr, "Invalid bit depth for grayscale+alpha image");
400 png_ptr->channels = 2;
401 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500402 case PNG_COLOR_TYPE_RGB_ALPHA:
Guy Schalnate5a37791996-06-05 15:50:50 -0500403 if (bit_depth != 8 && bit_depth != 16)
404 png_error(png_ptr, "Invalid bit depth for RGBA image");
405 png_ptr->channels = 4;
406 break;
407 default:
408 png_error(png_ptr, "Invalid image color type specified");
409 }
410
Andreas Dilger47a0c421997-05-16 02:46:07 -0500411 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
Guy Schalnate5a37791996-06-05 15:50:50 -0500412 {
413 png_warning(png_ptr, "Invalid compression type specified");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500414 compression_type = PNG_COMPRESSION_TYPE_BASE;
Guy Schalnate5a37791996-06-05 15:50:50 -0500415 }
416
Andreas Dilger47a0c421997-05-16 02:46:07 -0500417 if (filter_type != PNG_FILTER_TYPE_BASE)
Guy Schalnate5a37791996-06-05 15:50:50 -0500418 {
419 png_warning(png_ptr, "Invalid filter type specified");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500420 filter_type = PNG_FILTER_TYPE_BASE;
Guy Schalnate5a37791996-06-05 15:50:50 -0500421 }
422
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600423#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500424 if (interlace_type != PNG_INTERLACE_NONE &&
425 interlace_type != PNG_INTERLACE_ADAM7)
Guy Schalnate5a37791996-06-05 15:50:50 -0500426 {
427 png_warning(png_ptr, "Invalid interlace type specified");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500428 interlace_type = PNG_INTERLACE_ADAM7;
Guy Schalnate5a37791996-06-05 15:50:50 -0500429 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600430#else
431 interlace_type=PNG_INTERLACE_NONE;
432#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500433
434 /* save off the relevent information */
435 png_ptr->bit_depth = (png_byte)bit_depth;
436 png_ptr->color_type = (png_byte)color_type;
437 png_ptr->interlaced = (png_byte)interlace_type;
438 png_ptr->width = width;
439 png_ptr->height = height;
440
441 png_ptr->pixel_depth = (png_byte)(bit_depth * png_ptr->channels);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500442 png_ptr->rowbytes = ((width * (png_size_t)png_ptr->pixel_depth + 7) >> 3);
Guy Schalnate5a37791996-06-05 15:50:50 -0500443 /* set the usr info, so any transformations can modify it */
444 png_ptr->usr_width = png_ptr->width;
445 png_ptr->usr_bit_depth = png_ptr->bit_depth;
446 png_ptr->usr_channels = png_ptr->channels;
447
Guy Schalnat0d580581995-07-20 02:43:20 -0500448 /* pack the header information into the buffer */
449 png_save_uint_32(buf, width);
450 png_save_uint_32(buf + 4, height);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600451 buf[8] = (png_byte)bit_depth;
452 buf[9] = (png_byte)color_type;
453 buf[10] = (png_byte)compression_type;
454 buf[11] = (png_byte)filter_type;
455 buf[12] = (png_byte)interlace_type;
Guy Schalnat0d580581995-07-20 02:43:20 -0500456
457 /* write the chunk */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600458 png_write_chunk(png_ptr, (png_bytep)png_IHDR, buf, (png_size_t)13);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500459
Andreas Dilger47a0c421997-05-16 02:46:07 -0500460 /* initialize zlib with PNG info */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600461 png_ptr->zstream.zalloc = png_zalloc;
462 png_ptr->zstream.zfree = png_zfree;
463 png_ptr->zstream.opaque = (voidpf)png_ptr;
Guy Schalnate5a37791996-06-05 15:50:50 -0500464 if (!(png_ptr->do_filter))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500465 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500466 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE ||
467 png_ptr->bit_depth < 8)
Guy Schalnate5a37791996-06-05 15:50:50 -0500468 png_ptr->do_filter = PNG_FILTER_NONE;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500469 else
Guy Schalnate5a37791996-06-05 15:50:50 -0500470 png_ptr->do_filter = PNG_ALL_FILTERS;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500471 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500472 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_STRATEGY))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500473 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500474 if (png_ptr->do_filter != PNG_FILTER_NONE)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500475 png_ptr->zlib_strategy = Z_FILTERED;
476 else
477 png_ptr->zlib_strategy = Z_DEFAULT_STRATEGY;
478 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500479 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_LEVEL))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500480 png_ptr->zlib_level = Z_DEFAULT_COMPRESSION;
Guy Schalnate5a37791996-06-05 15:50:50 -0500481 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500482 png_ptr->zlib_mem_level = 8;
Guy Schalnate5a37791996-06-05 15:50:50 -0500483 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500484 png_ptr->zlib_window_bits = 15;
Guy Schalnate5a37791996-06-05 15:50:50 -0500485 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_METHOD))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500486 png_ptr->zlib_method = 8;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600487 deflateInit2(&png_ptr->zstream, png_ptr->zlib_level,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500488 png_ptr->zlib_method, png_ptr->zlib_window_bits,
489 png_ptr->zlib_mem_level, png_ptr->zlib_strategy);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600490 png_ptr->zstream.next_out = png_ptr->zbuf;
491 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500492
Guy Schalnate5a37791996-06-05 15:50:50 -0500493 png_ptr->mode = PNG_HAVE_IHDR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500494}
495
496/* write the palette. We are careful not to trust png_color to be in the
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -0500497 * correct order for PNG, so people can redefine it to any convenient
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600498 * structure.
499 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500500void
Andreas Dilger47a0c421997-05-16 02:46:07 -0500501png_write_PLTE(png_structp png_ptr, png_colorp palette, png_uint_32 num_pal)
Guy Schalnat0d580581995-07-20 02:43:20 -0500502{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600503#ifdef PNG_USE_LOCAL_ARRAYS
504 PNG_PLTE;
505#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500506 png_uint_32 i;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600507 png_colorp pal_ptr;
Guy Schalnat0d580581995-07-20 02:43:20 -0500508 png_byte buf[3];
509
Andreas Dilger47a0c421997-05-16 02:46:07 -0500510 png_debug(1, "in png_write_PLTE\n");
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500511 if ((
512#ifdef PNG_WRITE_EMPTY_PLTE_SUPPORTED
513 !png_ptr->empty_plte_permitted &&
514#endif
515 num_pal == 0) || num_pal > 256)
516 {
517 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
518 {
519 png_error(png_ptr, "Invalid number of colors in palette");
520 }
521 else
522 {
523 png_warning(png_ptr, "Invalid number of colors in palette");
524 return;
525 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500526 }
527
Andreas Dilger47a0c421997-05-16 02:46:07 -0500528 png_ptr->num_palette = (png_uint_16)num_pal;
529 png_debug1(3, "num_palette = %d\n", png_ptr->num_palette);
Guy Schalnate5a37791996-06-05 15:50:50 -0500530
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600531 png_write_chunk_start(png_ptr, (png_bytep)png_PLTE, num_pal * 3);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500532 for (i = 0, pal_ptr = palette; i < num_pal; i++, pal_ptr++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500533 {
534 buf[0] = pal_ptr->red;
535 buf[1] = pal_ptr->green;
536 buf[2] = pal_ptr->blue;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500537 png_write_chunk_data(png_ptr, buf, (png_size_t)3);
Guy Schalnat0d580581995-07-20 02:43:20 -0500538 }
539 png_write_chunk_end(png_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500540 png_ptr->mode |= PNG_HAVE_PLTE;
Guy Schalnat0d580581995-07-20 02:43:20 -0500541}
542
543/* write an IDAT chunk */
544void
Andreas Dilger47a0c421997-05-16 02:46:07 -0500545png_write_IDAT(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnat0d580581995-07-20 02:43:20 -0500546{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600547#ifdef PNG_USE_LOCAL_ARRAYS
548 PNG_IDAT;
549#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500550 png_debug(1, "in png_write_IDAT\n");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600551 png_write_chunk(png_ptr, (png_bytep)png_IDAT, data, length);
Guy Schalnate5a37791996-06-05 15:50:50 -0500552 png_ptr->mode |= PNG_HAVE_IDAT;
Guy Schalnat0d580581995-07-20 02:43:20 -0500553}
554
555/* write an IEND chunk */
556void
Guy Schalnat6d764711995-12-19 03:22:19 -0600557png_write_IEND(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500558{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600559#ifdef PNG_USE_LOCAL_ARRAYS
560 PNG_IEND;
561#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500562 png_debug(1, "in png_write_IEND\n");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600563 png_write_chunk(png_ptr, (png_bytep)png_IEND, NULL, (png_size_t)0);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600564 png_ptr->mode |= PNG_HAVE_IEND;
Guy Schalnat0d580581995-07-20 02:43:20 -0500565}
566
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500567#if defined(PNG_WRITE_gAMA_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500568/* write a gAMA chunk */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600569#ifdef PNG_FLOATING_POINT_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -0500570void
Andreas Dilger47a0c421997-05-16 02:46:07 -0500571png_write_gAMA(png_structp png_ptr, double file_gamma)
Guy Schalnat0d580581995-07-20 02:43:20 -0500572{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600573#ifdef PNG_USE_LOCAL_ARRAYS
574 PNG_gAMA;
575#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500576 png_uint_32 igamma;
577 png_byte buf[4];
578
Andreas Dilger47a0c421997-05-16 02:46:07 -0500579 png_debug(1, "in png_write_gAMA\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600580 /* file_gamma is saved in 1/100,000ths */
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600581 igamma = (png_uint_32)(file_gamma * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500582 png_save_uint_32(buf, igamma);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600583 png_write_chunk(png_ptr, (png_bytep)png_gAMA, buf, (png_size_t)4);
Guy Schalnat0d580581995-07-20 02:43:20 -0500584}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500585#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600586#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600587void
588png_write_gAMA_fixed(png_structp png_ptr, png_fixed_point file_gamma)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600589{
590#ifdef PNG_USE_LOCAL_ARRAYS
591 PNG_gAMA;
592#endif
593 png_byte buf[4];
594
595 png_debug(1, "in png_write_gAMA\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600596 /* file_gamma is saved in 1/100,000ths */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600597 png_save_uint_32(buf, file_gamma);
598 png_write_chunk(png_ptr, (png_bytep)png_gAMA, buf, (png_size_t)4);
599}
600#endif
601#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500602
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600603#if defined(PNG_WRITE_sRGB_SUPPORTED)
604/* write a sRGB chunk */
605void
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600606png_write_sRGB(png_structp png_ptr, int srgb_intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600607{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600608#ifdef PNG_USE_LOCAL_ARRAYS
609 PNG_sRGB;
610#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600611 png_byte buf[1];
612
613 png_debug(1, "in png_write_sRGB\n");
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600614 if(srgb_intent >= PNG_sRGB_INTENT_LAST)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600615 png_warning(png_ptr,
616 "Invalid sRGB rendering intent specified");
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600617 buf[0]=(png_byte)srgb_intent;
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600618 png_write_chunk(png_ptr, (png_bytep)png_sRGB, buf, (png_size_t)1);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600619}
620#endif
621
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600622#if defined(PNG_WRITE_iCCP_SUPPORTED)
623/* write an iCCP chunk */
624void
625png_write_iCCP(png_structp png_ptr, png_charp name, int compression_type,
626 png_charp profile, int profile_len)
627{
628#ifdef PNG_USE_LOCAL_ARRAYS
629 PNG_iCCP;
630#endif
631 png_size_t name_len;
632 png_charp new_name;
633 compression_state comp;
634
635 png_debug(1, "in png_write_iCCP\n");
636 if (name == NULL || (name_len = png_check_keyword(png_ptr, name,
637 &new_name)) == 0)
638 {
639 png_warning(png_ptr, "Empty keyword in iCCP chunk");
640 return;
641 }
642
643 if (compression_type)
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600644 png_warning(png_ptr, "Unknown compression type in iCCP chunk");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600645
646 if (profile == NULL || *profile == '\0')
647 profile_len = 0;
648
649 if (profile_len)
650 profile_len = png_text_compress(png_ptr, profile, profile_len,
651 PNG_TEXT_COMPRESSION_zTXt, &comp);
652
653 /* make sure we include the NULL after the name and the compression type */
654 png_write_chunk_start(png_ptr, (png_bytep)png_iCCP,
655 (png_uint_32)name_len+profile_len+2);
656 png_write_chunk_data(png_ptr, (png_bytep)new_name, name_len + 2);
657
658 if (profile_len)
659 png_write_compressed_data_out(png_ptr, &comp);
660
661 png_write_chunk_end(png_ptr);
662 png_free(png_ptr, new_name);
663}
664#endif
665
666#if defined(PNG_WRITE_sPLT_SUPPORTED)
667/* write a sPLT chunk */
668void
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600669png_write_sPLT(png_structp png_ptr, png_sPLT_tp spalette)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600670{
671#ifdef PNG_USE_LOCAL_ARRAYS
672 PNG_sPLT;
673#endif
674 png_size_t name_len;
675 png_charp new_name;
676 png_byte entrybuf[10];
677 int entry_size = (spalette->depth == 8 ? 6 : 10);
678 int palette_size = entry_size * spalette->nentries;
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600679 png_sPLT_entryp ep;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600680
681 png_debug(1, "in png_write_sPLT\n");
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600682 if (spalette->name == NULL || (name_len = png_check_keyword(png_ptr,
683 spalette->name, &new_name))==0)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600684 {
685 png_warning(png_ptr, "Empty keyword in sPLT chunk");
686 return;
687 }
688
689 /* make sure we include the NULL after the name */
690 png_write_chunk_start(png_ptr, (png_bytep) png_sPLT,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600691 (png_uint_32)(name_len + 2 + palette_size));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600692 png_write_chunk_data(png_ptr, (png_bytep)new_name, name_len + 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600693 png_write_chunk_data(png_ptr, (png_bytep)&spalette->depth, 1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600694
695 /* loop through each palette entry, writing appropriately */
696 for (ep = spalette->entries; ep<spalette->entries+spalette->nentries; ep++)
697 {
698 if (spalette->depth == 8)
699 {
700 entrybuf[0] = (png_byte)ep->red;
701 entrybuf[1] = (png_byte)ep->green;
702 entrybuf[2] = (png_byte)ep->blue;
703 entrybuf[3] = (png_byte)ep->alpha;
704 png_save_uint_16(entrybuf + 4, ep->frequency);
705 }
706 else
707 {
708 png_save_uint_16(entrybuf + 0, ep->red);
709 png_save_uint_16(entrybuf + 2, ep->green);
710 png_save_uint_16(entrybuf + 4, ep->blue);
711 png_save_uint_16(entrybuf + 6, ep->alpha);
712 png_save_uint_16(entrybuf + 8, ep->frequency);
713 }
714 png_write_chunk_data(png_ptr, entrybuf, entry_size);
715 }
716
717 png_write_chunk_end(png_ptr);
718 png_free(png_ptr, new_name);
719}
720#endif
721
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500722#if defined(PNG_WRITE_sBIT_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500723/* write the sBIT chunk */
724void
Guy Schalnat6d764711995-12-19 03:22:19 -0600725png_write_sBIT(png_structp png_ptr, png_color_8p sbit, int color_type)
Guy Schalnat0d580581995-07-20 02:43:20 -0500726{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600727#ifdef PNG_USE_LOCAL_ARRAYS
728 PNG_sBIT;
729#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500730 png_byte buf[4];
Andreas Dilger47a0c421997-05-16 02:46:07 -0500731 png_size_t size;
Guy Schalnat0d580581995-07-20 02:43:20 -0500732
Andreas Dilger47a0c421997-05-16 02:46:07 -0500733 png_debug(1, "in png_write_sBIT\n");
Guy Schalnat6d764711995-12-19 03:22:19 -0600734 /* make sure we don't depend upon the order of PNG_COLOR_8 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500735 if (color_type & PNG_COLOR_MASK_COLOR)
736 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600737 png_byte maxbits;
Guy Schalnate5a37791996-06-05 15:50:50 -0500738
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -0500739 maxbits = (png_byte)(color_type==PNG_COLOR_TYPE_PALETTE ? 8 :
740 png_ptr->usr_bit_depth);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600741 if (sbit->red == 0 || sbit->red > maxbits ||
742 sbit->green == 0 || sbit->green > maxbits ||
Guy Schalnate5a37791996-06-05 15:50:50 -0500743 sbit->blue == 0 || sbit->blue > maxbits)
744 {
745 png_warning(png_ptr, "Invalid sBIT depth specified");
746 return;
747 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500748 buf[0] = sbit->red;
749 buf[1] = sbit->green;
750 buf[2] = sbit->blue;
751 size = 3;
752 }
753 else
754 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500755 if (sbit->gray == 0 || sbit->gray > png_ptr->usr_bit_depth)
756 {
757 png_warning(png_ptr, "Invalid sBIT depth specified");
758 return;
759 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500760 buf[0] = sbit->gray;
761 size = 1;
762 }
763
764 if (color_type & PNG_COLOR_MASK_ALPHA)
765 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500766 if (sbit->alpha == 0 || sbit->alpha > png_ptr->usr_bit_depth)
767 {
768 png_warning(png_ptr, "Invalid sBIT depth specified");
769 return;
770 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500771 buf[size++] = sbit->alpha;
772 }
773
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600774 png_write_chunk(png_ptr, (png_bytep)png_sBIT, buf, size);
Guy Schalnat0d580581995-07-20 02:43:20 -0500775}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500776#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500777
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500778#if defined(PNG_WRITE_cHRM_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500779/* write the cHRM chunk */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600780#ifdef PNG_FLOATING_POINT_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -0500781void
Andreas Dilger47a0c421997-05-16 02:46:07 -0500782png_write_cHRM(png_structp png_ptr, double white_x, double white_y,
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600783 double red_x, double red_y, double green_x, double green_y,
784 double blue_x, double blue_y)
Guy Schalnat0d580581995-07-20 02:43:20 -0500785{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600786#ifdef PNG_USE_LOCAL_ARRAYS
787 PNG_cHRM;
788#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500789 png_byte buf[32];
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600790 png_uint_32 itemp;
Guy Schalnat0d580581995-07-20 02:43:20 -0500791
Andreas Dilger47a0c421997-05-16 02:46:07 -0500792 png_debug(1, "in png_write_cHRM\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600793 /* each value is saved in 1/100,000ths */
Guy Schalnate5a37791996-06-05 15:50:50 -0500794 if (white_x < 0 || white_x > 0.8 || white_y < 0 || white_y > 0.8 ||
795 white_x + white_y > 1.0)
796 {
797 png_warning(png_ptr, "Invalid cHRM white point specified");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600798 printf("white_x=%f, white_y=%f\n",white_x, white_y);
Guy Schalnate5a37791996-06-05 15:50:50 -0500799 return;
800 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600801 itemp = (png_uint_32)(white_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500802 png_save_uint_32(buf, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600803 itemp = (png_uint_32)(white_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500804 png_save_uint_32(buf + 4, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500805
806 if (red_x < 0 || red_x > 0.8 || red_y < 0 || red_y > 0.8 ||
807 red_x + red_y > 1.0)
808 {
809 png_warning(png_ptr, "Invalid cHRM red point specified");
810 return;
811 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600812 itemp = (png_uint_32)(red_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500813 png_save_uint_32(buf + 8, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600814 itemp = (png_uint_32)(red_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500815 png_save_uint_32(buf + 12, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500816
817 if (green_x < 0 || green_x > 0.8 || green_y < 0 || green_y > 0.8 ||
818 green_x + green_y > 1.0)
819 {
820 png_warning(png_ptr, "Invalid cHRM green point specified");
821 return;
822 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600823 itemp = (png_uint_32)(green_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500824 png_save_uint_32(buf + 16, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600825 itemp = (png_uint_32)(green_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500826 png_save_uint_32(buf + 20, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500827
828 if (blue_x < 0 || blue_x > 0.8 || blue_y < 0 || blue_y > 0.8 ||
829 blue_x + blue_y > 1.0)
830 {
831 png_warning(png_ptr, "Invalid cHRM blue point specified");
832 return;
833 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600834 itemp = (png_uint_32)(blue_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500835 png_save_uint_32(buf + 24, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600836 itemp = (png_uint_32)(blue_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500837 png_save_uint_32(buf + 28, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500838
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600839 png_write_chunk(png_ptr, (png_bytep)png_cHRM, buf, (png_size_t)32);
Guy Schalnat0d580581995-07-20 02:43:20 -0500840}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500841#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600842#ifdef PNG_FIXED_POINT_SUPPORTED
843void
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600844png_write_cHRM_fixed(png_structp png_ptr, png_fixed_point white_x,
845 png_fixed_point white_y, png_fixed_point red_x, png_fixed_point red_y,
846 png_fixed_point green_x, png_fixed_point green_y, png_fixed_point blue_x,
847 png_fixed_point blue_y)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600848{
849#ifdef PNG_USE_LOCAL_ARRAYS
850 PNG_cHRM;
851#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600852 png_byte buf[32];
853
854 png_debug(1, "in png_write_cHRM\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600855 /* each value is saved in 1/100,000ths */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600856 if (white_x > 80000L || white_y > 80000L || white_x + white_y > 100000L)
857 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600858 png_warning(png_ptr, "Invalid fixed cHRM white point specified");
859 printf("white_x=%ld, white_y=%ld\n",white_x, white_y);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600860 return;
861 }
862 png_save_uint_32(buf, white_x);
863 png_save_uint_32(buf + 4, white_y);
864
865 if (red_x > 80000L || red_y > 80000L || red_x + red_y > 100000L)
866 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600867 png_warning(png_ptr, "Invalid cHRM fixed red point specified");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600868 return;
869 }
870 png_save_uint_32(buf + 8, red_x);
871 png_save_uint_32(buf + 12, red_y);
872
873 if (green_x > 80000L || green_y > 80000L || green_x + green_y > 100000L)
874 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600875 png_warning(png_ptr, "Invalid fixed cHRM green point specified");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600876 return;
877 }
878 png_save_uint_32(buf + 16, green_x);
879 png_save_uint_32(buf + 20, green_y);
880
881 if (blue_x > 80000L || blue_y > 80000L || blue_x + blue_y > 100000L)
882 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600883 png_warning(png_ptr, "Invalid fixed cHRM blue point specified");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600884 return;
885 }
886 png_save_uint_32(buf + 24, blue_x);
887 png_save_uint_32(buf + 28, blue_y);
888
889 png_write_chunk(png_ptr, (png_bytep)png_cHRM, buf, (png_size_t)32);
890}
891#endif
892#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500893
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500894#if defined(PNG_WRITE_tRNS_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500895/* write the tRNS chunk */
896void
Guy Schalnat6d764711995-12-19 03:22:19 -0600897png_write_tRNS(png_structp png_ptr, png_bytep trans, png_color_16p tran,
Guy Schalnat0d580581995-07-20 02:43:20 -0500898 int num_trans, int color_type)
899{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600900#ifdef PNG_USE_LOCAL_ARRAYS
901 PNG_tRNS;
902#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500903 png_byte buf[6];
904
Andreas Dilger47a0c421997-05-16 02:46:07 -0500905 png_debug(1, "in png_write_tRNS\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500906 if (color_type == PNG_COLOR_TYPE_PALETTE)
907 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600908 if (num_trans <= 0 || num_trans > (int)png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -0500909 {
910 png_warning(png_ptr,"Invalid number of transparent colors specified");
911 return;
912 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500913 /* write the chunk out as it is */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600914 png_write_chunk(png_ptr, (png_bytep)png_tRNS, trans, (png_size_t)num_trans);
Guy Schalnat0d580581995-07-20 02:43:20 -0500915 }
916 else if (color_type == PNG_COLOR_TYPE_GRAY)
917 {
918 /* one 16 bit value */
919 png_save_uint_16(buf, tran->gray);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600920 png_write_chunk(png_ptr, (png_bytep)png_tRNS, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -0500921 }
922 else if (color_type == PNG_COLOR_TYPE_RGB)
923 {
924 /* three 16 bit values */
925 png_save_uint_16(buf, tran->red);
926 png_save_uint_16(buf + 2, tran->green);
927 png_save_uint_16(buf + 4, tran->blue);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600928 png_write_chunk(png_ptr, (png_bytep)png_tRNS, buf, (png_size_t)6);
Guy Schalnat0d580581995-07-20 02:43:20 -0500929 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500930 else
931 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600932 png_warning(png_ptr, "Can't write tRNS with an alpha channel");
Guy Schalnate5a37791996-06-05 15:50:50 -0500933 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500934}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500935#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500936
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500937#if defined(PNG_WRITE_bKGD_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500938/* write the background chunk */
939void
Guy Schalnat6d764711995-12-19 03:22:19 -0600940png_write_bKGD(png_structp png_ptr, png_color_16p back, int color_type)
Guy Schalnat0d580581995-07-20 02:43:20 -0500941{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600942#ifdef PNG_USE_LOCAL_ARRAYS
943 PNG_bKGD;
944#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500945 png_byte buf[6];
946
Andreas Dilger47a0c421997-05-16 02:46:07 -0500947 png_debug(1, "in png_write_bKGD\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500948 if (color_type == PNG_COLOR_TYPE_PALETTE)
949 {
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500950 if (
951#ifdef PNG_WRITE_EMPTY_PLTE_SUPPORTED
952 (!png_ptr->empty_plte_permitted ||
953 (png_ptr->empty_plte_permitted && png_ptr->num_palette)) &&
954#endif
955 back->index > png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -0500956 {
957 png_warning(png_ptr, "Invalid background palette index");
958 return;
959 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500960 buf[0] = back->index;
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600961 png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)1);
Guy Schalnat0d580581995-07-20 02:43:20 -0500962 }
963 else if (color_type & PNG_COLOR_MASK_COLOR)
964 {
965 png_save_uint_16(buf, back->red);
966 png_save_uint_16(buf + 2, back->green);
967 png_save_uint_16(buf + 4, back->blue);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600968 png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)6);
Guy Schalnat0d580581995-07-20 02:43:20 -0500969 }
970 else
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600971 {
Guy Schalnat0d580581995-07-20 02:43:20 -0500972 png_save_uint_16(buf, back->gray);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600973 png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -0500974 }
975}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500976#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500977
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500978#if defined(PNG_WRITE_hIST_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500979/* write the histogram */
980void
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600981png_write_hIST(png_structp png_ptr, png_uint_16p hist, int num_hist)
Guy Schalnat0d580581995-07-20 02:43:20 -0500982{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600983#ifdef PNG_USE_LOCAL_ARRAYS
984 PNG_hIST;
985#endif
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600986 int i;
Guy Schalnat0d580581995-07-20 02:43:20 -0500987 png_byte buf[3];
988
Andreas Dilger47a0c421997-05-16 02:46:07 -0500989 png_debug(1, "in png_write_hIST\n");
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600990 if (num_hist > (int)png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -0500991 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500992 png_debug2(3, "num_hist = %d, num_palette = %d\n", num_hist,
993 png_ptr->num_palette);
Guy Schalnate5a37791996-06-05 15:50:50 -0500994 png_warning(png_ptr, "Invalid number of histogram entries specified");
995 return;
996 }
997
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600998 png_write_chunk_start(png_ptr, (png_bytep)png_hIST, (png_uint_32)(num_hist * 2));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500999 for (i = 0; i < num_hist; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05001000 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001001 png_save_uint_16(buf, hist[i]);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001002 png_write_chunk_data(png_ptr, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -05001003 }
1004 png_write_chunk_end(png_ptr);
1005}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001006#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001007
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001008#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_pCAL_SUPPORTED) || \
1009 defined(PNG_WRITE_iCCP_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001010/* Check that the tEXt or zTXt keyword is valid per PNG 1.0 specification,
1011 * and if invalid, correct the keyword rather than discarding the entire
1012 * chunk. The PNG 1.0 specification requires keywords 1-79 characters in
1013 * length, forbids leading or trailing whitespace, multiple internal spaces,
1014 * and the non-break space (0x80) from ISO 8859-1. Returns keyword length.
Andreas Dilger47a0c421997-05-16 02:46:07 -05001015 *
1016 * The new_key is allocated to hold the corrected keyword and must be freed
1017 * by the calling routine. This avoids problems with trying to write to
1018 * static keywords without having to have duplicate copies of the strings.
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001019 */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001020png_size_t
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001021png_check_keyword(png_structp png_ptr, png_charp key, png_charpp new_key)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001022{
Andreas Dilger47a0c421997-05-16 02:46:07 -05001023 png_size_t key_len;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001024 png_charp kp, dp;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001025 int kflag;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001026
Andreas Dilger47a0c421997-05-16 02:46:07 -05001027 png_debug(1, "in png_check_keyword\n");
1028 *new_key = NULL;
1029
1030 if (key == NULL || (key_len = png_strlen(key)) == 0)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001031 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001032 png_chunk_warning(png_ptr, "zero length keyword");
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -06001033 return ((png_size_t)0);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001034 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001035
Andreas Dilger47a0c421997-05-16 02:46:07 -05001036 png_debug1(2, "Keyword to be checked is '%s'\n", key);
1037
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001038 *new_key = (png_charp)png_malloc(png_ptr, (png_uint_32)(key_len + 1));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001039
1040 /* Replace non-printing characters with a blank and print a warning */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001041 for (kp = key, dp = *new_key; *kp != '\0'; kp++, dp++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001042 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001043 if (*kp < 0x20 || (*kp > 0x7E && (png_byte)*kp < 0xA1))
Andreas Dilger47a0c421997-05-16 02:46:07 -05001044 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001045#if !defined(PNG_NO_STDIO)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001046 char msg[40];
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001047
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001048 sprintf(msg, "invalid keyword character 0x%02X", *kp);
1049 png_chunk_warning(png_ptr, msg);
1050#else
1051 png_chunk_warning(png_ptr, "invalid character in keyword");
1052#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001053 *dp = ' ';
1054 }
1055 else
1056 {
1057 *dp = *kp;
1058 }
1059 }
1060 *dp = '\0';
1061
1062 /* Remove any trailing white space. */
1063 kp = *new_key + key_len - 1;
1064 if (*kp == ' ')
1065 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001066 png_chunk_warning(png_ptr, "trailing spaces removed from keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001067
1068 while (*kp == ' ')
1069 {
1070 *(kp--) = '\0';
1071 key_len--;
1072 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001073 }
1074
1075 /* Remove any leading white space. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001076 kp = *new_key;
1077 if (*kp == ' ')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001078 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001079 png_chunk_warning(png_ptr, "leading spaces removed from keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001080
1081 while (*kp == ' ')
1082 {
1083 kp++;
1084 key_len--;
1085 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001086 }
1087
Andreas Dilger47a0c421997-05-16 02:46:07 -05001088 png_debug1(2, "Checking for multiple internal spaces in '%s'\n", kp);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001089
Andreas Dilger47a0c421997-05-16 02:46:07 -05001090 /* Remove multiple internal spaces. */
1091 for (kflag = 0, dp = *new_key; *kp != '\0'; kp++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001092 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001093 if (*kp == ' ' && kflag == 0)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001094 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001095 *(dp++) = *kp;
1096 kflag = 1;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001097 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001098 else if (*kp == ' ')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001099 {
1100 key_len--;
1101 }
1102 else
1103 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001104 *(dp++) = *kp;
1105 kflag = 0;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001106 }
1107 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001108 *dp = '\0';
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001109
1110 if (key_len == 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001111 {
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001112 png_free(png_ptr, *new_key);
1113 *new_key=NULL;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001114 png_chunk_warning(png_ptr, "Zero length keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001115 }
1116
1117 if (key_len > 79)
1118 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001119 png_chunk_warning(png_ptr, "keyword length must be 1 - 79 characters");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001120 new_key[79] = '\0';
1121 key_len = 79;
1122 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001123
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -06001124 return (key_len);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001125}
1126#endif
1127
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001128#if defined(PNG_WRITE_tEXt_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001129/* write a tEXt chunk */
1130void
Guy Schalnat6d764711995-12-19 03:22:19 -06001131png_write_tEXt(png_structp png_ptr, png_charp key, png_charp text,
Andreas Dilger47a0c421997-05-16 02:46:07 -05001132 png_size_t text_len)
Guy Schalnat0d580581995-07-20 02:43:20 -05001133{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001134#ifdef PNG_USE_LOCAL_ARRAYS
1135 PNG_tEXt;
1136#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001137 png_size_t key_len;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001138 png_charp new_key;
Guy Schalnat0d580581995-07-20 02:43:20 -05001139
Andreas Dilger47a0c421997-05-16 02:46:07 -05001140 png_debug(1, "in png_write_tEXt\n");
1141 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
1142 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001143 png_warning(png_ptr, "Empty keyword in tEXt chunk");
Guy Schalnate5a37791996-06-05 15:50:50 -05001144 return;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001145 }
Guy Schalnate5a37791996-06-05 15:50:50 -05001146
Andreas Dilger47a0c421997-05-16 02:46:07 -05001147 if (text == NULL || *text == '\0')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001148 text_len = 0;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001149 else
1150 text_len = png_strlen(text);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001151
1152 /* make sure we include the 0 after the key */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001153 png_write_chunk_start(png_ptr, (png_bytep)png_tEXt, (png_uint_32)key_len+text_len+1);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001154 /*
1155 * We leave it to the application to meet PNG-1.0 requirements on the
1156 * contents of the text. PNG-1.0 through PNG-1.2 discourage the use of
1157 * any non-Latin-1 characters except for NEWLINE. ISO PNG will forbid them.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001158 * The NUL character is forbidden by PNG-1.0 through PNG-1.2 and ISO PNG.
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001159 */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001160 png_write_chunk_data(png_ptr, (png_bytep)new_key, key_len + 1);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001161 if (text_len)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001162 png_write_chunk_data(png_ptr, (png_bytep)text, text_len);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001163
Guy Schalnat0d580581995-07-20 02:43:20 -05001164 png_write_chunk_end(png_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001165 png_free(png_ptr, new_key);
Guy Schalnat0d580581995-07-20 02:43:20 -05001166}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001167#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001168
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001169#if defined(PNG_WRITE_zTXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001170/* write a compressed text chunk */
Guy Schalnat0d580581995-07-20 02:43:20 -05001171void
Guy Schalnat6d764711995-12-19 03:22:19 -06001172png_write_zTXt(png_structp png_ptr, png_charp key, png_charp text,
Andreas Dilger47a0c421997-05-16 02:46:07 -05001173 png_size_t text_len, int compression)
Guy Schalnat0d580581995-07-20 02:43:20 -05001174{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001175#ifdef PNG_USE_LOCAL_ARRAYS
1176 PNG_zTXt;
1177#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001178 png_size_t key_len;
Guy Schalnat0d580581995-07-20 02:43:20 -05001179 char buf[1];
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001180 png_charp new_key;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001181 compression_state comp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001182
Andreas Dilger47a0c421997-05-16 02:46:07 -05001183 png_debug(1, "in png_write_zTXt\n");
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001184
Andreas Dilger47a0c421997-05-16 02:46:07 -05001185 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
Guy Schalnate5a37791996-06-05 15:50:50 -05001186 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001187 png_warning(png_ptr, "Empty keyword in zTXt chunk");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001188 return;
Guy Schalnate5a37791996-06-05 15:50:50 -05001189 }
1190
Andreas Dilger47a0c421997-05-16 02:46:07 -05001191 if (text == NULL || *text == '\0' || compression==PNG_TEXT_COMPRESSION_NONE)
1192 {
1193 png_write_tEXt(png_ptr, new_key, text, (png_size_t)0);
1194 png_free(png_ptr, new_key);
1195 return;
1196 }
1197
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001198 text_len = png_strlen(text);
1199
Andreas Dilger47a0c421997-05-16 02:46:07 -05001200 png_free(png_ptr, new_key);
1201
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001202 /* compute the compressed data; do it now for the length */
1203 text_len = png_text_compress(png_ptr, text, text_len, compression, &comp);
Guy Schalnat0d580581995-07-20 02:43:20 -05001204
1205 /* write start of chunk */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001206 png_write_chunk_start(png_ptr, (png_bytep)png_zTXt, (png_uint_32)
1207 (key_len+text_len+2));
Guy Schalnat0d580581995-07-20 02:43:20 -05001208 /* write key */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001209 png_write_chunk_data(png_ptr, (png_bytep)key, key_len + 1);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001210 buf[0] = (png_byte)compression;
Guy Schalnat0d580581995-07-20 02:43:20 -05001211 /* write compression */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001212 png_write_chunk_data(png_ptr, (png_bytep)buf, (png_size_t)1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001213 /* write the compressed data */
1214 png_write_compressed_data_out(png_ptr, &comp);
Guy Schalnat0d580581995-07-20 02:43:20 -05001215
Guy Schalnat0d580581995-07-20 02:43:20 -05001216 /* close the chunk */
1217 png_write_chunk_end(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05001218}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001219#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001220
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001221#if defined(PNG_WRITE_iTXt_SUPPORTED)
1222/* write an iTXt chunk */
1223void
1224png_write_iTXt(png_structp png_ptr, int compression, png_charp key,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001225 png_charp lang, png_charp lang_key, png_charp text)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001226{
1227#ifdef PNG_USE_LOCAL_ARRAYS
1228 PNG_iTXt;
1229#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001230 png_size_t lang_len, key_len, lang_key_len, text_len;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001231 png_charp new_lang, new_key;
1232 png_byte cbuf[2];
1233 compression_state comp;
1234
1235 png_debug(1, "in png_write_iTXt\n");
1236
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001237 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
1238 {
1239 png_warning(png_ptr, "Empty keyword in iTXt chunk");
1240 return;
1241 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001242 if (lang == NULL || (lang_len = png_check_keyword(png_ptr, lang,
1243 &new_lang))==0)
1244 {
1245 png_warning(png_ptr, "Empty language field in iTXt chunk");
1246 return;
1247 }
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001248 lang_key_len = png_strlen(lang_key);
1249 text_len = png_strlen(text);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001250
1251 if (text == NULL || *text == '\0')
1252 text_len = 0;
1253
1254 /* compute the compressed data; do it now for the length */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001255 text_len = png_text_compress(png_ptr, text, text_len, compression-2, &comp);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001256
1257 /* make sure we include the compression flag, the compression byte,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001258 * and the NULs after the key, lang, and lang_key parts */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001259
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001260 png_write_chunk_start(png_ptr, (png_bytep)png_iTXt,
1261 (png_uint_32)(
1262 5 /* comp byte, comp flag, terminators for key, lang and lang_key */
1263 + key_len
1264 + lang_len
1265 + lang_key_len
1266 + text_len));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001267
1268 /*
1269 * We leave it to the application to meet PNG-1.0 requirements on the
1270 * contents of the text. PNG-1.0 through PNG-1.2 discourage the use of
1271 * any non-Latin-1 characters except for NEWLINE. ISO PNG will forbid them.
1272 * The NUL character is forbidden by PNG-1.0 through PNG-1.2 and ISO PNG.
1273 */
1274 png_write_chunk_data(png_ptr, (png_bytep)new_key, key_len + 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001275
1276 /* set the compression flag */
1277 if (compression == PNG_ITXT_COMPRESSION_NONE || \
1278 compression == PNG_TEXT_COMPRESSION_NONE)
1279 cbuf[0] = 0;
1280 else /* compression == PNG_ITXT_COMPRESSION_zTXt */
1281 cbuf[0] = 1;
1282 /* set the compression method */
1283 cbuf[1] = 0;
1284 png_write_chunk_data(png_ptr, cbuf, 2);
1285
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001286 png_write_chunk_data(png_ptr, (png_bytep)new_lang, lang_len + 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001287 png_write_chunk_data(png_ptr, (png_bytep)lang_key, lang_key_len+1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001288 png_write_chunk_data(png_ptr, '\0', 1);
1289
1290 png_write_compressed_data_out(png_ptr, &comp);
1291
1292 png_write_chunk_end(png_ptr);
1293 png_free(png_ptr, new_key);
1294 png_free(png_ptr, new_lang);
1295}
1296#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001297
1298#if defined(PNG_WRITE_oFFs_SUPPORTED)
1299/* write the oFFs chunk */
1300void
1301png_write_oFFs(png_structp png_ptr, png_uint_32 x_offset,
1302 png_uint_32 y_offset,
1303 int unit_type)
1304{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001305#ifdef PNG_USE_LOCAL_ARRAYS
1306 PNG_oFFs;
1307#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001308 png_byte buf[9];
1309
1310 png_debug(1, "in png_write_oFFs\n");
1311 if (unit_type >= PNG_OFFSET_LAST)
1312 png_warning(png_ptr, "Unrecognized unit type for oFFs chunk");
1313
1314 png_save_uint_32(buf, x_offset);
1315 png_save_uint_32(buf + 4, y_offset);
1316 buf[8] = (png_byte)unit_type;
1317
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001318 png_write_chunk(png_ptr, (png_bytep)png_oFFs, buf, (png_size_t)9);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001319}
1320#endif
1321
1322#if defined(PNG_WRITE_pCAL_SUPPORTED)
1323/* write the pCAL chunk (png-scivis-19970203) */
1324void
1325png_write_pCAL(png_structp png_ptr, png_charp purpose, png_int_32 X0,
1326 png_int_32 X1, int type, int nparams, png_charp units, png_charpp params)
1327{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001328#ifdef PNG_USE_LOCAL_ARRAYS
1329 PNG_pCAL;
1330#endif
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001331 png_size_t purpose_len, units_len, total_len;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001332 png_uint_32p params_len;
1333 png_byte buf[10];
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001334 png_charp new_purpose;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001335 int i;
1336
1337 png_debug1(1, "in png_write_pCAL (%d parameters)\n", nparams);
1338 if (type >= PNG_EQUATION_LAST)
1339 png_warning(png_ptr, "Unrecognized equation type for pCAL chunk");
1340
1341 purpose_len = png_check_keyword(png_ptr, purpose, &new_purpose) + 1;
1342 png_debug1(3, "pCAL purpose length = %d\n", purpose_len);
1343 units_len = png_strlen(units) + (nparams == 0 ? 0 : 1);
1344 png_debug1(3, "pCAL units length = %d\n", units_len);
1345 total_len = purpose_len + units_len + 10;
1346
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001347 params_len = (png_uint_32p)png_malloc(png_ptr, (png_uint_32)(nparams
1348 *sizeof(png_uint_32)));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001349
1350 /* Find the length of each parameter, making sure we don't count the
1351 null terminator for the last parameter. */
1352 for (i = 0; i < nparams; i++)
1353 {
1354 params_len[i] = png_strlen(params[i]) + (i == nparams - 1 ? 0 : 1);
1355 png_debug2(3, "pCAL parameter %d length = %d\n", i, params_len[i]);
1356 total_len += (png_size_t)params_len[i];
1357 }
1358
1359 png_debug1(3, "pCAL total length = %d\n", total_len);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001360 png_write_chunk_start(png_ptr, (png_bytep)png_pCAL, (png_uint_32)total_len);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001361 png_write_chunk_data(png_ptr, (png_bytep)new_purpose, purpose_len);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001362 png_save_int_32(buf, X0);
1363 png_save_int_32(buf + 4, X1);
1364 buf[8] = (png_byte)type;
1365 buf[9] = (png_byte)nparams;
1366 png_write_chunk_data(png_ptr, buf, (png_size_t)10);
1367 png_write_chunk_data(png_ptr, (png_bytep)units, (png_size_t)units_len);
1368
1369 png_free(png_ptr, new_purpose);
1370
1371 for (i = 0; i < nparams; i++)
1372 {
1373 png_write_chunk_data(png_ptr, (png_bytep)params[i],
1374 (png_size_t)params_len[i]);
1375 }
1376
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001377 png_free(png_ptr, params_len);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001378 png_write_chunk_end(png_ptr);
1379}
1380#endif
1381
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001382#if defined(PNG_WRITE_sCAL_SUPPORTED)
1383/* write the sCAL chunk */
1384#ifdef PNG_FLOATING_POINT_SUPPORTED
1385void
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001386png_write_sCAL(png_structp png_ptr, int unit, double width,double height)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001387{
1388#ifdef PNG_USE_LOCAL_ARRAYS
1389 PNG_sCAL;
1390#endif
1391 png_size_t total_len;
1392 char wbuf[32], hbuf[32];
1393
1394 png_debug(1, "in png_write_sCAL\n");
1395
1396 sprintf(wbuf, "%12.12e", width);
1397 sprintf(hbuf, "%12.12e", height);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001398 total_len = 1 + png_strlen(wbuf)+1 + png_strlen(hbuf);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001399
1400 png_debug1(3, "sCAL total length = %d\n", total_len);
1401 png_write_chunk_start(png_ptr, (png_bytep)png_sCAL, (png_uint_32)total_len);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001402 png_write_chunk_data(png_ptr, (png_bytep)&unit, 1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001403 png_write_chunk_data(png_ptr, (png_bytep)wbuf, strlen(wbuf)+1);
1404 png_write_chunk_data(png_ptr, (png_bytep)hbuf, strlen(hbuf));
1405
1406 png_write_chunk_end(png_ptr);
1407}
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001408#else
1409#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001410void
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001411png_write_sCAL_s(png_structp png_ptr, int unit, png_charp width,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001412 png_charp height)
1413{
1414#ifdef PNG_USE_LOCAL_ARRAYS
1415 PNG_sCAL;
1416#endif
1417 png_size_t total_len;
1418 char wbuf[32], hbuf[32];
1419
1420 png_debug(1, "in png_write_sCAL\n");
1421
1422 sprintf(wbuf, "%s", width);
1423 sprintf(hbuf, "%s", height);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001424 total_len = 1 + png_strlen(wbuf)+1 + png_strlen(hbuf);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001425
1426 png_debug1(3, "sCAL total length = %d\n", total_len);
1427 png_write_chunk_start(png_ptr, (png_bytep)png_sCAL, (png_uint_32)total_len);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001428 png_write_chunk_data(png_ptr, (png_bytep)&unit, 1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001429 png_write_chunk_data(png_ptr, (png_bytep)wbuf, strlen(wbuf)+1);
1430 png_write_chunk_data(png_ptr, (png_bytep)hbuf, strlen(hbuf));
1431
1432 png_write_chunk_end(png_ptr);
1433}
1434#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001435#endif
1436#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001437
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001438#if defined(PNG_WRITE_pHYs_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001439/* write the pHYs chunk */
1440void
Guy Schalnat6d764711995-12-19 03:22:19 -06001441png_write_pHYs(png_structp png_ptr, png_uint_32 x_pixels_per_unit,
Guy Schalnat0d580581995-07-20 02:43:20 -05001442 png_uint_32 y_pixels_per_unit,
1443 int unit_type)
1444{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001445#ifdef PNG_USE_LOCAL_ARRAYS
1446 PNG_pHYs;
1447#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001448 png_byte buf[9];
1449
Andreas Dilger47a0c421997-05-16 02:46:07 -05001450 png_debug(1, "in png_write_pHYs\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001451 if (unit_type >= PNG_RESOLUTION_LAST)
1452 png_warning(png_ptr, "Unrecognized unit type for pHYs chunk");
1453
Guy Schalnat0d580581995-07-20 02:43:20 -05001454 png_save_uint_32(buf, x_pixels_per_unit);
1455 png_save_uint_32(buf + 4, y_pixels_per_unit);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001456 buf[8] = (png_byte)unit_type;
Guy Schalnat0d580581995-07-20 02:43:20 -05001457
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001458 png_write_chunk(png_ptr, (png_bytep)png_pHYs, buf, (png_size_t)9);
Guy Schalnat0d580581995-07-20 02:43:20 -05001459}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001460#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001461
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001462#if defined(PNG_WRITE_tIME_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001463/* Write the tIME chunk. Use either png_convert_from_struct_tm()
1464 * or png_convert_from_time_t(), or fill in the structure yourself.
1465 */
Guy Schalnat0d580581995-07-20 02:43:20 -05001466void
Guy Schalnat6d764711995-12-19 03:22:19 -06001467png_write_tIME(png_structp png_ptr, png_timep mod_time)
Guy Schalnat0d580581995-07-20 02:43:20 -05001468{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001469#ifdef PNG_USE_LOCAL_ARRAYS
1470 PNG_tIME;
1471#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001472 png_byte buf[7];
1473
Andreas Dilger47a0c421997-05-16 02:46:07 -05001474 png_debug(1, "in png_write_tIME\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001475 if (mod_time->month > 12 || mod_time->month < 1 ||
1476 mod_time->day > 31 || mod_time->day < 1 ||
1477 mod_time->hour > 23 || mod_time->second > 60)
1478 {
1479 png_warning(png_ptr, "Invalid time specified for tIME chunk");
1480 return;
1481 }
1482
Guy Schalnat0d580581995-07-20 02:43:20 -05001483 png_save_uint_16(buf, mod_time->year);
1484 buf[2] = mod_time->month;
1485 buf[3] = mod_time->day;
1486 buf[4] = mod_time->hour;
1487 buf[5] = mod_time->minute;
1488 buf[6] = mod_time->second;
1489
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001490 png_write_chunk(png_ptr, (png_bytep)png_tIME, buf, (png_size_t)7);
Guy Schalnat0d580581995-07-20 02:43:20 -05001491}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001492#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001493
1494/* initializes the row writing capability of libpng */
1495void
Guy Schalnat6d764711995-12-19 03:22:19 -06001496png_write_start_row(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05001497{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001498#ifdef PNG_USE_LOCAL_ARRAYS
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001499 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001500
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001501 /* start of interlace block */
1502 int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001503
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001504 /* offset to next interlace block */
1505 int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001506
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001507 /* start of interlace block in the y direction */
1508 int png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001509
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001510 /* offset to next interlace block in the y direction */
1511 int png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001512#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001513
Andreas Dilger47a0c421997-05-16 02:46:07 -05001514 png_size_t buf_size;
1515
1516 png_debug(1, "in png_write_start_row\n");
1517 buf_size = (png_size_t)(((png_ptr->width * png_ptr->usr_channels *
1518 png_ptr->usr_bit_depth + 7) >> 3) + 1);
1519
Guy Schalnat0d580581995-07-20 02:43:20 -05001520 /* set up row buffer */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001521 png_ptr->row_buf = (png_bytep)png_malloc(png_ptr, (png_uint_32)buf_size);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001522 png_ptr->row_buf[0] = PNG_FILTER_VALUE_NONE;
Guy Schalnate5a37791996-06-05 15:50:50 -05001523
1524 /* set up filtering buffer, if using this filter */
1525 if (png_ptr->do_filter & PNG_FILTER_SUB)
Guy Schalnat0d580581995-07-20 02:43:20 -05001526 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001527 png_ptr->sub_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001528 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001529 png_ptr->sub_row[0] = PNG_FILTER_VALUE_SUB;
Guy Schalnate5a37791996-06-05 15:50:50 -05001530 }
1531
Andreas Dilger47a0c421997-05-16 02:46:07 -05001532 /* We only need to keep the previous row if we are using one of these. */
Guy Schalnate5a37791996-06-05 15:50:50 -05001533 if (png_ptr->do_filter & (PNG_FILTER_AVG | PNG_FILTER_UP | PNG_FILTER_PAETH))
1534 {
1535 /* set up previous row buffer */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001536 png_ptr->prev_row = (png_bytep)png_malloc(png_ptr, (png_uint_32)buf_size);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001537 png_memset(png_ptr->prev_row, 0, buf_size);
Guy Schalnate5a37791996-06-05 15:50:50 -05001538
1539 if (png_ptr->do_filter & PNG_FILTER_UP)
1540 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001541 png_ptr->up_row = (png_bytep )png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001542 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001543 png_ptr->up_row[0] = PNG_FILTER_VALUE_UP;
Guy Schalnate5a37791996-06-05 15:50:50 -05001544 }
1545
1546 if (png_ptr->do_filter & PNG_FILTER_AVG)
1547 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001548 png_ptr->avg_row = (png_bytep)png_malloc(png_ptr,
1549 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001550 png_ptr->avg_row[0] = PNG_FILTER_VALUE_AVG;
Guy Schalnate5a37791996-06-05 15:50:50 -05001551 }
1552
1553 if (png_ptr->do_filter & PNG_FILTER_PAETH)
1554 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001555 png_ptr->paeth_row = (png_bytep )png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001556 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001557 png_ptr->paeth_row[0] = PNG_FILTER_VALUE_PAETH;
Guy Schalnate5a37791996-06-05 15:50:50 -05001558 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001559 }
1560
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001561#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05001562 /* if interlaced, we need to set up width and height of pass */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001563 if (png_ptr->interlaced)
Guy Schalnat0d580581995-07-20 02:43:20 -05001564 {
1565 if (!(png_ptr->transformations & PNG_INTERLACE))
1566 {
1567 png_ptr->num_rows = (png_ptr->height + png_pass_yinc[0] - 1 -
1568 png_pass_ystart[0]) / png_pass_yinc[0];
Andreas Dilger47a0c421997-05-16 02:46:07 -05001569 png_ptr->usr_width = (png_ptr->width + png_pass_inc[0] - 1 -
1570 png_pass_start[0]) / png_pass_inc[0];
Guy Schalnat0d580581995-07-20 02:43:20 -05001571 }
1572 else
1573 {
1574 png_ptr->num_rows = png_ptr->height;
1575 png_ptr->usr_width = png_ptr->width;
1576 }
1577 }
1578 else
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001579#endif
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001580 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001581 png_ptr->num_rows = png_ptr->height;
1582 png_ptr->usr_width = png_ptr->width;
1583 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001584 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
1585 png_ptr->zstream.next_out = png_ptr->zbuf;
Guy Schalnat0d580581995-07-20 02:43:20 -05001586}
1587
Andreas Dilger47a0c421997-05-16 02:46:07 -05001588/* Internal use only. Called when finished processing a row of data. */
Guy Schalnat0d580581995-07-20 02:43:20 -05001589void
Guy Schalnat6d764711995-12-19 03:22:19 -06001590png_write_finish_row(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05001591{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001592#ifdef PNG_USE_LOCAL_ARRAYS
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001593 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001594
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001595 /* start of interlace block */
1596 int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001597
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001598 /* offset to next interlace block */
1599 int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001600
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001601 /* start of interlace block in the y direction */
1602 int png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001603
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001604 /* offset to next interlace block in the y direction */
1605 int png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001606#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001607
Guy Schalnat0d580581995-07-20 02:43:20 -05001608 int ret;
1609
Andreas Dilger47a0c421997-05-16 02:46:07 -05001610 png_debug(1, "in png_write_finish_row\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001611 /* next row */
1612 png_ptr->row_number++;
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001613
Guy Schalnat0d580581995-07-20 02:43:20 -05001614 /* see if we are done */
Guy Schalnat6d764711995-12-19 03:22:19 -06001615 if (png_ptr->row_number < png_ptr->num_rows)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001616 return;
Guy Schalnat0d580581995-07-20 02:43:20 -05001617
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001618#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05001619 /* if interlaced, go to next pass */
1620 if (png_ptr->interlaced)
1621 {
1622 png_ptr->row_number = 0;
1623 if (png_ptr->transformations & PNG_INTERLACE)
1624 {
1625 png_ptr->pass++;
1626 }
1627 else
1628 {
1629 /* loop until we find a non-zero width or height pass */
1630 do
1631 {
1632 png_ptr->pass++;
1633 if (png_ptr->pass >= 7)
1634 break;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001635 png_ptr->usr_width = (png_ptr->width +
Guy Schalnat0d580581995-07-20 02:43:20 -05001636 png_pass_inc[png_ptr->pass] - 1 -
1637 png_pass_start[png_ptr->pass]) /
1638 png_pass_inc[png_ptr->pass];
1639 png_ptr->num_rows = (png_ptr->height +
1640 png_pass_yinc[png_ptr->pass] - 1 -
1641 png_pass_ystart[png_ptr->pass]) /
1642 png_pass_yinc[png_ptr->pass];
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001643 if (png_ptr->transformations & PNG_INTERLACE)
1644 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05001645 } while (png_ptr->usr_width == 0 || png_ptr->num_rows == 0);
1646
1647 }
1648
Guy Schalnate5a37791996-06-05 15:50:50 -05001649 /* reset the row above the image for the next pass */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001650 if (png_ptr->pass < 7)
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001651 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001652 if (png_ptr->prev_row != NULL)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001653 png_memset(png_ptr->prev_row, 0,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001654 (png_size_t) (((png_uint_32)png_ptr->usr_channels *
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001655 (png_uint_32)png_ptr->usr_bit_depth *
1656 png_ptr->width + 7) >> 3) + 1);
Guy Schalnat0d580581995-07-20 02:43:20 -05001657 return;
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001658 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001659 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001660#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001661
1662 /* if we get here, we've just written the last row, so we need
1663 to flush the compressor */
1664 do
1665 {
1666 /* tell the compressor we are done */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001667 ret = deflate(&png_ptr->zstream, Z_FINISH);
Guy Schalnat0d580581995-07-20 02:43:20 -05001668 /* check for an error */
1669 if (ret != Z_OK && ret != Z_STREAM_END)
1670 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001671 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001672 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnat0d580581995-07-20 02:43:20 -05001673 else
Guy Schalnat6d764711995-12-19 03:22:19 -06001674 png_error(png_ptr, "zlib error");
Guy Schalnat0d580581995-07-20 02:43:20 -05001675 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001676 /* check to see if we need more room */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001677 if (!(png_ptr->zstream.avail_out) && ret == Z_OK)
Guy Schalnat0d580581995-07-20 02:43:20 -05001678 {
1679 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001680 png_ptr->zstream.next_out = png_ptr->zbuf;
1681 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnat0d580581995-07-20 02:43:20 -05001682 }
1683 } while (ret != Z_STREAM_END);
1684
1685 /* write any extra space */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001686 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size)
Guy Schalnat0d580581995-07-20 02:43:20 -05001687 {
1688 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size -
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001689 png_ptr->zstream.avail_out);
Guy Schalnat0d580581995-07-20 02:43:20 -05001690 }
1691
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001692 deflateReset(&png_ptr->zstream);
Guy Schalnat0d580581995-07-20 02:43:20 -05001693}
1694
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001695#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001696/* Pick out the correct pixels for the interlace pass.
1697 * The basic idea here is to go through the row with a source
1698 * pointer and a destination pointer (sp and dp), and copy the
1699 * correct pixels for the pass. As the row gets compacted,
1700 * sp will always be >= dp, so we should never overwrite anything.
1701 * See the default: case for the easiest code to understand.
1702 */
Guy Schalnat0d580581995-07-20 02:43:20 -05001703void
Guy Schalnat6d764711995-12-19 03:22:19 -06001704png_do_write_interlace(png_row_infop row_info, png_bytep row, int pass)
Guy Schalnat0d580581995-07-20 02:43:20 -05001705{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001706#ifdef PNG_USE_LOCAL_ARRAYS
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001707 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001708
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001709 /* start of interlace block */
1710 int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001711
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001712 /* offset to next interlace block */
1713 int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001714#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001715
Andreas Dilger47a0c421997-05-16 02:46:07 -05001716 png_debug(1, "in png_do_write_interlace\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001717 /* we don't have to do anything on the last pass (6) */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001718#if defined(PNG_USELESS_TESTS_SUPPORTED)
1719 if (row != NULL && row_info != NULL && pass < 6)
1720#else
1721 if (pass < 6)
1722#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001723 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001724 /* each pixel depth is handled separately */
Guy Schalnat0d580581995-07-20 02:43:20 -05001725 switch (row_info->pixel_depth)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001726 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001727 case 1:
1728 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001729 png_bytep sp;
1730 png_bytep dp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001731 int shift;
1732 int d;
1733 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001734 png_uint_32 i;
1735 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001736
1737 dp = row;
1738 d = 0;
1739 shift = 7;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001740 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001741 i += png_pass_inc[pass])
1742 {
1743 sp = row + (png_size_t)(i >> 3);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001744 value = (int)(*sp >> (7 - (int)(i & 0x07))) & 0x01;
Guy Schalnat0d580581995-07-20 02:43:20 -05001745 d |= (value << shift);
1746
1747 if (shift == 0)
1748 {
1749 shift = 7;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001750 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001751 d = 0;
1752 }
1753 else
1754 shift--;
1755
1756 }
1757 if (shift != 7)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001758 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001759 break;
1760 }
1761 case 2:
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001762 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001763 png_bytep sp;
1764 png_bytep dp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001765 int shift;
1766 int d;
1767 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001768 png_uint_32 i;
1769 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001770
1771 dp = row;
1772 shift = 6;
1773 d = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001774 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001775 i += png_pass_inc[pass])
1776 {
1777 sp = row + (png_size_t)(i >> 2);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001778 value = (*sp >> ((3 - (int)(i & 0x03)) << 1)) & 0x03;
Guy Schalnat0d580581995-07-20 02:43:20 -05001779 d |= (value << shift);
1780
1781 if (shift == 0)
1782 {
1783 shift = 6;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001784 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001785 d = 0;
1786 }
1787 else
1788 shift -= 2;
1789 }
1790 if (shift != 6)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001791 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001792 break;
1793 }
1794 case 4:
1795 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001796 png_bytep sp;
1797 png_bytep dp;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001798 int shift;
Guy Schalnat0d580581995-07-20 02:43:20 -05001799 int d;
1800 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001801 png_uint_32 i;
1802 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001803
1804 dp = row;
1805 shift = 4;
1806 d = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001807 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001808 i += png_pass_inc[pass])
1809 {
1810 sp = row + (png_size_t)(i >> 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001811 value = (*sp >> ((1 - (int)(i & 0x01)) << 2)) & 0x0f;
Guy Schalnat0d580581995-07-20 02:43:20 -05001812 d |= (value << shift);
1813
1814 if (shift == 0)
1815 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001816 shift = 4;
1817 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001818 d = 0;
1819 }
1820 else
1821 shift -= 4;
1822 }
1823 if (shift != 4)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001824 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001825 break;
1826 }
1827 default:
1828 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001829 png_bytep sp;
1830 png_bytep dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001831 png_uint_32 i;
1832 png_uint_32 row_width = row_info->width;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001833 png_size_t pixel_bytes;
Guy Schalnat0d580581995-07-20 02:43:20 -05001834
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001835 /* start at the beginning */
Guy Schalnat0d580581995-07-20 02:43:20 -05001836 dp = row;
1837 /* find out how many bytes each pixel takes up */
1838 pixel_bytes = (row_info->pixel_depth >> 3);
1839 /* loop through the row, only looking at the pixels that
1840 matter */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001841 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001842 i += png_pass_inc[pass])
1843 {
1844 /* find out where the original pixel is */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001845 sp = row + (png_size_t)i * pixel_bytes;
Guy Schalnat0d580581995-07-20 02:43:20 -05001846 /* move the pixel */
1847 if (dp != sp)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001848 png_memcpy(dp, sp, pixel_bytes);
Guy Schalnat0d580581995-07-20 02:43:20 -05001849 /* next pixel */
1850 dp += pixel_bytes;
1851 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001852 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05001853 }
1854 }
1855 /* set new row width */
1856 row_info->width = (row_info->width +
1857 png_pass_inc[pass] - 1 -
1858 png_pass_start[pass]) /
1859 png_pass_inc[pass];
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001860 row_info->rowbytes = ((row_info->width *
1861 row_info->pixel_depth + 7) >> 3);
Guy Schalnat0d580581995-07-20 02:43:20 -05001862 }
1863}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001864#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001865
Andreas Dilger47a0c421997-05-16 02:46:07 -05001866/* This filters the row, chooses which filter to use, if it has not already
1867 * been specified by the application, and then writes the row out with the
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001868 * chosen filter.
1869 */
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001870#define PNG_MAXSUM (~((png_uint_32)0) >> 1)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001871#define PNG_HISHIFT 10
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001872#define PNG_LOMASK ((png_uint_32)0xffffL)
1873#define PNG_HIMASK ((png_uint_32)(~PNG_LOMASK >> PNG_HISHIFT))
Guy Schalnat0d580581995-07-20 02:43:20 -05001874void
Guy Schalnate5a37791996-06-05 15:50:50 -05001875png_write_find_filter(png_structp png_ptr, png_row_infop row_info)
Guy Schalnat0d580581995-07-20 02:43:20 -05001876{
Guy Schalnate5a37791996-06-05 15:50:50 -05001877 png_bytep prev_row, best_row, row_buf;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001878 png_uint_32 mins, bpp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001879 png_byte filter_to_do = png_ptr->do_filter;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001880 png_uint_32 row_bytes = row_info->rowbytes;
1881#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1882 int num_p_filters = (int)png_ptr->num_prev_filters;
1883#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001884
Andreas Dilger47a0c421997-05-16 02:46:07 -05001885 png_debug(1, "in png_write_find_filter\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001886 /* find out how many bytes offset each pixel is */
1887 bpp = (row_info->pixel_depth + 7) / 8;
Guy Schalnate5a37791996-06-05 15:50:50 -05001888
1889 prev_row = png_ptr->prev_row;
1890 best_row = row_buf = png_ptr->row_buf;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001891 mins = PNG_MAXSUM;
Guy Schalnat0d580581995-07-20 02:43:20 -05001892
Andreas Dilger47a0c421997-05-16 02:46:07 -05001893 /* The prediction method we use is to find which method provides the
1894 * smallest value when summing the absolute values of the distances
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -05001895 * from zero, using anything >= 128 as negative numbers. This is known
Andreas Dilger47a0c421997-05-16 02:46:07 -05001896 * as the "minimum sum of absolute differences" heuristic. Other
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001897 * heuristics are the "weighted minimum sum of absolute differences"
Andreas Dilger47a0c421997-05-16 02:46:07 -05001898 * (experimental and can in theory improve compression), and the "zlib
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001899 * predictive" method (not implemented yet), which does test compressions
1900 * of lines using different filter methods, and then chooses the
1901 * (series of) filter(s) that give minimum compressed data size (VERY
Andreas Dilger47a0c421997-05-16 02:46:07 -05001902 * computationally expensive).
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001903 *
1904 * GRR 980525: consider also
1905 * (1) minimum sum of absolute differences from running average (i.e.,
1906 * keep running sum of non-absolute differences & count of bytes)
1907 * [track dispersion, too? restart average if dispersion too large?]
1908 * (1b) minimum sum of absolute differences from sliding average, probably
1909 * with window size <= deflate window (usually 32K)
1910 * (2) minimum sum of squared differences from zero or running average
1911 * (i.e., ~ root-mean-square approach)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001912 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001913
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001914
Guy Schalnate5a37791996-06-05 15:50:50 -05001915 /* We don't need to test the 'no filter' case if this is the only filter
Andreas Dilger47a0c421997-05-16 02:46:07 -05001916 * that has been chosen, as it doesn't actually do anything to the data.
1917 */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001918 if ((filter_to_do & PNG_FILTER_NONE) &&
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001919 filter_to_do != PNG_FILTER_NONE)
Guy Schalnat0d580581995-07-20 02:43:20 -05001920 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001921 png_bytep rp;
1922 png_uint_32 sum = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001923 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001924 int v;
Guy Schalnat0d580581995-07-20 02:43:20 -05001925
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001926 for (i = 0, rp = row_buf + 1; i < row_bytes; i++, rp++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001927 {
1928 v = *rp;
1929 sum += (v < 128) ? v : 256 - v;
1930 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001931
1932#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1933 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1934 {
1935 png_uint_32 sumhi, sumlo;
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001936 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001937 sumlo = sum & PNG_LOMASK;
1938 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK; /* Gives us some footroom */
1939
1940 /* Reduce the sum if we match any of the previous rows */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001941 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001942 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001943 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_NONE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001944 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001945 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001946 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001947 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05001948 PNG_WEIGHT_SHIFT;
1949 }
1950 }
1951
1952 /* Factor in the cost of this filter (this is here for completeness,
1953 * but it makes no sense to have a "cost" for the NONE filter, as
1954 * it has the minimum possible computational cost - none).
1955 */
1956 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_NONE]) >>
1957 PNG_COST_SHIFT;
1958 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_NONE]) >>
1959 PNG_COST_SHIFT;
1960
1961 if (sumhi > PNG_HIMASK)
1962 sum = PNG_MAXSUM;
1963 else
1964 sum = (sumhi << PNG_HISHIFT) + sumlo;
1965 }
1966#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001967 mins = sum;
Guy Schalnat0d580581995-07-20 02:43:20 -05001968 }
1969
Guy Schalnate5a37791996-06-05 15:50:50 -05001970 /* sub filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001971 if (filter_to_do == PNG_FILTER_SUB)
1972 /* it's the only filter so no testing is needed */
1973 {
1974 png_bytep rp, lp, dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001975 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001976 for (i = 0, rp = row_buf + 1, dp = png_ptr->sub_row + 1; i < bpp;
1977 i++, rp++, dp++)
1978 {
1979 *dp = *rp;
1980 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001981 for (lp = row_buf + 1; i < row_bytes;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001982 i++, rp++, lp++, dp++)
1983 {
1984 *dp = (png_byte)(((int)*rp - (int)*lp) & 0xff);
1985 }
1986 best_row = png_ptr->sub_row;
1987 }
1988
1989 else if (filter_to_do & PNG_FILTER_SUB)
Guy Schalnat0d580581995-07-20 02:43:20 -05001990 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001991 png_bytep rp, dp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001992 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001993 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001994 int v;
1995
1996#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001997 /* We temporarily increase the "minimum sum" by the factor we
Andreas Dilger47a0c421997-05-16 02:46:07 -05001998 * would reduce the sum of this filter, so that we can do the
1999 * early exit comparison without scaling the sum each time.
2000 */
2001 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2002 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002003 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002004 png_uint_32 lmhi, lmlo;
2005 lmlo = lmins & PNG_LOMASK;
2006 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2007
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002008 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002009 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002010 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_SUB)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002011 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002012 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002013 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002014 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002015 PNG_WEIGHT_SHIFT;
2016 }
2017 }
2018
2019 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2020 PNG_COST_SHIFT;
2021 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2022 PNG_COST_SHIFT;
2023
2024 if (lmhi > PNG_HIMASK)
2025 lmins = PNG_MAXSUM;
2026 else
2027 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2028 }
2029#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002030
Guy Schalnate5a37791996-06-05 15:50:50 -05002031 for (i = 0, rp = row_buf + 1, dp = png_ptr->sub_row + 1; i < bpp;
2032 i++, rp++, dp++)
2033 {
2034 v = *dp = *rp;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002035
Guy Schalnate5a37791996-06-05 15:50:50 -05002036 sum += (v < 128) ? v : 256 - v;
2037 }
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06002038 for (lp = row_buf + 1; i < row_info->rowbytes;
2039 i++, rp++, lp++, dp++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002040 {
2041 v = *dp = (png_byte)(((int)*rp - (int)*lp) & 0xff);
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002042
Guy Schalnate5a37791996-06-05 15:50:50 -05002043 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002044
2045 if (sum > lmins) /* We are already worse, don't continue. */
2046 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002047 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002048
2049#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2050 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2051 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002052 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002053 png_uint_32 sumhi, sumlo;
2054 sumlo = sum & PNG_LOMASK;
2055 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2056
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002057 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002058 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002059 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_SUB)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002060 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002061 sumlo = (sumlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002062 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002063 sumhi = (sumhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002064 PNG_WEIGHT_SHIFT;
2065 }
2066 }
2067
2068 sumlo = (sumlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2069 PNG_COST_SHIFT;
2070 sumhi = (sumhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2071 PNG_COST_SHIFT;
2072
2073 if (sumhi > PNG_HIMASK)
2074 sum = PNG_MAXSUM;
2075 else
2076 sum = (sumhi << PNG_HISHIFT) + sumlo;
2077 }
2078#endif
2079
Guy Schalnate5a37791996-06-05 15:50:50 -05002080 if (sum < mins)
2081 {
2082 mins = sum;
2083 best_row = png_ptr->sub_row;
2084 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002085 }
2086
Guy Schalnate5a37791996-06-05 15:50:50 -05002087 /* up filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002088 if (filter_to_do == PNG_FILTER_UP)
2089 {
2090 png_bytep rp, dp, pp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002091 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002092
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002093 for (i = 0, rp = row_buf + 1, dp = png_ptr->up_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002094 pp = prev_row + 1; i < row_bytes;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002095 i++, rp++, pp++, dp++)
2096 {
2097 *dp = (png_byte)(((int)*rp - (int)*pp) & 0xff);
2098 }
2099 best_row = png_ptr->up_row;
2100 }
2101
2102 else if (filter_to_do & PNG_FILTER_UP)
Guy Schalnat0d580581995-07-20 02:43:20 -05002103 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002104 png_bytep rp, dp, pp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002105 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002106 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002107 int v;
2108
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002109
Andreas Dilger47a0c421997-05-16 02:46:07 -05002110#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2111 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2112 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002113 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002114 png_uint_32 lmhi, lmlo;
2115 lmlo = lmins & PNG_LOMASK;
2116 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2117
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002118 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002119 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002120 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_UP)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002121 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002122 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002123 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002124 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002125 PNG_WEIGHT_SHIFT;
2126 }
2127 }
2128
2129 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_UP]) >>
2130 PNG_COST_SHIFT;
2131 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_UP]) >>
2132 PNG_COST_SHIFT;
2133
2134 if (lmhi > PNG_HIMASK)
2135 lmins = PNG_MAXSUM;
2136 else
2137 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2138 }
2139#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002140
2141 for (i = 0, rp = row_buf + 1, dp = png_ptr->up_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002142 pp = prev_row + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002143 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002144 v = *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002145
2146 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002147
2148 if (sum > lmins) /* We are already worse, don't continue. */
2149 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002150 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002151
2152#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2153 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2154 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002155 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002156 png_uint_32 sumhi, sumlo;
2157 sumlo = sum & PNG_LOMASK;
2158 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2159
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002160 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002161 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002162 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_UP)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002163 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002164 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002165 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002166 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002167 PNG_WEIGHT_SHIFT;
2168 }
2169 }
2170
2171 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_UP]) >>
2172 PNG_COST_SHIFT;
2173 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_UP]) >>
2174 PNG_COST_SHIFT;
2175
2176 if (sumhi > PNG_HIMASK)
2177 sum = PNG_MAXSUM;
2178 else
2179 sum = (sumhi << PNG_HISHIFT) + sumlo;
2180 }
2181#endif
2182
Guy Schalnate5a37791996-06-05 15:50:50 -05002183 if (sum < mins)
2184 {
2185 mins = sum;
2186 best_row = png_ptr->up_row;
2187 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002188 }
2189
Guy Schalnate5a37791996-06-05 15:50:50 -05002190 /* avg filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002191 if (filter_to_do == PNG_FILTER_AVG)
2192 {
2193 png_bytep rp, dp, pp, lp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002194 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002195 for (i = 0, rp = row_buf + 1, dp = png_ptr->avg_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002196 pp = prev_row + 1; i < bpp; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002197 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002198 *dp++ = (png_byte)(((int)*rp++ - ((int)*pp++ / 2)) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002199 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002200 for (lp = row_buf + 1; i < row_bytes; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002201 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002202 *dp++ = (png_byte)(((int)*rp++ - (((int)*pp++ + (int)*lp++) / 2))
2203 & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002204 }
2205 best_row = png_ptr->avg_row;
2206 }
2207
2208 else if (filter_to_do & PNG_FILTER_AVG)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002209 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002210 png_bytep rp, dp, pp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002211 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002212 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002213 int v;
2214
2215#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2216 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2217 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002218 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002219 png_uint_32 lmhi, lmlo;
2220 lmlo = lmins & PNG_LOMASK;
2221 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2222
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002223 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002224 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002225 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_AVG)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002226 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002227 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002228 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002229 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002230 PNG_WEIGHT_SHIFT;
2231 }
2232 }
2233
2234 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_AVG]) >>
2235 PNG_COST_SHIFT;
2236 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_AVG]) >>
2237 PNG_COST_SHIFT;
2238
2239 if (lmhi > PNG_HIMASK)
2240 lmins = PNG_MAXSUM;
2241 else
2242 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2243 }
2244#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002245
2246 for (i = 0, rp = row_buf + 1, dp = png_ptr->avg_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002247 pp = prev_row + 1; i < bpp; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002248 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002249 v = *dp++ = (png_byte)(((int)*rp++ - ((int)*pp++ / 2)) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002250
2251 sum += (v < 128) ? v : 256 - v;
2252 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002253 for (lp = row_buf + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002254 {
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002255 v = *dp++ =
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002256 (png_byte)(((int)*rp++ - (((int)*pp++ + (int)*lp++) / 2)) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002257
2258 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002259
2260 if (sum > lmins) /* We are already worse, don't continue. */
2261 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002262 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002263
2264#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2265 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2266 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002267 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002268 png_uint_32 sumhi, sumlo;
2269 sumlo = sum & PNG_LOMASK;
2270 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2271
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002272 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002273 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002274 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_NONE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002275 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002276 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002277 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002278 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002279 PNG_WEIGHT_SHIFT;
2280 }
2281 }
2282
2283 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_AVG]) >>
2284 PNG_COST_SHIFT;
2285 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_AVG]) >>
2286 PNG_COST_SHIFT;
2287
2288 if (sumhi > PNG_HIMASK)
2289 sum = PNG_MAXSUM;
2290 else
2291 sum = (sumhi << PNG_HISHIFT) + sumlo;
2292 }
2293#endif
2294
Guy Schalnate5a37791996-06-05 15:50:50 -05002295 if (sum < mins)
2296 {
2297 mins = sum;
2298 best_row = png_ptr->avg_row;
2299 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002300 }
2301
Andreas Dilger47a0c421997-05-16 02:46:07 -05002302 /* Paeth filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002303 if (filter_to_do == PNG_FILTER_PAETH)
2304 {
2305 png_bytep rp, dp, pp, cp, lp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002306 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002307 for (i = 0, rp = row_buf + 1, dp = png_ptr->paeth_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002308 pp = prev_row + 1; i < bpp; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002309 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002310 *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002311 }
2312
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002313 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002314 {
2315 int a, b, c, pa, pb, pc, p;
2316
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002317 b = *pp++;
2318 c = *cp++;
2319 a = *lp++;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002320
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002321 p = b - c;
2322 pc = a - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002323
2324#ifdef PNG_USE_ABS
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002325 pa = abs(p);
2326 pb = abs(pc);
2327 pc = abs(p + pc);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002328#else
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002329 pa = p < 0 ? -p : p;
2330 pb = pc < 0 ? -pc : pc;
2331 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002332#endif
2333
2334 p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
2335
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002336 *dp++ = (png_byte)(((int)*rp++ - p) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002337 }
2338 best_row = png_ptr->paeth_row;
2339 }
2340
2341 else if (filter_to_do & PNG_FILTER_PAETH)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002342 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002343 png_bytep rp, dp, pp, cp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002344 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002345 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002346 int v;
2347
2348#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2349 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2350 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002351 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002352 png_uint_32 lmhi, lmlo;
2353 lmlo = lmins & PNG_LOMASK;
2354 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2355
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002356 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002357 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002358 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_PAETH)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002359 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002360 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002361 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002362 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002363 PNG_WEIGHT_SHIFT;
2364 }
2365 }
2366
2367 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2368 PNG_COST_SHIFT;
2369 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2370 PNG_COST_SHIFT;
2371
2372 if (lmhi > PNG_HIMASK)
2373 lmins = PNG_MAXSUM;
2374 else
2375 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2376 }
2377#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002378
2379 for (i = 0, rp = row_buf + 1, dp = png_ptr->paeth_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002380 pp = prev_row + 1; i < bpp; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002381 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002382 v = *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002383
2384 sum += (v < 128) ? v : 256 - v;
2385 }
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002386
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002387 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002388 {
2389 int a, b, c, pa, pb, pc, p;
2390
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002391 b = *pp++;
2392 c = *cp++;
2393 a = *lp++;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002394
2395#ifndef PNG_SLOW_PAETH
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002396 p = b - c;
2397 pc = a - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002398#ifdef PNG_USE_ABS
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002399 pa = abs(p);
2400 pb = abs(pc);
2401 pc = abs(p + pc);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002402#else
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002403 pa = p < 0 ? -p : p;
2404 pb = pc < 0 ? -pc : pc;
2405 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002406#endif
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002407 p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
2408#else /* PNG_SLOW_PAETH */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002409 p = a + b - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002410 pa = abs(p - a);
2411 pb = abs(p - b);
2412 pc = abs(p - c);
Guy Schalnate5a37791996-06-05 15:50:50 -05002413 if (pa <= pb && pa <= pc)
2414 p = a;
2415 else if (pb <= pc)
2416 p = b;
2417 else
2418 p = c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002419#endif /* PNG_SLOW_PAETH */
Guy Schalnate5a37791996-06-05 15:50:50 -05002420
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002421 v = *dp++ = (png_byte)(((int)*rp++ - p) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002422
2423 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002424
2425 if (sum > lmins) /* We are already worse, don't continue. */
2426 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002427 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002428
2429#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2430 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2431 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002432 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002433 png_uint_32 sumhi, sumlo;
2434 sumlo = sum & PNG_LOMASK;
2435 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2436
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002437 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002438 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002439 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_PAETH)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002440 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002441 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002442 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002443 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002444 PNG_WEIGHT_SHIFT;
2445 }
2446 }
2447
2448 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2449 PNG_COST_SHIFT;
2450 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2451 PNG_COST_SHIFT;
2452
2453 if (sumhi > PNG_HIMASK)
2454 sum = PNG_MAXSUM;
2455 else
2456 sum = (sumhi << PNG_HISHIFT) + sumlo;
2457 }
2458#endif
2459
Guy Schalnate5a37791996-06-05 15:50:50 -05002460 if (sum < mins)
2461 {
2462 best_row = png_ptr->paeth_row;
2463 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002464 }
2465
Andreas Dilger47a0c421997-05-16 02:46:07 -05002466 /* Do the actual writing of the filtered row data from the chosen filter. */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002467
Guy Schalnate5a37791996-06-05 15:50:50 -05002468 png_write_filtered_row(png_ptr, best_row);
Andreas Dilger47a0c421997-05-16 02:46:07 -05002469
2470#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2471 /* Save the type of filter we picked this time for future calculations */
2472 if (png_ptr->num_prev_filters > 0)
2473 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002474 int j;
2475 for (j = 1; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002476 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002477 png_ptr->prev_filters[j] = png_ptr->prev_filters[j - 1];
Andreas Dilger47a0c421997-05-16 02:46:07 -05002478 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002479 png_ptr->prev_filters[j] = best_row[0];
Andreas Dilger47a0c421997-05-16 02:46:07 -05002480 }
2481#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002482}
2483
2484
Andreas Dilger47a0c421997-05-16 02:46:07 -05002485/* Do the actual writing of a previously filtered row. */
Guy Schalnate5a37791996-06-05 15:50:50 -05002486void
2487png_write_filtered_row(png_structp png_ptr, png_bytep filtered_row)
2488{
Andreas Dilger47a0c421997-05-16 02:46:07 -05002489 png_debug(1, "in png_write_filtered_row\n");
2490 png_debug1(2, "filter = %d\n", filtered_row[0]);
Guy Schalnate5a37791996-06-05 15:50:50 -05002491 /* set up the zlib input buffer */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002492 png_ptr->zstream.next_in = filtered_row;
2493 png_ptr->zstream.avail_in = (uInt)png_ptr->row_info.rowbytes + 1;
Guy Schalnate5a37791996-06-05 15:50:50 -05002494 /* repeat until we have compressed all the data */
2495 do
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002496 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002497 int ret; /* return of zlib */
Guy Schalnat0d580581995-07-20 02:43:20 -05002498
Guy Schalnate5a37791996-06-05 15:50:50 -05002499 /* compress the data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002500 ret = deflate(&png_ptr->zstream, Z_NO_FLUSH);
Guy Schalnate5a37791996-06-05 15:50:50 -05002501 /* check for compression errors */
2502 if (ret != Z_OK)
2503 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05002504 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002505 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnate5a37791996-06-05 15:50:50 -05002506 else
2507 png_error(png_ptr, "zlib error");
2508 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002509
Guy Schalnate5a37791996-06-05 15:50:50 -05002510 /* see if it is time to write another IDAT */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002511 if (!(png_ptr->zstream.avail_out))
Guy Schalnate5a37791996-06-05 15:50:50 -05002512 {
2513 /* write the IDAT and reset the zlib output buffer */
2514 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002515 png_ptr->zstream.next_out = png_ptr->zbuf;
2516 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnate5a37791996-06-05 15:50:50 -05002517 }
2518 /* repeat until all data has been compressed */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002519 } while (png_ptr->zstream.avail_in);
Guy Schalnate5a37791996-06-05 15:50:50 -05002520
Guy Schalnatc21f90c1996-06-17 16:24:45 -05002521 /* swap the current and previous rows */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002522 if (png_ptr->prev_row != NULL)
Guy Schalnatc21f90c1996-06-17 16:24:45 -05002523 {
2524 png_bytep tptr;
2525
2526 tptr = png_ptr->prev_row;
2527 png_ptr->prev_row = png_ptr->row_buf;
2528 png_ptr->row_buf = tptr;
2529 }
2530
Guy Schalnate5a37791996-06-05 15:50:50 -05002531 /* finish row - updates counters and flushes zlib if last row */
2532 png_write_finish_row(png_ptr);
2533
2534#if defined(PNG_WRITE_FLUSH_SUPPORTED)
2535 png_ptr->flush_rows++;
2536
2537 if (png_ptr->flush_dist > 0 &&
2538 png_ptr->flush_rows >= png_ptr->flush_dist)
Guy Schalnat0d580581995-07-20 02:43:20 -05002539 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002540 png_write_flush(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002541 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002542#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002543}