blob: 00f856c35d1e161535c75b84ad423189a4db1812 [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-Pehrson19095602001-03-14 07:08:39 -06004 * libpng 1.0.10beta1 - March 14, 2001
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06005 * For conditions of distribution and use, see copyright notice in png.h
Glenn Randers-Pehrsonbe9de0f2001-01-22 08:52:16 -06006 * Copyright (c) 1998-2001 Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05007 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
8 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06009 */
Andreas Dilger47a0c421997-05-16 02:46:07 -050010
Guy Schalnat0d580581995-07-20 02:43:20 -050011#define PNG_INTERNAL
12#include "png.h"
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -060013#ifdef PNG_WRITE_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -050014
Andreas Dilger47a0c421997-05-16 02:46:07 -050015/* Place a 32-bit number into a buffer in PNG byte order. We work
16 * with unsigned numbers for convenience, although one supported
17 * ancillary chunk uses signed (two's complement) numbers.
18 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050019void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -060020png_save_uint_32(png_bytep buf, png_uint_32 i)
Guy Schalnat0d580581995-07-20 02:43:20 -050021{
22 buf[0] = (png_byte)((i >> 24) & 0xff);
23 buf[1] = (png_byte)((i >> 16) & 0xff);
24 buf[2] = (png_byte)((i >> 8) & 0xff);
25 buf[3] = (png_byte)(i & 0xff);
26}
27
Andreas Dilger47a0c421997-05-16 02:46:07 -050028#if defined(PNG_WRITE_pCAL_SUPPORTED)
29/* The png_save_int_32 function assumes integers are stored in two's
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060030 * complement format. If this isn't the case, then this routine needs to
31 * be modified to write data in two's complement format.
32 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050033void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -050034png_save_int_32(png_bytep buf, png_int_32 i)
35{
36 buf[0] = (png_byte)((i >> 24) & 0xff);
37 buf[1] = (png_byte)((i >> 16) & 0xff);
38 buf[2] = (png_byte)((i >> 8) & 0xff);
39 buf[3] = (png_byte)(i & 0xff);
40}
41#endif
42
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060043/* Place a 16-bit number into a buffer in PNG byte order.
44 * The parameter is declared unsigned int, not png_uint_16,
45 * just to avoid potential problems on pre-ANSI C compilers.
46 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050047void /* PRIVATE */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060048png_save_uint_16(png_bytep buf, unsigned int i)
Guy Schalnat0d580581995-07-20 02:43:20 -050049{
50 buf[0] = (png_byte)((i >> 8) & 0xff);
51 buf[1] = (png_byte)(i & 0xff);
52}
53
Andreas Dilger47a0c421997-05-16 02:46:07 -050054/* Write a PNG chunk all at once. The type is an array of ASCII characters
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060055 * representing the chunk name. The array must be at least 4 bytes in
56 * length, and does not need to be null terminated. To be safe, pass the
57 * pre-defined chunk names here, and if you need a new one, define it
58 * where the others are defined. The length is the length of the data.
59 * All the data must be present. If that is not possible, use the
60 * png_write_chunk_start(), png_write_chunk_data(), and png_write_chunk_end()
61 * functions instead.
62 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050063void PNGAPI
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060064png_write_chunk(png_structp png_ptr, png_bytep chunk_name,
Andreas Dilger47a0c421997-05-16 02:46:07 -050065 png_bytep data, png_size_t length)
Guy Schalnat0d580581995-07-20 02:43:20 -050066{
Andreas Dilger47a0c421997-05-16 02:46:07 -050067 png_write_chunk_start(png_ptr, chunk_name, (png_uint_32)length);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060068 png_write_chunk_data(png_ptr, data, length);
69 png_write_chunk_end(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -050070}
71
Andreas Dilger47a0c421997-05-16 02:46:07 -050072/* Write the start of a PNG chunk. The type is the chunk type.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060073 * The total_length is the sum of the lengths of all the data you will be
74 * passing in png_write_chunk_data().
75 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050076void PNGAPI
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060077png_write_chunk_start(png_structp png_ptr, png_bytep chunk_name,
78 png_uint_32 length)
Guy Schalnat0d580581995-07-20 02:43:20 -050079{
Andreas Dilger47a0c421997-05-16 02:46:07 -050080 png_byte buf[4];
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -050081 png_debug2(0, "Writing %s chunk (%lu bytes)\n", chunk_name, length);
Andreas Dilger47a0c421997-05-16 02:46:07 -050082
Guy Schalnat0d580581995-07-20 02:43:20 -050083 /* write the length */
Andreas Dilger47a0c421997-05-16 02:46:07 -050084 png_save_uint_32(buf, length);
85 png_write_data(png_ptr, buf, (png_size_t)4);
86
Guy Schalnat0d580581995-07-20 02:43:20 -050087 /* write the chunk name */
Andreas Dilger47a0c421997-05-16 02:46:07 -050088 png_write_data(png_ptr, chunk_name, (png_size_t)4);
Guy Schalnat0d580581995-07-20 02:43:20 -050089 /* reset the crc and run it over the chunk name */
90 png_reset_crc(png_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -050091 png_calculate_crc(png_ptr, chunk_name, (png_size_t)4);
Guy Schalnat0d580581995-07-20 02:43:20 -050092}
93
Andreas Dilger47a0c421997-05-16 02:46:07 -050094/* Write the data of a PNG chunk started with png_write_chunk_start().
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060095 * Note that multiple calls to this function are allowed, and that the
96 * sum of the lengths from these calls *must* add up to the total_length
97 * given to png_write_chunk_start().
98 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050099void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500100png_write_chunk_data(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnat0d580581995-07-20 02:43:20 -0500101{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500102 /* write the data, and run the CRC over it */
103 if (data != NULL && length > 0)
Guy Schalnat0d580581995-07-20 02:43:20 -0500104 {
105 png_calculate_crc(png_ptr, data, length);
Guy Schalnat6d764711995-12-19 03:22:19 -0600106 png_write_data(png_ptr, data, length);
Guy Schalnat0d580581995-07-20 02:43:20 -0500107 }
108}
109
Andreas Dilger47a0c421997-05-16 02:46:07 -0500110/* Finish a chunk started with png_write_chunk_start(). */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500111void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600112png_write_chunk_end(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500113{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500114 png_byte buf[4];
115
Guy Schalnat0d580581995-07-20 02:43:20 -0500116 /* write the crc */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500117 png_save_uint_32(buf, png_ptr->crc);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500118
119 png_write_data(png_ptr, buf, (png_size_t)4);
Guy Schalnat0d580581995-07-20 02:43:20 -0500120}
121
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600122/* Simple function to write the signature. If we have already written
123 * the magic bytes of the signature, or more likely, the PNG stream is
124 * being embedded into another stream and doesn't need its own signature,
125 * we should call png_set_sig_bytes() to tell libpng how many of the
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600126 * bytes have already been written.
127 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500128void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600129png_write_sig(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500130{
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600131 png_byte png_signature[8] = {137, 80, 78, 71, 13, 10, 26, 10};
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600132 /* write the rest of the 8 byte signature */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600133 png_write_data(png_ptr, &png_signature[png_ptr->sig_bytes],
Andreas Dilger47a0c421997-05-16 02:46:07 -0500134 (png_size_t)8 - png_ptr->sig_bytes);
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -0600135 if(png_ptr->sig_bytes < 3)
136 png_ptr->mode |= PNG_HAVE_PNG_SIGNATURE;
Guy Schalnat0d580581995-07-20 02:43:20 -0500137}
138
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600139#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_iCCP_SUPPORTED)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600140/*
141 * This pair of functions encapsulates the operation of (a) compressing a
142 * text string, and (b) issuing it later as a series of chunk data writes.
143 * The compression_state structure is shared context for these functions
144 * set up by the caller in order to make the whole mess thread-safe.
145 */
146
147typedef struct
148{
149 char *input; /* the uncompressed input data */
150 int input_len; /* its length */
151 int num_output_ptr; /* number of output pointers used */
152 int max_output_ptr; /* size of output_ptr */
153 png_charpp output_ptr; /* array of pointers to output */
154} compression_state;
155
156/* compress given text into storage in the png_ptr structure */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500157static int /* PRIVATE */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600158png_text_compress(png_structp png_ptr,
159 png_charp text, png_size_t text_len, int compression,
160 compression_state *comp)
161{
162 int ret;
163
164 comp->num_output_ptr = comp->max_output_ptr = 0;
165 comp->output_ptr = NULL;
166 comp->input = NULL;
167
168 /* we may just want to pass the text right through */
169 if (compression == PNG_TEXT_COMPRESSION_NONE)
170 {
171 comp->input = text;
172 comp->input_len = text_len;
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500173 return((int)text_len);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600174 }
175
176 if (compression >= PNG_TEXT_COMPRESSION_LAST)
177 {
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500178#if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600179 char msg[50];
180 sprintf(msg, "Unknown compression type %d", compression);
181 png_warning(png_ptr, msg);
182#else
183 png_warning(png_ptr, "Unknown compression type");
184#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600185 }
186
187 /* We can't write the chunk until we find out how much data we have,
188 * which means we need to run the compressor first and save the
189 * output. This shouldn't be a problem, as the vast majority of
190 * comments should be reasonable, but we will set up an array of
191 * malloc'd pointers to be sure.
192 *
193 * If we knew the application was well behaved, we could simplify this
194 * greatly by assuming we can always malloc an output buffer large
195 * enough to hold the compressed text ((1001 * text_len / 1000) + 12)
196 * and malloc this directly. The only time this would be a bad idea is
197 * if we can't malloc more than 64K and we have 64K of random input
198 * data, or if the input string is incredibly large (although this
199 * wouldn't cause a failure, just a slowdown due to swapping).
200 */
201
202 /* set up the compression buffers */
203 png_ptr->zstream.avail_in = (uInt)text_len;
204 png_ptr->zstream.next_in = (Bytef *)text;
205 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
206 png_ptr->zstream.next_out = (Bytef *)png_ptr->zbuf;
207
208 /* this is the same compression loop as in png_write_row() */
209 do
210 {
211 /* compress the data */
212 ret = deflate(&png_ptr->zstream, Z_NO_FLUSH);
213 if (ret != Z_OK)
214 {
215 /* error */
216 if (png_ptr->zstream.msg != NULL)
217 png_error(png_ptr, png_ptr->zstream.msg);
218 else
219 png_error(png_ptr, "zlib error");
220 }
221 /* check to see if we need more room */
222 if (!png_ptr->zstream.avail_out && png_ptr->zstream.avail_in)
223 {
224 /* make sure the output array has room */
225 if (comp->num_output_ptr >= comp->max_output_ptr)
226 {
227 int old_max;
228
229 old_max = comp->max_output_ptr;
230 comp->max_output_ptr = comp->num_output_ptr + 4;
231 if (comp->output_ptr != NULL)
232 {
233 png_charpp old_ptr;
234
235 old_ptr = comp->output_ptr;
236 comp->output_ptr = (png_charpp)png_malloc(png_ptr,
237 (png_uint_32)(comp->max_output_ptr * sizeof (png_charpp)));
238 png_memcpy(comp->output_ptr, old_ptr,
239 old_max * sizeof (png_charp));
240 png_free(png_ptr, old_ptr);
241 }
242 else
243 comp->output_ptr = (png_charpp)png_malloc(png_ptr,
244 (png_uint_32)(comp->max_output_ptr * sizeof (png_charp)));
245 }
246
247 /* save the data */
248 comp->output_ptr[comp->num_output_ptr] = (png_charp)png_malloc(png_ptr,
249 (png_uint_32)png_ptr->zbuf_size);
250 png_memcpy(comp->output_ptr[comp->num_output_ptr], png_ptr->zbuf,
251 png_ptr->zbuf_size);
252 comp->num_output_ptr++;
253
254 /* and reset the buffer */
255 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
256 png_ptr->zstream.next_out = png_ptr->zbuf;
257 }
258 /* continue until we don't have any more to compress */
259 } while (png_ptr->zstream.avail_in);
260
261 /* finish the compression */
262 do
263 {
264 /* tell zlib we are finished */
265 ret = deflate(&png_ptr->zstream, Z_FINISH);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500266
267 if (ret == Z_OK)
268 {
269 /* check to see if we need more room */
270 if (!(png_ptr->zstream.avail_out))
271 {
272 /* check to make sure our output array has room */
273 if (comp->num_output_ptr >= comp->max_output_ptr)
274 {
275 int old_max;
276
277 old_max = comp->max_output_ptr;
278 comp->max_output_ptr = comp->num_output_ptr + 4;
279 if (comp->output_ptr != NULL)
280 {
281 png_charpp old_ptr;
282
283 old_ptr = comp->output_ptr;
284 /* This could be optimized to realloc() */
285 comp->output_ptr = (png_charpp)png_malloc(png_ptr,
286 (png_uint_32)(comp->max_output_ptr * sizeof (png_charpp)));
287 png_memcpy(comp->output_ptr, old_ptr,
288 old_max * sizeof (png_charp));
289 png_free(png_ptr, old_ptr);
290 }
291 else
292 comp->output_ptr = (png_charpp)png_malloc(png_ptr,
293 (png_uint_32)(comp->max_output_ptr * sizeof (png_charp)));
294 }
295
296 /* save off the data */
297 comp->output_ptr[comp->num_output_ptr] =
298 (png_charp)png_malloc(png_ptr, (png_uint_32)png_ptr->zbuf_size);
299 png_memcpy(comp->output_ptr[comp->num_output_ptr], png_ptr->zbuf,
300 png_ptr->zbuf_size);
301 comp->num_output_ptr++;
302
303 /* and reset the buffer pointers */
304 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
305 png_ptr->zstream.next_out = png_ptr->zbuf;
306 }
307 }
308 else if (ret != Z_STREAM_END)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600309 {
310 /* we got an error */
311 if (png_ptr->zstream.msg != NULL)
312 png_error(png_ptr, png_ptr->zstream.msg);
313 else
314 png_error(png_ptr, "zlib error");
315 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600316 } while (ret != Z_STREAM_END);
317
318 /* text length is number of buffers plus last buffer */
319 text_len = png_ptr->zbuf_size * comp->num_output_ptr;
320 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size)
321 text_len += png_ptr->zbuf_size - (png_size_t)png_ptr->zstream.avail_out;
322
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500323 return((int)text_len);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600324}
325
326/* ship the compressed text out via chunk writes */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500327static void /* PRIVATE */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600328png_write_compressed_data_out(png_structp png_ptr, compression_state *comp)
329{
330 int i;
331
332 /* handle the no-compression case */
333 if (comp->input)
334 {
335 png_write_chunk_data(png_ptr, (png_bytep)comp->input, comp->input_len);
336 return;
337 }
338
339 /* write saved output buffers, if any */
340 for (i = 0; i < comp->num_output_ptr; i++)
341 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600342 png_write_chunk_data(png_ptr,(png_bytep)comp->output_ptr[i],
343 png_ptr->zbuf_size);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600344 png_free(png_ptr, comp->output_ptr[i]);
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -0500345 comp->output_ptr[i]=NULL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600346 }
347 if (comp->max_output_ptr != 0)
348 png_free(png_ptr, comp->output_ptr);
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -0500349 comp->output_ptr=NULL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600350 /* write anything left in zbuf */
351 if (png_ptr->zstream.avail_out < (png_uint_32)png_ptr->zbuf_size)
352 png_write_chunk_data(png_ptr, png_ptr->zbuf,
353 png_ptr->zbuf_size - png_ptr->zstream.avail_out);
354
355 /* reset zlib for another zTXt/iTXt or the image data */
356 deflateReset(&png_ptr->zstream);
357
358}
359#endif
360
Guy Schalnat0d580581995-07-20 02:43:20 -0500361/* Write the IHDR chunk, and update the png_struct with the necessary
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600362 * information. Note that the rest of this code depends upon this
363 * information being correct.
364 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500365void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600366png_write_IHDR(png_structp png_ptr, png_uint_32 width, png_uint_32 height,
Guy Schalnat0d580581995-07-20 02:43:20 -0500367 int bit_depth, int color_type, int compression_type, int filter_type,
368 int interlace_type)
369{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600370#ifdef PNG_USE_LOCAL_ARRAYS
371 PNG_IHDR;
372#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500373 png_byte buf[13]; /* buffer to store the IHDR info */
374
Andreas Dilger47a0c421997-05-16 02:46:07 -0500375 png_debug(1, "in png_write_IHDR\n");
Guy Schalnate5a37791996-06-05 15:50:50 -0500376 /* Check that we have valid input data from the application info */
377 switch (color_type)
378 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500379 case PNG_COLOR_TYPE_GRAY:
Guy Schalnate5a37791996-06-05 15:50:50 -0500380 switch (bit_depth)
381 {
382 case 1:
383 case 2:
384 case 4:
385 case 8:
386 case 16: png_ptr->channels = 1; break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500387 default: png_error(png_ptr,"Invalid bit depth for grayscale image");
Guy Schalnate5a37791996-06-05 15:50:50 -0500388 }
389 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500390 case PNG_COLOR_TYPE_RGB:
Guy Schalnate5a37791996-06-05 15:50:50 -0500391 if (bit_depth != 8 && bit_depth != 16)
392 png_error(png_ptr, "Invalid bit depth for RGB image");
393 png_ptr->channels = 3;
394 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500395 case PNG_COLOR_TYPE_PALETTE:
Guy Schalnate5a37791996-06-05 15:50:50 -0500396 switch (bit_depth)
397 {
398 case 1:
399 case 2:
400 case 4:
401 case 8: png_ptr->channels = 1; break;
402 default: png_error(png_ptr, "Invalid bit depth for paletted image");
403 }
404 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500405 case PNG_COLOR_TYPE_GRAY_ALPHA:
Guy Schalnate5a37791996-06-05 15:50:50 -0500406 if (bit_depth != 8 && bit_depth != 16)
407 png_error(png_ptr, "Invalid bit depth for grayscale+alpha image");
408 png_ptr->channels = 2;
409 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500410 case PNG_COLOR_TYPE_RGB_ALPHA:
Guy Schalnate5a37791996-06-05 15:50:50 -0500411 if (bit_depth != 8 && bit_depth != 16)
412 png_error(png_ptr, "Invalid bit depth for RGBA image");
413 png_ptr->channels = 4;
414 break;
415 default:
416 png_error(png_ptr, "Invalid image color type specified");
417 }
418
Andreas Dilger47a0c421997-05-16 02:46:07 -0500419 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
Guy Schalnate5a37791996-06-05 15:50:50 -0500420 {
421 png_warning(png_ptr, "Invalid compression type specified");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500422 compression_type = PNG_COMPRESSION_TYPE_BASE;
Guy Schalnate5a37791996-06-05 15:50:50 -0500423 }
424
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -0600425 /* Write filter_method 64 (intrapixel differencing) only if
426 * 1. Libpng was compiled with PNG_MNG_FEATURES_SUPPORTED and
427 * 2. Libpng did not write a PNG signature (this filter_method is only
428 * used in PNG datastreams that are embedded in MNG datastreams) and
429 * 3. The application called png_permit_mng_features with a mask that
430 * included PNG_FLAG_MNG_FILTER_64 and
431 * 4. The filter_method is 64 and
432 * 5. The color_type is RGB or RGBA
433 */
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -0600434 if (
435#if defined(PNG_MNG_FEATURES_SUPPORTED)
436 !((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
Glenn Randers-Pehrson408b4212000-12-18 09:33:57 -0600437 ((png_ptr->mode&PNG_HAVE_PNG_SIGNATURE) == 0) &&
438 (color_type == PNG_COLOR_TYPE_RGB ||
439 color_type == PNG_COLOR_TYPE_RGB_ALPHA) &&
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -0600440 (filter_type == PNG_INTRAPIXEL_DIFFERENCING)) &&
441#endif
442 filter_type != PNG_FILTER_TYPE_BASE)
Guy Schalnate5a37791996-06-05 15:50:50 -0500443 {
444 png_warning(png_ptr, "Invalid filter type specified");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500445 filter_type = PNG_FILTER_TYPE_BASE;
Guy Schalnate5a37791996-06-05 15:50:50 -0500446 }
447
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600448#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500449 if (interlace_type != PNG_INTERLACE_NONE &&
450 interlace_type != PNG_INTERLACE_ADAM7)
Guy Schalnate5a37791996-06-05 15:50:50 -0500451 {
452 png_warning(png_ptr, "Invalid interlace type specified");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500453 interlace_type = PNG_INTERLACE_ADAM7;
Guy Schalnate5a37791996-06-05 15:50:50 -0500454 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600455#else
456 interlace_type=PNG_INTERLACE_NONE;
457#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500458
459 /* save off the relevent information */
460 png_ptr->bit_depth = (png_byte)bit_depth;
461 png_ptr->color_type = (png_byte)color_type;
462 png_ptr->interlaced = (png_byte)interlace_type;
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -0600463 png_ptr->filter_type = (png_byte)filter_type;
Guy Schalnate5a37791996-06-05 15:50:50 -0500464 png_ptr->width = width;
465 png_ptr->height = height;
466
467 png_ptr->pixel_depth = (png_byte)(bit_depth * png_ptr->channels);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500468 png_ptr->rowbytes = ((width * (png_size_t)png_ptr->pixel_depth + 7) >> 3);
Guy Schalnate5a37791996-06-05 15:50:50 -0500469 /* set the usr info, so any transformations can modify it */
470 png_ptr->usr_width = png_ptr->width;
471 png_ptr->usr_bit_depth = png_ptr->bit_depth;
472 png_ptr->usr_channels = png_ptr->channels;
473
Guy Schalnat0d580581995-07-20 02:43:20 -0500474 /* pack the header information into the buffer */
475 png_save_uint_32(buf, width);
476 png_save_uint_32(buf + 4, height);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600477 buf[8] = (png_byte)bit_depth;
478 buf[9] = (png_byte)color_type;
479 buf[10] = (png_byte)compression_type;
480 buf[11] = (png_byte)filter_type;
481 buf[12] = (png_byte)interlace_type;
Guy Schalnat0d580581995-07-20 02:43:20 -0500482
483 /* write the chunk */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600484 png_write_chunk(png_ptr, (png_bytep)png_IHDR, buf, (png_size_t)13);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500485
Andreas Dilger47a0c421997-05-16 02:46:07 -0500486 /* initialize zlib with PNG info */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600487 png_ptr->zstream.zalloc = png_zalloc;
488 png_ptr->zstream.zfree = png_zfree;
489 png_ptr->zstream.opaque = (voidpf)png_ptr;
Guy Schalnate5a37791996-06-05 15:50:50 -0500490 if (!(png_ptr->do_filter))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500491 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500492 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE ||
493 png_ptr->bit_depth < 8)
Guy Schalnate5a37791996-06-05 15:50:50 -0500494 png_ptr->do_filter = PNG_FILTER_NONE;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500495 else
Guy Schalnate5a37791996-06-05 15:50:50 -0500496 png_ptr->do_filter = PNG_ALL_FILTERS;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500497 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500498 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_STRATEGY))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500499 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500500 if (png_ptr->do_filter != PNG_FILTER_NONE)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500501 png_ptr->zlib_strategy = Z_FILTERED;
502 else
503 png_ptr->zlib_strategy = Z_DEFAULT_STRATEGY;
504 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500505 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_LEVEL))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500506 png_ptr->zlib_level = Z_DEFAULT_COMPRESSION;
Guy Schalnate5a37791996-06-05 15:50:50 -0500507 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500508 png_ptr->zlib_mem_level = 8;
Guy Schalnate5a37791996-06-05 15:50:50 -0500509 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500510 png_ptr->zlib_window_bits = 15;
Guy Schalnate5a37791996-06-05 15:50:50 -0500511 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_METHOD))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500512 png_ptr->zlib_method = 8;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600513 deflateInit2(&png_ptr->zstream, png_ptr->zlib_level,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500514 png_ptr->zlib_method, png_ptr->zlib_window_bits,
515 png_ptr->zlib_mem_level, png_ptr->zlib_strategy);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600516 png_ptr->zstream.next_out = png_ptr->zbuf;
517 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500518
Guy Schalnate5a37791996-06-05 15:50:50 -0500519 png_ptr->mode = PNG_HAVE_IHDR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500520}
521
522/* write the palette. We are careful not to trust png_color to be in the
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -0500523 * correct order for PNG, so people can redefine it to any convenient
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600524 * structure.
525 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500526void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500527png_write_PLTE(png_structp png_ptr, png_colorp palette, png_uint_32 num_pal)
Guy Schalnat0d580581995-07-20 02:43:20 -0500528{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600529#ifdef PNG_USE_LOCAL_ARRAYS
530 PNG_PLTE;
531#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500532 png_uint_32 i;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600533 png_colorp pal_ptr;
Guy Schalnat0d580581995-07-20 02:43:20 -0500534 png_byte buf[3];
535
Andreas Dilger47a0c421997-05-16 02:46:07 -0500536 png_debug(1, "in png_write_PLTE\n");
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500537 if ((
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -0600538#if defined(PNG_MNG_FEATURES_SUPPORTED) || \
539 defined (PNG_WRITE_EMPTY_PLTE_SUPPORTED)
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -0600540 !(png_ptr->mng_features_permitted & PNG_FLAG_MNG_EMPTY_PLTE) &&
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500541#endif
542 num_pal == 0) || num_pal > 256)
543 {
544 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
545 {
546 png_error(png_ptr, "Invalid number of colors in palette");
547 }
548 else
549 {
550 png_warning(png_ptr, "Invalid number of colors in palette");
551 return;
552 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500553 }
554
Andreas Dilger47a0c421997-05-16 02:46:07 -0500555 png_ptr->num_palette = (png_uint_16)num_pal;
556 png_debug1(3, "num_palette = %d\n", png_ptr->num_palette);
Guy Schalnate5a37791996-06-05 15:50:50 -0500557
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600558 png_write_chunk_start(png_ptr, (png_bytep)png_PLTE, num_pal * 3);
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500559#ifndef PNG_NO_POINTER_INDEXING
Andreas Dilger47a0c421997-05-16 02:46:07 -0500560 for (i = 0, pal_ptr = palette; i < num_pal; i++, pal_ptr++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500561 {
562 buf[0] = pal_ptr->red;
563 buf[1] = pal_ptr->green;
564 buf[2] = pal_ptr->blue;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500565 png_write_chunk_data(png_ptr, buf, (png_size_t)3);
Guy Schalnat0d580581995-07-20 02:43:20 -0500566 }
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500567#else
568 /* This is a little slower but some buggy compilers need to do this instead */
569 pal_ptr=palette;
570 for (i = 0; i < num_pal; i++)
571 {
572 buf[0] = pal_ptr[i].red;
573 buf[1] = pal_ptr[i].green;
574 buf[2] = pal_ptr[i].blue;
575 png_write_chunk_data(png_ptr, buf, (png_size_t)3);
576 }
577#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500578 png_write_chunk_end(png_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500579 png_ptr->mode |= PNG_HAVE_PLTE;
Guy Schalnat0d580581995-07-20 02:43:20 -0500580}
581
582/* write an IDAT chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500583void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500584png_write_IDAT(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnat0d580581995-07-20 02:43:20 -0500585{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600586#ifdef PNG_USE_LOCAL_ARRAYS
587 PNG_IDAT;
588#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500589 png_debug(1, "in png_write_IDAT\n");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600590 png_write_chunk(png_ptr, (png_bytep)png_IDAT, data, length);
Guy Schalnate5a37791996-06-05 15:50:50 -0500591 png_ptr->mode |= PNG_HAVE_IDAT;
Guy Schalnat0d580581995-07-20 02:43:20 -0500592}
593
594/* write an IEND chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500595void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600596png_write_IEND(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500597{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600598#ifdef PNG_USE_LOCAL_ARRAYS
599 PNG_IEND;
600#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500601 png_debug(1, "in png_write_IEND\n");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600602 png_write_chunk(png_ptr, (png_bytep)png_IEND, NULL, (png_size_t)0);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600603 png_ptr->mode |= PNG_HAVE_IEND;
Guy Schalnat0d580581995-07-20 02:43:20 -0500604}
605
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500606#if defined(PNG_WRITE_gAMA_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500607/* write a gAMA chunk */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600608#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500609void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500610png_write_gAMA(png_structp png_ptr, double file_gamma)
Guy Schalnat0d580581995-07-20 02:43:20 -0500611{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600612#ifdef PNG_USE_LOCAL_ARRAYS
613 PNG_gAMA;
614#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500615 png_uint_32 igamma;
616 png_byte buf[4];
617
Andreas Dilger47a0c421997-05-16 02:46:07 -0500618 png_debug(1, "in png_write_gAMA\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600619 /* file_gamma is saved in 1/100,000ths */
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600620 igamma = (png_uint_32)(file_gamma * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500621 png_save_uint_32(buf, igamma);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600622 png_write_chunk(png_ptr, (png_bytep)png_gAMA, buf, (png_size_t)4);
Guy Schalnat0d580581995-07-20 02:43:20 -0500623}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500624#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600625#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500626void /* PRIVATE */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600627png_write_gAMA_fixed(png_structp png_ptr, png_fixed_point file_gamma)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600628{
629#ifdef PNG_USE_LOCAL_ARRAYS
630 PNG_gAMA;
631#endif
632 png_byte buf[4];
633
634 png_debug(1, "in png_write_gAMA\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600635 /* file_gamma is saved in 1/100,000ths */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600636 png_save_uint_32(buf, file_gamma);
637 png_write_chunk(png_ptr, (png_bytep)png_gAMA, buf, (png_size_t)4);
638}
639#endif
640#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500641
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600642#if defined(PNG_WRITE_sRGB_SUPPORTED)
643/* write a sRGB chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500644void /* PRIVATE */
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600645png_write_sRGB(png_structp png_ptr, int srgb_intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600646{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600647#ifdef PNG_USE_LOCAL_ARRAYS
648 PNG_sRGB;
649#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600650 png_byte buf[1];
651
652 png_debug(1, "in png_write_sRGB\n");
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600653 if(srgb_intent >= PNG_sRGB_INTENT_LAST)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600654 png_warning(png_ptr,
655 "Invalid sRGB rendering intent specified");
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600656 buf[0]=(png_byte)srgb_intent;
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600657 png_write_chunk(png_ptr, (png_bytep)png_sRGB, buf, (png_size_t)1);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600658}
659#endif
660
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600661#if defined(PNG_WRITE_iCCP_SUPPORTED)
662/* write an iCCP chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500663void /* PRIVATE */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600664png_write_iCCP(png_structp png_ptr, png_charp name, int compression_type,
665 png_charp profile, int profile_len)
666{
667#ifdef PNG_USE_LOCAL_ARRAYS
668 PNG_iCCP;
669#endif
670 png_size_t name_len;
671 png_charp new_name;
672 compression_state comp;
673
674 png_debug(1, "in png_write_iCCP\n");
675 if (name == NULL || (name_len = png_check_keyword(png_ptr, name,
676 &new_name)) == 0)
677 {
678 png_warning(png_ptr, "Empty keyword in iCCP chunk");
679 return;
680 }
681
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600682 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600683 png_warning(png_ptr, "Unknown compression type in iCCP chunk");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600684
Glenn Randers-Pehrson13944802000-06-24 07:42:42 -0500685 if (profile == NULL)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600686 profile_len = 0;
687
688 if (profile_len)
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500689 profile_len = png_text_compress(png_ptr, profile, (png_size_t)profile_len,
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600690 PNG_COMPRESSION_TYPE_BASE, &comp);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600691
692 /* make sure we include the NULL after the name and the compression type */
693 png_write_chunk_start(png_ptr, (png_bytep)png_iCCP,
694 (png_uint_32)name_len+profile_len+2);
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -0600695 new_name[name_len+1]=0x00;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600696 png_write_chunk_data(png_ptr, (png_bytep)new_name, name_len + 2);
697
698 if (profile_len)
699 png_write_compressed_data_out(png_ptr, &comp);
700
701 png_write_chunk_end(png_ptr);
702 png_free(png_ptr, new_name);
703}
704#endif
705
706#if defined(PNG_WRITE_sPLT_SUPPORTED)
707/* write a sPLT chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500708void /* PRIVATE */
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600709png_write_sPLT(png_structp png_ptr, png_sPLT_tp spalette)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600710{
711#ifdef PNG_USE_LOCAL_ARRAYS
712 PNG_sPLT;
713#endif
714 png_size_t name_len;
715 png_charp new_name;
716 png_byte entrybuf[10];
717 int entry_size = (spalette->depth == 8 ? 6 : 10);
718 int palette_size = entry_size * spalette->nentries;
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600719 png_sPLT_entryp ep;
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500720#ifdef PNG_NO_POINTER_INDEXING
721 int i;
722#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600723
724 png_debug(1, "in png_write_sPLT\n");
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600725 if (spalette->name == NULL || (name_len = png_check_keyword(png_ptr,
726 spalette->name, &new_name))==0)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600727 {
728 png_warning(png_ptr, "Empty keyword in sPLT chunk");
729 return;
730 }
731
732 /* make sure we include the NULL after the name */
733 png_write_chunk_start(png_ptr, (png_bytep) png_sPLT,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600734 (png_uint_32)(name_len + 2 + palette_size));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600735 png_write_chunk_data(png_ptr, (png_bytep)new_name, name_len + 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600736 png_write_chunk_data(png_ptr, (png_bytep)&spalette->depth, 1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600737
738 /* loop through each palette entry, writing appropriately */
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500739#ifndef PNG_NO_POINTER_INDEXING
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600740 for (ep = spalette->entries; ep<spalette->entries+spalette->nentries; ep++)
741 {
742 if (spalette->depth == 8)
743 {
744 entrybuf[0] = (png_byte)ep->red;
745 entrybuf[1] = (png_byte)ep->green;
746 entrybuf[2] = (png_byte)ep->blue;
747 entrybuf[3] = (png_byte)ep->alpha;
748 png_save_uint_16(entrybuf + 4, ep->frequency);
749 }
750 else
751 {
752 png_save_uint_16(entrybuf + 0, ep->red);
753 png_save_uint_16(entrybuf + 2, ep->green);
754 png_save_uint_16(entrybuf + 4, ep->blue);
755 png_save_uint_16(entrybuf + 6, ep->alpha);
756 png_save_uint_16(entrybuf + 8, ep->frequency);
757 }
758 png_write_chunk_data(png_ptr, entrybuf, entry_size);
759 }
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500760#else
761 ep=spalette->entries;
762 for (i=0; i>spalette->nentries; i++)
763 {
764 if (spalette->depth == 8)
765 {
766 entrybuf[0] = (png_byte)ep[i].red;
767 entrybuf[1] = (png_byte)ep[i].green;
768 entrybuf[2] = (png_byte)ep[i].blue;
769 entrybuf[3] = (png_byte)ep[i].alpha;
770 png_save_uint_16(entrybuf + 4, ep[i].frequency);
771 }
772 else
773 {
774 png_save_uint_16(entrybuf + 0, ep[i].red);
775 png_save_uint_16(entrybuf + 2, ep[i].green);
776 png_save_uint_16(entrybuf + 4, ep[i].blue);
777 png_save_uint_16(entrybuf + 6, ep[i].alpha);
778 png_save_uint_16(entrybuf + 8, ep[i].frequency);
779 }
780 png_write_chunk_data(png_ptr, entrybuf, entry_size);
781 }
782#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600783
784 png_write_chunk_end(png_ptr);
785 png_free(png_ptr, new_name);
786}
787#endif
788
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500789#if defined(PNG_WRITE_sBIT_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500790/* write the sBIT chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500791void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600792png_write_sBIT(png_structp png_ptr, png_color_8p sbit, int color_type)
Guy Schalnat0d580581995-07-20 02:43:20 -0500793{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600794#ifdef PNG_USE_LOCAL_ARRAYS
795 PNG_sBIT;
796#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500797 png_byte buf[4];
Andreas Dilger47a0c421997-05-16 02:46:07 -0500798 png_size_t size;
Guy Schalnat0d580581995-07-20 02:43:20 -0500799
Andreas Dilger47a0c421997-05-16 02:46:07 -0500800 png_debug(1, "in png_write_sBIT\n");
Guy Schalnat6d764711995-12-19 03:22:19 -0600801 /* make sure we don't depend upon the order of PNG_COLOR_8 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500802 if (color_type & PNG_COLOR_MASK_COLOR)
803 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600804 png_byte maxbits;
Guy Schalnate5a37791996-06-05 15:50:50 -0500805
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -0500806 maxbits = (png_byte)(color_type==PNG_COLOR_TYPE_PALETTE ? 8 :
807 png_ptr->usr_bit_depth);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600808 if (sbit->red == 0 || sbit->red > maxbits ||
809 sbit->green == 0 || sbit->green > maxbits ||
Guy Schalnate5a37791996-06-05 15:50:50 -0500810 sbit->blue == 0 || sbit->blue > maxbits)
811 {
812 png_warning(png_ptr, "Invalid sBIT depth specified");
813 return;
814 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500815 buf[0] = sbit->red;
816 buf[1] = sbit->green;
817 buf[2] = sbit->blue;
818 size = 3;
819 }
820 else
821 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500822 if (sbit->gray == 0 || sbit->gray > png_ptr->usr_bit_depth)
823 {
824 png_warning(png_ptr, "Invalid sBIT depth specified");
825 return;
826 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500827 buf[0] = sbit->gray;
828 size = 1;
829 }
830
831 if (color_type & PNG_COLOR_MASK_ALPHA)
832 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500833 if (sbit->alpha == 0 || sbit->alpha > png_ptr->usr_bit_depth)
834 {
835 png_warning(png_ptr, "Invalid sBIT depth specified");
836 return;
837 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500838 buf[size++] = sbit->alpha;
839 }
840
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600841 png_write_chunk(png_ptr, (png_bytep)png_sBIT, buf, size);
Guy Schalnat0d580581995-07-20 02:43:20 -0500842}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500843#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500844
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500845#if defined(PNG_WRITE_cHRM_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500846/* write the cHRM chunk */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600847#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500848void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500849png_write_cHRM(png_structp png_ptr, double white_x, double white_y,
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600850 double red_x, double red_y, double green_x, double green_y,
851 double blue_x, double blue_y)
Guy Schalnat0d580581995-07-20 02:43:20 -0500852{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600853#ifdef PNG_USE_LOCAL_ARRAYS
854 PNG_cHRM;
855#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500856 png_byte buf[32];
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600857 png_uint_32 itemp;
Guy Schalnat0d580581995-07-20 02:43:20 -0500858
Andreas Dilger47a0c421997-05-16 02:46:07 -0500859 png_debug(1, "in png_write_cHRM\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600860 /* each value is saved in 1/100,000ths */
Guy Schalnate5a37791996-06-05 15:50:50 -0500861 if (white_x < 0 || white_x > 0.8 || white_y < 0 || white_y > 0.8 ||
862 white_x + white_y > 1.0)
863 {
864 png_warning(png_ptr, "Invalid cHRM white point specified");
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500865#if !defined(PNG_NO_CONSOLE_IO)
866 fprintf(stderr,"white_x=%f, white_y=%f\n",white_x, white_y);
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -0600867#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500868 return;
869 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600870 itemp = (png_uint_32)(white_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500871 png_save_uint_32(buf, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600872 itemp = (png_uint_32)(white_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500873 png_save_uint_32(buf + 4, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500874
875 if (red_x < 0 || red_x > 0.8 || red_y < 0 || red_y > 0.8 ||
876 red_x + red_y > 1.0)
877 {
878 png_warning(png_ptr, "Invalid cHRM red point specified");
879 return;
880 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600881 itemp = (png_uint_32)(red_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500882 png_save_uint_32(buf + 8, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600883 itemp = (png_uint_32)(red_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500884 png_save_uint_32(buf + 12, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500885
886 if (green_x < 0 || green_x > 0.8 || green_y < 0 || green_y > 0.8 ||
887 green_x + green_y > 1.0)
888 {
889 png_warning(png_ptr, "Invalid cHRM green point specified");
890 return;
891 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600892 itemp = (png_uint_32)(green_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500893 png_save_uint_32(buf + 16, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600894 itemp = (png_uint_32)(green_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500895 png_save_uint_32(buf + 20, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500896
897 if (blue_x < 0 || blue_x > 0.8 || blue_y < 0 || blue_y > 0.8 ||
898 blue_x + blue_y > 1.0)
899 {
900 png_warning(png_ptr, "Invalid cHRM blue point specified");
901 return;
902 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600903 itemp = (png_uint_32)(blue_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500904 png_save_uint_32(buf + 24, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600905 itemp = (png_uint_32)(blue_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500906 png_save_uint_32(buf + 28, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500907
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600908 png_write_chunk(png_ptr, (png_bytep)png_cHRM, buf, (png_size_t)32);
Guy Schalnat0d580581995-07-20 02:43:20 -0500909}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500910#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600911#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500912void /* PRIVATE */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600913png_write_cHRM_fixed(png_structp png_ptr, png_fixed_point white_x,
914 png_fixed_point white_y, png_fixed_point red_x, png_fixed_point red_y,
915 png_fixed_point green_x, png_fixed_point green_y, png_fixed_point blue_x,
916 png_fixed_point blue_y)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600917{
918#ifdef PNG_USE_LOCAL_ARRAYS
919 PNG_cHRM;
920#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600921 png_byte buf[32];
922
923 png_debug(1, "in png_write_cHRM\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600924 /* each value is saved in 1/100,000ths */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600925 if (white_x > 80000L || white_y > 80000L || white_x + white_y > 100000L)
926 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600927 png_warning(png_ptr, "Invalid fixed cHRM white point specified");
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500928#if !defined(PNG_NO_CONSOLE_IO)
929 fprintf(stderr,"white_x=%ld, white_y=%ld\n",white_x, white_y);
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -0600930#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600931 return;
932 }
933 png_save_uint_32(buf, white_x);
934 png_save_uint_32(buf + 4, white_y);
935
936 if (red_x > 80000L || red_y > 80000L || red_x + red_y > 100000L)
937 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600938 png_warning(png_ptr, "Invalid cHRM fixed red point specified");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600939 return;
940 }
941 png_save_uint_32(buf + 8, red_x);
942 png_save_uint_32(buf + 12, red_y);
943
944 if (green_x > 80000L || green_y > 80000L || green_x + green_y > 100000L)
945 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600946 png_warning(png_ptr, "Invalid fixed cHRM green point specified");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600947 return;
948 }
949 png_save_uint_32(buf + 16, green_x);
950 png_save_uint_32(buf + 20, green_y);
951
952 if (blue_x > 80000L || blue_y > 80000L || blue_x + blue_y > 100000L)
953 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600954 png_warning(png_ptr, "Invalid fixed cHRM blue point specified");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600955 return;
956 }
957 png_save_uint_32(buf + 24, blue_x);
958 png_save_uint_32(buf + 28, blue_y);
959
960 png_write_chunk(png_ptr, (png_bytep)png_cHRM, buf, (png_size_t)32);
961}
962#endif
963#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500964
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500965#if defined(PNG_WRITE_tRNS_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500966/* write the tRNS chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500967void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600968png_write_tRNS(png_structp png_ptr, png_bytep trans, png_color_16p tran,
Guy Schalnat0d580581995-07-20 02:43:20 -0500969 int num_trans, int color_type)
970{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600971#ifdef PNG_USE_LOCAL_ARRAYS
972 PNG_tRNS;
973#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500974 png_byte buf[6];
975
Andreas Dilger47a0c421997-05-16 02:46:07 -0500976 png_debug(1, "in png_write_tRNS\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500977 if (color_type == PNG_COLOR_TYPE_PALETTE)
978 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600979 if (num_trans <= 0 || num_trans > (int)png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -0500980 {
981 png_warning(png_ptr,"Invalid number of transparent colors specified");
982 return;
983 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500984 /* write the chunk out as it is */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600985 png_write_chunk(png_ptr, (png_bytep)png_tRNS, trans, (png_size_t)num_trans);
Guy Schalnat0d580581995-07-20 02:43:20 -0500986 }
987 else if (color_type == PNG_COLOR_TYPE_GRAY)
988 {
989 /* one 16 bit value */
990 png_save_uint_16(buf, tran->gray);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600991 png_write_chunk(png_ptr, (png_bytep)png_tRNS, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -0500992 }
993 else if (color_type == PNG_COLOR_TYPE_RGB)
994 {
995 /* three 16 bit values */
996 png_save_uint_16(buf, tran->red);
997 png_save_uint_16(buf + 2, tran->green);
998 png_save_uint_16(buf + 4, tran->blue);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600999 png_write_chunk(png_ptr, (png_bytep)png_tRNS, buf, (png_size_t)6);
Guy Schalnat0d580581995-07-20 02:43:20 -05001000 }
Guy Schalnate5a37791996-06-05 15:50:50 -05001001 else
1002 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001003 png_warning(png_ptr, "Can't write tRNS with an alpha channel");
Guy Schalnate5a37791996-06-05 15:50:50 -05001004 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001005}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001006#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001007
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001008#if defined(PNG_WRITE_bKGD_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001009/* write the background chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001010void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001011png_write_bKGD(png_structp png_ptr, png_color_16p back, int color_type)
Guy Schalnat0d580581995-07-20 02:43:20 -05001012{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001013#ifdef PNG_USE_LOCAL_ARRAYS
1014 PNG_bKGD;
1015#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001016 png_byte buf[6];
1017
Andreas Dilger47a0c421997-05-16 02:46:07 -05001018 png_debug(1, "in png_write_bKGD\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001019 if (color_type == PNG_COLOR_TYPE_PALETTE)
1020 {
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001021 if (
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06001022#if defined(PNG_MNG_FEATURES_SUPPORTED) || \
1023 defined (PNG_WRITE_EMPTY_PLTE_SUPPORTED)
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001024 (png_ptr->num_palette ||
1025 (!(png_ptr->mng_features_permitted & PNG_FLAG_MNG_EMPTY_PLTE))) &&
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001026#endif
1027 back->index > png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -05001028 {
1029 png_warning(png_ptr, "Invalid background palette index");
1030 return;
1031 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001032 buf[0] = back->index;
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001033 png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)1);
Guy Schalnat0d580581995-07-20 02:43:20 -05001034 }
1035 else if (color_type & PNG_COLOR_MASK_COLOR)
1036 {
1037 png_save_uint_16(buf, back->red);
1038 png_save_uint_16(buf + 2, back->green);
1039 png_save_uint_16(buf + 4, back->blue);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001040 png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)6);
Guy Schalnat0d580581995-07-20 02:43:20 -05001041 }
1042 else
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001043 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001044 png_save_uint_16(buf, back->gray);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001045 png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -05001046 }
1047}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001048#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001049
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001050#if defined(PNG_WRITE_hIST_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001051/* write the histogram */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001052void /* PRIVATE */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001053png_write_hIST(png_structp png_ptr, png_uint_16p hist, int num_hist)
Guy Schalnat0d580581995-07-20 02:43:20 -05001054{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001055#ifdef PNG_USE_LOCAL_ARRAYS
1056 PNG_hIST;
1057#endif
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001058 int i;
Guy Schalnat0d580581995-07-20 02:43:20 -05001059 png_byte buf[3];
1060
Andreas Dilger47a0c421997-05-16 02:46:07 -05001061 png_debug(1, "in png_write_hIST\n");
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001062 if (num_hist > (int)png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -05001063 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001064 png_debug2(3, "num_hist = %d, num_palette = %d\n", num_hist,
1065 png_ptr->num_palette);
Guy Schalnate5a37791996-06-05 15:50:50 -05001066 png_warning(png_ptr, "Invalid number of histogram entries specified");
1067 return;
1068 }
1069
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001070 png_write_chunk_start(png_ptr, (png_bytep)png_hIST, (png_uint_32)(num_hist * 2));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001071 for (i = 0; i < num_hist; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05001072 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001073 png_save_uint_16(buf, hist[i]);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001074 png_write_chunk_data(png_ptr, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -05001075 }
1076 png_write_chunk_end(png_ptr);
1077}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001078#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001079
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001080#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_pCAL_SUPPORTED) || \
1081 defined(PNG_WRITE_iCCP_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001082/* Check that the tEXt or zTXt keyword is valid per PNG 1.0 specification,
1083 * and if invalid, correct the keyword rather than discarding the entire
1084 * chunk. The PNG 1.0 specification requires keywords 1-79 characters in
1085 * length, forbids leading or trailing whitespace, multiple internal spaces,
1086 * and the non-break space (0x80) from ISO 8859-1. Returns keyword length.
Andreas Dilger47a0c421997-05-16 02:46:07 -05001087 *
1088 * The new_key is allocated to hold the corrected keyword and must be freed
1089 * by the calling routine. This avoids problems with trying to write to
1090 * static keywords without having to have duplicate copies of the strings.
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001091 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001092png_size_t /* PRIVATE */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001093png_check_keyword(png_structp png_ptr, png_charp key, png_charpp new_key)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001094{
Andreas Dilger47a0c421997-05-16 02:46:07 -05001095 png_size_t key_len;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001096 png_charp kp, dp;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001097 int kflag;
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001098 int kwarn=0;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001099
Andreas Dilger47a0c421997-05-16 02:46:07 -05001100 png_debug(1, "in png_check_keyword\n");
1101 *new_key = NULL;
1102
1103 if (key == NULL || (key_len = png_strlen(key)) == 0)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001104 {
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001105 png_warning(png_ptr, "zero length keyword");
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -06001106 return ((png_size_t)0);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001107 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001108
Andreas Dilger47a0c421997-05-16 02:46:07 -05001109 png_debug1(2, "Keyword to be checked is '%s'\n", key);
1110
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001111 *new_key = (png_charp)png_malloc(png_ptr, (png_uint_32)(key_len + 2));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001112
1113 /* Replace non-printing characters with a blank and print a warning */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001114 for (kp = key, dp = *new_key; *kp != '\0'; kp++, dp++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001115 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001116 if (*kp < 0x20 || (*kp > 0x7E && (png_byte)*kp < 0xA1))
Andreas Dilger47a0c421997-05-16 02:46:07 -05001117 {
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -05001118#if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001119 char msg[40];
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001120
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001121 sprintf(msg, "invalid keyword character 0x%02X", *kp);
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001122 png_warning(png_ptr, msg);
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001123#else
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001124 png_warning(png_ptr, "invalid character in keyword");
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001125#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001126 *dp = ' ';
1127 }
1128 else
1129 {
1130 *dp = *kp;
1131 }
1132 }
1133 *dp = '\0';
1134
1135 /* Remove any trailing white space. */
1136 kp = *new_key + key_len - 1;
1137 if (*kp == ' ')
1138 {
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001139 png_warning(png_ptr, "trailing spaces removed from keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001140
1141 while (*kp == ' ')
1142 {
1143 *(kp--) = '\0';
1144 key_len--;
1145 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001146 }
1147
1148 /* Remove any leading white space. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001149 kp = *new_key;
1150 if (*kp == ' ')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001151 {
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001152 png_warning(png_ptr, "leading spaces removed from keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001153
1154 while (*kp == ' ')
1155 {
1156 kp++;
1157 key_len--;
1158 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001159 }
1160
Andreas Dilger47a0c421997-05-16 02:46:07 -05001161 png_debug1(2, "Checking for multiple internal spaces in '%s'\n", kp);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001162
Andreas Dilger47a0c421997-05-16 02:46:07 -05001163 /* Remove multiple internal spaces. */
1164 for (kflag = 0, dp = *new_key; *kp != '\0'; kp++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001165 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001166 if (*kp == ' ' && kflag == 0)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001167 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001168 *(dp++) = *kp;
1169 kflag = 1;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001170 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001171 else if (*kp == ' ')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001172 {
1173 key_len--;
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001174 kwarn=1;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001175 }
1176 else
1177 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001178 *(dp++) = *kp;
1179 kflag = 0;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001180 }
1181 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001182 *dp = '\0';
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001183 if(kwarn)
1184 png_warning(png_ptr, "extra interior spaces removed from keyword");
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001185
1186 if (key_len == 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001187 {
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001188 png_free(png_ptr, *new_key);
1189 *new_key=NULL;
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001190 png_warning(png_ptr, "Zero length keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001191 }
1192
1193 if (key_len > 79)
1194 {
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001195 png_warning(png_ptr, "keyword length must be 1 - 79 characters");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001196 new_key[79] = '\0';
1197 key_len = 79;
1198 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001199
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -06001200 return (key_len);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001201}
1202#endif
1203
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001204#if defined(PNG_WRITE_tEXt_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001205/* write a tEXt chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001206void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001207png_write_tEXt(png_structp png_ptr, png_charp key, png_charp text,
Andreas Dilger47a0c421997-05-16 02:46:07 -05001208 png_size_t text_len)
Guy Schalnat0d580581995-07-20 02:43:20 -05001209{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001210#ifdef PNG_USE_LOCAL_ARRAYS
1211 PNG_tEXt;
1212#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001213 png_size_t key_len;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001214 png_charp new_key;
Guy Schalnat0d580581995-07-20 02:43:20 -05001215
Andreas Dilger47a0c421997-05-16 02:46:07 -05001216 png_debug(1, "in png_write_tEXt\n");
1217 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
1218 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001219 png_warning(png_ptr, "Empty keyword in tEXt chunk");
Guy Schalnate5a37791996-06-05 15:50:50 -05001220 return;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001221 }
Guy Schalnate5a37791996-06-05 15:50:50 -05001222
Andreas Dilger47a0c421997-05-16 02:46:07 -05001223 if (text == NULL || *text == '\0')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001224 text_len = 0;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001225 else
1226 text_len = png_strlen(text);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001227
1228 /* make sure we include the 0 after the key */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001229 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 -05001230 /*
1231 * We leave it to the application to meet PNG-1.0 requirements on the
1232 * contents of the text. PNG-1.0 through PNG-1.2 discourage the use of
1233 * any non-Latin-1 characters except for NEWLINE. ISO PNG will forbid them.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001234 * The NUL character is forbidden by PNG-1.0 through PNG-1.2 and ISO PNG.
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001235 */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001236 png_write_chunk_data(png_ptr, (png_bytep)new_key, key_len + 1);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001237 if (text_len)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001238 png_write_chunk_data(png_ptr, (png_bytep)text, text_len);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001239
Guy Schalnat0d580581995-07-20 02:43:20 -05001240 png_write_chunk_end(png_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001241 png_free(png_ptr, new_key);
Guy Schalnat0d580581995-07-20 02:43:20 -05001242}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001243#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001244
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001245#if defined(PNG_WRITE_zTXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001246/* write a compressed text chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001247void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001248png_write_zTXt(png_structp png_ptr, png_charp key, png_charp text,
Andreas Dilger47a0c421997-05-16 02:46:07 -05001249 png_size_t text_len, int compression)
Guy Schalnat0d580581995-07-20 02:43:20 -05001250{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001251#ifdef PNG_USE_LOCAL_ARRAYS
1252 PNG_zTXt;
1253#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001254 png_size_t key_len;
Guy Schalnat0d580581995-07-20 02:43:20 -05001255 char buf[1];
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001256 png_charp new_key;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001257 compression_state comp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001258
Andreas Dilger47a0c421997-05-16 02:46:07 -05001259 png_debug(1, "in png_write_zTXt\n");
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001260
Andreas Dilger47a0c421997-05-16 02:46:07 -05001261 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
Guy Schalnate5a37791996-06-05 15:50:50 -05001262 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001263 png_warning(png_ptr, "Empty keyword in zTXt chunk");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001264 return;
Guy Schalnate5a37791996-06-05 15:50:50 -05001265 }
1266
Andreas Dilger47a0c421997-05-16 02:46:07 -05001267 if (text == NULL || *text == '\0' || compression==PNG_TEXT_COMPRESSION_NONE)
1268 {
1269 png_write_tEXt(png_ptr, new_key, text, (png_size_t)0);
1270 png_free(png_ptr, new_key);
1271 return;
1272 }
1273
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001274 text_len = png_strlen(text);
1275
Andreas Dilger47a0c421997-05-16 02:46:07 -05001276 png_free(png_ptr, new_key);
1277
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001278 /* compute the compressed data; do it now for the length */
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001279 text_len = png_text_compress(png_ptr, text, text_len, compression,
1280 &comp);
Guy Schalnat0d580581995-07-20 02:43:20 -05001281
1282 /* write start of chunk */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001283 png_write_chunk_start(png_ptr, (png_bytep)png_zTXt, (png_uint_32)
1284 (key_len+text_len+2));
Guy Schalnat0d580581995-07-20 02:43:20 -05001285 /* write key */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001286 png_write_chunk_data(png_ptr, (png_bytep)key, key_len + 1);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001287 buf[0] = (png_byte)compression;
Guy Schalnat0d580581995-07-20 02:43:20 -05001288 /* write compression */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001289 png_write_chunk_data(png_ptr, (png_bytep)buf, (png_size_t)1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001290 /* write the compressed data */
1291 png_write_compressed_data_out(png_ptr, &comp);
Guy Schalnat0d580581995-07-20 02:43:20 -05001292
Guy Schalnat0d580581995-07-20 02:43:20 -05001293 /* close the chunk */
1294 png_write_chunk_end(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05001295}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001296#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001297
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001298#if defined(PNG_WRITE_iTXt_SUPPORTED)
1299/* write an iTXt chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001300void /* PRIVATE */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001301png_write_iTXt(png_structp png_ptr, int compression, png_charp key,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001302 png_charp lang, png_charp lang_key, png_charp text)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001303{
1304#ifdef PNG_USE_LOCAL_ARRAYS
1305 PNG_iTXt;
1306#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001307 png_size_t lang_len, key_len, lang_key_len, text_len;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001308 png_charp new_lang, new_key;
1309 png_byte cbuf[2];
1310 compression_state comp;
1311
1312 png_debug(1, "in png_write_iTXt\n");
1313
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001314 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
1315 {
1316 png_warning(png_ptr, "Empty keyword in iTXt chunk");
1317 return;
1318 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001319 if (lang == NULL || (lang_len = png_check_keyword(png_ptr, lang,
1320 &new_lang))==0)
1321 {
1322 png_warning(png_ptr, "Empty language field in iTXt chunk");
1323 return;
1324 }
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001325 lang_key_len = png_strlen(lang_key);
1326 text_len = png_strlen(text);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001327
1328 if (text == NULL || *text == '\0')
1329 text_len = 0;
1330
1331 /* compute the compressed data; do it now for the length */
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001332 text_len = png_text_compress(png_ptr, text, text_len, compression-2,
1333 &comp);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001334
1335 /* make sure we include the compression flag, the compression byte,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001336 * and the NULs after the key, lang, and lang_key parts */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001337
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001338 png_write_chunk_start(png_ptr, (png_bytep)png_iTXt,
1339 (png_uint_32)(
1340 5 /* comp byte, comp flag, terminators for key, lang and lang_key */
1341 + key_len
1342 + lang_len
1343 + lang_key_len
1344 + text_len));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001345
1346 /*
1347 * We leave it to the application to meet PNG-1.0 requirements on the
1348 * contents of the text. PNG-1.0 through PNG-1.2 discourage the use of
1349 * any non-Latin-1 characters except for NEWLINE. ISO PNG will forbid them.
1350 * The NUL character is forbidden by PNG-1.0 through PNG-1.2 and ISO PNG.
1351 */
1352 png_write_chunk_data(png_ptr, (png_bytep)new_key, key_len + 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001353
1354 /* set the compression flag */
1355 if (compression == PNG_ITXT_COMPRESSION_NONE || \
1356 compression == PNG_TEXT_COMPRESSION_NONE)
1357 cbuf[0] = 0;
1358 else /* compression == PNG_ITXT_COMPRESSION_zTXt */
1359 cbuf[0] = 1;
1360 /* set the compression method */
1361 cbuf[1] = 0;
1362 png_write_chunk_data(png_ptr, cbuf, 2);
1363
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001364 png_write_chunk_data(png_ptr, (png_bytep)new_lang, lang_len + 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001365 png_write_chunk_data(png_ptr, (png_bytep)lang_key, lang_key_len+1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001366 png_write_chunk_data(png_ptr, '\0', 1);
1367
1368 png_write_compressed_data_out(png_ptr, &comp);
1369
1370 png_write_chunk_end(png_ptr);
1371 png_free(png_ptr, new_key);
1372 png_free(png_ptr, new_lang);
1373}
1374#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001375
1376#if defined(PNG_WRITE_oFFs_SUPPORTED)
1377/* write the oFFs chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001378void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001379png_write_oFFs(png_structp png_ptr, png_uint_32 x_offset,
1380 png_uint_32 y_offset,
1381 int unit_type)
1382{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001383#ifdef PNG_USE_LOCAL_ARRAYS
1384 PNG_oFFs;
1385#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001386 png_byte buf[9];
1387
1388 png_debug(1, "in png_write_oFFs\n");
1389 if (unit_type >= PNG_OFFSET_LAST)
1390 png_warning(png_ptr, "Unrecognized unit type for oFFs chunk");
1391
1392 png_save_uint_32(buf, x_offset);
1393 png_save_uint_32(buf + 4, y_offset);
1394 buf[8] = (png_byte)unit_type;
1395
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001396 png_write_chunk(png_ptr, (png_bytep)png_oFFs, buf, (png_size_t)9);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001397}
1398#endif
1399
1400#if defined(PNG_WRITE_pCAL_SUPPORTED)
Glenn Randers-Pehrsonff9c9472000-07-11 07:12:36 -05001401/* write the pCAL chunk (described in the PNG extensions document) */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001402void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001403png_write_pCAL(png_structp png_ptr, png_charp purpose, png_int_32 X0,
1404 png_int_32 X1, int type, int nparams, png_charp units, png_charpp params)
1405{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001406#ifdef PNG_USE_LOCAL_ARRAYS
1407 PNG_pCAL;
1408#endif
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001409 png_size_t purpose_len, units_len, total_len;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001410 png_uint_32p params_len;
1411 png_byte buf[10];
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001412 png_charp new_purpose;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001413 int i;
1414
1415 png_debug1(1, "in png_write_pCAL (%d parameters)\n", nparams);
1416 if (type >= PNG_EQUATION_LAST)
1417 png_warning(png_ptr, "Unrecognized equation type for pCAL chunk");
1418
1419 purpose_len = png_check_keyword(png_ptr, purpose, &new_purpose) + 1;
1420 png_debug1(3, "pCAL purpose length = %d\n", purpose_len);
1421 units_len = png_strlen(units) + (nparams == 0 ? 0 : 1);
1422 png_debug1(3, "pCAL units length = %d\n", units_len);
1423 total_len = purpose_len + units_len + 10;
1424
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001425 params_len = (png_uint_32p)png_malloc(png_ptr, (png_uint_32)(nparams
1426 *sizeof(png_uint_32)));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001427
1428 /* Find the length of each parameter, making sure we don't count the
1429 null terminator for the last parameter. */
1430 for (i = 0; i < nparams; i++)
1431 {
1432 params_len[i] = png_strlen(params[i]) + (i == nparams - 1 ? 0 : 1);
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -05001433 png_debug2(3, "pCAL parameter %d length = %lu\n", i, params_len[i]);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001434 total_len += (png_size_t)params_len[i];
1435 }
1436
1437 png_debug1(3, "pCAL total length = %d\n", total_len);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001438 png_write_chunk_start(png_ptr, (png_bytep)png_pCAL, (png_uint_32)total_len);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001439 png_write_chunk_data(png_ptr, (png_bytep)new_purpose, purpose_len);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001440 png_save_int_32(buf, X0);
1441 png_save_int_32(buf + 4, X1);
1442 buf[8] = (png_byte)type;
1443 buf[9] = (png_byte)nparams;
1444 png_write_chunk_data(png_ptr, buf, (png_size_t)10);
1445 png_write_chunk_data(png_ptr, (png_bytep)units, (png_size_t)units_len);
1446
1447 png_free(png_ptr, new_purpose);
1448
1449 for (i = 0; i < nparams; i++)
1450 {
1451 png_write_chunk_data(png_ptr, (png_bytep)params[i],
1452 (png_size_t)params_len[i]);
1453 }
1454
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001455 png_free(png_ptr, params_len);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001456 png_write_chunk_end(png_ptr);
1457}
1458#endif
1459
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001460#if defined(PNG_WRITE_sCAL_SUPPORTED)
1461/* write the sCAL chunk */
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -06001462#if defined(PNG_FLOATING_POINT_SUPPORTED) && !defined(PNG_NO_STDIO)
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001463void /* PRIVATE */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001464png_write_sCAL(png_structp png_ptr, int unit, double width,double height)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001465{
1466#ifdef PNG_USE_LOCAL_ARRAYS
1467 PNG_sCAL;
1468#endif
1469 png_size_t total_len;
1470 char wbuf[32], hbuf[32];
1471
1472 png_debug(1, "in png_write_sCAL\n");
1473
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -05001474#if defined(_WIN32_WCE)
1475/* sprintf() function is not supported on WindowsCE */
1476 {
1477 wchar_t wc_buf[32];
1478 swprintf(wc_buf, TEXT("%12.12e"), width);
1479 WideCharToMultiByte(CP_ACP, 0, wc_buf, -1, wbuf, 32, NULL, NULL);
1480 swprintf(wc_buf, TEXT("%12.12e"), height);
1481 WideCharToMultiByte(CP_ACP, 0, wc_buf, -1, hbuf, 32, NULL, NULL);
1482 }
1483#else
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001484 sprintf(wbuf, "%12.12e", width);
1485 sprintf(hbuf, "%12.12e", height);
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -05001486#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001487 total_len = 1 + png_strlen(wbuf)+1 + png_strlen(hbuf);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001488
1489 png_debug1(3, "sCAL total length = %d\n", total_len);
1490 png_write_chunk_start(png_ptr, (png_bytep)png_sCAL, (png_uint_32)total_len);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001491 png_write_chunk_data(png_ptr, (png_bytep)&unit, 1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001492 png_write_chunk_data(png_ptr, (png_bytep)wbuf, strlen(wbuf)+1);
1493 png_write_chunk_data(png_ptr, (png_bytep)hbuf, strlen(hbuf));
1494
1495 png_write_chunk_end(png_ptr);
1496}
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001497#else
1498#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001499void /* PRIVATE */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001500png_write_sCAL_s(png_structp png_ptr, int unit, png_charp width,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001501 png_charp height)
1502{
1503#ifdef PNG_USE_LOCAL_ARRAYS
1504 PNG_sCAL;
1505#endif
1506 png_size_t total_len;
1507 char wbuf[32], hbuf[32];
1508
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -06001509 png_debug(1, "in png_write_sCAL_s\n");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001510
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -06001511 strcpy(wbuf,(const char *)width);
1512 strcpy(hbuf,(const char *)height);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001513 total_len = 1 + png_strlen(wbuf)+1 + png_strlen(hbuf);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001514
1515 png_debug1(3, "sCAL total length = %d\n", total_len);
1516 png_write_chunk_start(png_ptr, (png_bytep)png_sCAL, (png_uint_32)total_len);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001517 png_write_chunk_data(png_ptr, (png_bytep)&unit, 1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001518 png_write_chunk_data(png_ptr, (png_bytep)wbuf, strlen(wbuf)+1);
1519 png_write_chunk_data(png_ptr, (png_bytep)hbuf, strlen(hbuf));
1520
1521 png_write_chunk_end(png_ptr);
1522}
1523#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001524#endif
1525#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001526
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001527#if defined(PNG_WRITE_pHYs_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001528/* write the pHYs chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001529void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001530png_write_pHYs(png_structp png_ptr, png_uint_32 x_pixels_per_unit,
Guy Schalnat0d580581995-07-20 02:43:20 -05001531 png_uint_32 y_pixels_per_unit,
1532 int unit_type)
1533{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001534#ifdef PNG_USE_LOCAL_ARRAYS
1535 PNG_pHYs;
1536#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001537 png_byte buf[9];
1538
Andreas Dilger47a0c421997-05-16 02:46:07 -05001539 png_debug(1, "in png_write_pHYs\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001540 if (unit_type >= PNG_RESOLUTION_LAST)
1541 png_warning(png_ptr, "Unrecognized unit type for pHYs chunk");
1542
Guy Schalnat0d580581995-07-20 02:43:20 -05001543 png_save_uint_32(buf, x_pixels_per_unit);
1544 png_save_uint_32(buf + 4, y_pixels_per_unit);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001545 buf[8] = (png_byte)unit_type;
Guy Schalnat0d580581995-07-20 02:43:20 -05001546
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001547 png_write_chunk(png_ptr, (png_bytep)png_pHYs, buf, (png_size_t)9);
Guy Schalnat0d580581995-07-20 02:43:20 -05001548}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001549#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001550
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001551#if defined(PNG_WRITE_tIME_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001552/* Write the tIME chunk. Use either png_convert_from_struct_tm()
1553 * or png_convert_from_time_t(), or fill in the structure yourself.
1554 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001555void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001556png_write_tIME(png_structp png_ptr, png_timep mod_time)
Guy Schalnat0d580581995-07-20 02:43:20 -05001557{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001558#ifdef PNG_USE_LOCAL_ARRAYS
1559 PNG_tIME;
1560#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001561 png_byte buf[7];
1562
Andreas Dilger47a0c421997-05-16 02:46:07 -05001563 png_debug(1, "in png_write_tIME\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001564 if (mod_time->month > 12 || mod_time->month < 1 ||
1565 mod_time->day > 31 || mod_time->day < 1 ||
1566 mod_time->hour > 23 || mod_time->second > 60)
1567 {
1568 png_warning(png_ptr, "Invalid time specified for tIME chunk");
1569 return;
1570 }
1571
Guy Schalnat0d580581995-07-20 02:43:20 -05001572 png_save_uint_16(buf, mod_time->year);
1573 buf[2] = mod_time->month;
1574 buf[3] = mod_time->day;
1575 buf[4] = mod_time->hour;
1576 buf[5] = mod_time->minute;
1577 buf[6] = mod_time->second;
1578
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001579 png_write_chunk(png_ptr, (png_bytep)png_tIME, buf, (png_size_t)7);
Guy Schalnat0d580581995-07-20 02:43:20 -05001580}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001581#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001582
1583/* initializes the row writing capability of libpng */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001584void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001585png_write_start_row(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05001586{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001587#ifdef PNG_USE_LOCAL_ARRAYS
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001588 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001589
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001590 /* start of interlace block */
1591 int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001592
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001593 /* offset to next interlace block */
1594 int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001595
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001596 /* start of interlace block in the y direction */
1597 int png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001598
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001599 /* offset to next interlace block in the y direction */
1600 int png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001601#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001602
Andreas Dilger47a0c421997-05-16 02:46:07 -05001603 png_size_t buf_size;
1604
1605 png_debug(1, "in png_write_start_row\n");
1606 buf_size = (png_size_t)(((png_ptr->width * png_ptr->usr_channels *
1607 png_ptr->usr_bit_depth + 7) >> 3) + 1);
1608
Guy Schalnat0d580581995-07-20 02:43:20 -05001609 /* set up row buffer */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001610 png_ptr->row_buf = (png_bytep)png_malloc(png_ptr, (png_uint_32)buf_size);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001611 png_ptr->row_buf[0] = PNG_FILTER_VALUE_NONE;
Guy Schalnate5a37791996-06-05 15:50:50 -05001612
1613 /* set up filtering buffer, if using this filter */
1614 if (png_ptr->do_filter & PNG_FILTER_SUB)
Guy Schalnat0d580581995-07-20 02:43:20 -05001615 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001616 png_ptr->sub_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001617 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001618 png_ptr->sub_row[0] = PNG_FILTER_VALUE_SUB;
Guy Schalnate5a37791996-06-05 15:50:50 -05001619 }
1620
Andreas Dilger47a0c421997-05-16 02:46:07 -05001621 /* We only need to keep the previous row if we are using one of these. */
Guy Schalnate5a37791996-06-05 15:50:50 -05001622 if (png_ptr->do_filter & (PNG_FILTER_AVG | PNG_FILTER_UP | PNG_FILTER_PAETH))
1623 {
1624 /* set up previous row buffer */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001625 png_ptr->prev_row = (png_bytep)png_malloc(png_ptr, (png_uint_32)buf_size);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001626 png_memset(png_ptr->prev_row, 0, buf_size);
Guy Schalnate5a37791996-06-05 15:50:50 -05001627
1628 if (png_ptr->do_filter & PNG_FILTER_UP)
1629 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001630 png_ptr->up_row = (png_bytep )png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001631 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001632 png_ptr->up_row[0] = PNG_FILTER_VALUE_UP;
Guy Schalnate5a37791996-06-05 15:50:50 -05001633 }
1634
1635 if (png_ptr->do_filter & PNG_FILTER_AVG)
1636 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001637 png_ptr->avg_row = (png_bytep)png_malloc(png_ptr,
1638 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001639 png_ptr->avg_row[0] = PNG_FILTER_VALUE_AVG;
Guy Schalnate5a37791996-06-05 15:50:50 -05001640 }
1641
1642 if (png_ptr->do_filter & PNG_FILTER_PAETH)
1643 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001644 png_ptr->paeth_row = (png_bytep )png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001645 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001646 png_ptr->paeth_row[0] = PNG_FILTER_VALUE_PAETH;
Guy Schalnate5a37791996-06-05 15:50:50 -05001647 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001648 }
1649
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001650#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05001651 /* if interlaced, we need to set up width and height of pass */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001652 if (png_ptr->interlaced)
Guy Schalnat0d580581995-07-20 02:43:20 -05001653 {
1654 if (!(png_ptr->transformations & PNG_INTERLACE))
1655 {
1656 png_ptr->num_rows = (png_ptr->height + png_pass_yinc[0] - 1 -
1657 png_pass_ystart[0]) / png_pass_yinc[0];
Andreas Dilger47a0c421997-05-16 02:46:07 -05001658 png_ptr->usr_width = (png_ptr->width + png_pass_inc[0] - 1 -
1659 png_pass_start[0]) / png_pass_inc[0];
Guy Schalnat0d580581995-07-20 02:43:20 -05001660 }
1661 else
1662 {
1663 png_ptr->num_rows = png_ptr->height;
1664 png_ptr->usr_width = png_ptr->width;
1665 }
1666 }
1667 else
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001668#endif
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001669 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001670 png_ptr->num_rows = png_ptr->height;
1671 png_ptr->usr_width = png_ptr->width;
1672 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001673 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
1674 png_ptr->zstream.next_out = png_ptr->zbuf;
Guy Schalnat0d580581995-07-20 02:43:20 -05001675}
1676
Andreas Dilger47a0c421997-05-16 02:46:07 -05001677/* Internal use only. Called when finished processing a row of data. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001678void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001679png_write_finish_row(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05001680{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001681#ifdef PNG_USE_LOCAL_ARRAYS
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001682 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001683
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001684 /* start of interlace block */
1685 int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001686
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001687 /* offset to next interlace block */
1688 int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001689
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001690 /* start of interlace block in the y direction */
1691 int png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001692
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001693 /* offset to next interlace block in the y direction */
1694 int png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001695#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001696
Guy Schalnat0d580581995-07-20 02:43:20 -05001697 int ret;
1698
Andreas Dilger47a0c421997-05-16 02:46:07 -05001699 png_debug(1, "in png_write_finish_row\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001700 /* next row */
1701 png_ptr->row_number++;
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001702
Guy Schalnat0d580581995-07-20 02:43:20 -05001703 /* see if we are done */
Guy Schalnat6d764711995-12-19 03:22:19 -06001704 if (png_ptr->row_number < png_ptr->num_rows)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001705 return;
Guy Schalnat0d580581995-07-20 02:43:20 -05001706
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001707#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05001708 /* if interlaced, go to next pass */
1709 if (png_ptr->interlaced)
1710 {
1711 png_ptr->row_number = 0;
1712 if (png_ptr->transformations & PNG_INTERLACE)
1713 {
1714 png_ptr->pass++;
1715 }
1716 else
1717 {
1718 /* loop until we find a non-zero width or height pass */
1719 do
1720 {
1721 png_ptr->pass++;
1722 if (png_ptr->pass >= 7)
1723 break;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001724 png_ptr->usr_width = (png_ptr->width +
Guy Schalnat0d580581995-07-20 02:43:20 -05001725 png_pass_inc[png_ptr->pass] - 1 -
1726 png_pass_start[png_ptr->pass]) /
1727 png_pass_inc[png_ptr->pass];
1728 png_ptr->num_rows = (png_ptr->height +
1729 png_pass_yinc[png_ptr->pass] - 1 -
1730 png_pass_ystart[png_ptr->pass]) /
1731 png_pass_yinc[png_ptr->pass];
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001732 if (png_ptr->transformations & PNG_INTERLACE)
1733 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05001734 } while (png_ptr->usr_width == 0 || png_ptr->num_rows == 0);
1735
1736 }
1737
Guy Schalnate5a37791996-06-05 15:50:50 -05001738 /* reset the row above the image for the next pass */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001739 if (png_ptr->pass < 7)
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001740 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001741 if (png_ptr->prev_row != NULL)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001742 png_memset(png_ptr->prev_row, 0,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001743 (png_size_t) (((png_uint_32)png_ptr->usr_channels *
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001744 (png_uint_32)png_ptr->usr_bit_depth *
1745 png_ptr->width + 7) >> 3) + 1);
Guy Schalnat0d580581995-07-20 02:43:20 -05001746 return;
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001747 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001748 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001749#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001750
1751 /* if we get here, we've just written the last row, so we need
1752 to flush the compressor */
1753 do
1754 {
1755 /* tell the compressor we are done */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001756 ret = deflate(&png_ptr->zstream, Z_FINISH);
Guy Schalnat0d580581995-07-20 02:43:20 -05001757 /* check for an error */
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001758 if (ret == Z_OK)
1759 {
1760 /* check to see if we need more room */
1761 if (!(png_ptr->zstream.avail_out))
1762 {
1763 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
1764 png_ptr->zstream.next_out = png_ptr->zbuf;
1765 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
1766 }
1767 }
1768 else if (ret != Z_STREAM_END)
Guy Schalnat0d580581995-07-20 02:43:20 -05001769 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001770 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001771 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnat0d580581995-07-20 02:43:20 -05001772 else
Guy Schalnat6d764711995-12-19 03:22:19 -06001773 png_error(png_ptr, "zlib error");
Guy Schalnat0d580581995-07-20 02:43:20 -05001774 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001775 } while (ret != Z_STREAM_END);
1776
1777 /* write any extra space */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001778 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size)
Guy Schalnat0d580581995-07-20 02:43:20 -05001779 {
1780 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size -
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001781 png_ptr->zstream.avail_out);
Guy Schalnat0d580581995-07-20 02:43:20 -05001782 }
1783
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001784 deflateReset(&png_ptr->zstream);
Guy Schalnat0d580581995-07-20 02:43:20 -05001785}
1786
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001787#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001788/* Pick out the correct pixels for the interlace pass.
1789 * The basic idea here is to go through the row with a source
1790 * pointer and a destination pointer (sp and dp), and copy the
1791 * correct pixels for the pass. As the row gets compacted,
1792 * sp will always be >= dp, so we should never overwrite anything.
1793 * See the default: case for the easiest code to understand.
1794 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001795void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001796png_do_write_interlace(png_row_infop row_info, png_bytep row, int pass)
Guy Schalnat0d580581995-07-20 02:43:20 -05001797{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001798#ifdef PNG_USE_LOCAL_ARRAYS
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001799 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001800
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001801 /* start of interlace block */
1802 int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001803
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001804 /* offset to next interlace block */
1805 int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001806#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001807
Andreas Dilger47a0c421997-05-16 02:46:07 -05001808 png_debug(1, "in png_do_write_interlace\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001809 /* we don't have to do anything on the last pass (6) */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001810#if defined(PNG_USELESS_TESTS_SUPPORTED)
1811 if (row != NULL && row_info != NULL && pass < 6)
1812#else
1813 if (pass < 6)
1814#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001815 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001816 /* each pixel depth is handled separately */
Guy Schalnat0d580581995-07-20 02:43:20 -05001817 switch (row_info->pixel_depth)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001818 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001819 case 1:
1820 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001821 png_bytep sp;
1822 png_bytep dp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001823 int shift;
1824 int d;
1825 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001826 png_uint_32 i;
1827 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001828
1829 dp = row;
1830 d = 0;
1831 shift = 7;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001832 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001833 i += png_pass_inc[pass])
1834 {
1835 sp = row + (png_size_t)(i >> 3);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001836 value = (int)(*sp >> (7 - (int)(i & 0x07))) & 0x01;
Guy Schalnat0d580581995-07-20 02:43:20 -05001837 d |= (value << shift);
1838
1839 if (shift == 0)
1840 {
1841 shift = 7;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001842 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001843 d = 0;
1844 }
1845 else
1846 shift--;
1847
1848 }
1849 if (shift != 7)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001850 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001851 break;
1852 }
1853 case 2:
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001854 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001855 png_bytep sp;
1856 png_bytep dp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001857 int shift;
1858 int d;
1859 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001860 png_uint_32 i;
1861 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001862
1863 dp = row;
1864 shift = 6;
1865 d = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001866 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001867 i += png_pass_inc[pass])
1868 {
1869 sp = row + (png_size_t)(i >> 2);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001870 value = (*sp >> ((3 - (int)(i & 0x03)) << 1)) & 0x03;
Guy Schalnat0d580581995-07-20 02:43:20 -05001871 d |= (value << shift);
1872
1873 if (shift == 0)
1874 {
1875 shift = 6;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001876 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001877 d = 0;
1878 }
1879 else
1880 shift -= 2;
1881 }
1882 if (shift != 6)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001883 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001884 break;
1885 }
1886 case 4:
1887 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001888 png_bytep sp;
1889 png_bytep dp;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001890 int shift;
Guy Schalnat0d580581995-07-20 02:43:20 -05001891 int d;
1892 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001893 png_uint_32 i;
1894 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001895
1896 dp = row;
1897 shift = 4;
1898 d = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001899 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001900 i += png_pass_inc[pass])
1901 {
1902 sp = row + (png_size_t)(i >> 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001903 value = (*sp >> ((1 - (int)(i & 0x01)) << 2)) & 0x0f;
Guy Schalnat0d580581995-07-20 02:43:20 -05001904 d |= (value << shift);
1905
1906 if (shift == 0)
1907 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001908 shift = 4;
1909 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001910 d = 0;
1911 }
1912 else
1913 shift -= 4;
1914 }
1915 if (shift != 4)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001916 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001917 break;
1918 }
1919 default:
1920 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001921 png_bytep sp;
1922 png_bytep dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001923 png_uint_32 i;
1924 png_uint_32 row_width = row_info->width;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001925 png_size_t pixel_bytes;
Guy Schalnat0d580581995-07-20 02:43:20 -05001926
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001927 /* start at the beginning */
Guy Schalnat0d580581995-07-20 02:43:20 -05001928 dp = row;
1929 /* find out how many bytes each pixel takes up */
1930 pixel_bytes = (row_info->pixel_depth >> 3);
1931 /* loop through the row, only looking at the pixels that
1932 matter */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001933 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001934 i += png_pass_inc[pass])
1935 {
1936 /* find out where the original pixel is */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001937 sp = row + (png_size_t)i * pixel_bytes;
Guy Schalnat0d580581995-07-20 02:43:20 -05001938 /* move the pixel */
1939 if (dp != sp)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001940 png_memcpy(dp, sp, pixel_bytes);
Guy Schalnat0d580581995-07-20 02:43:20 -05001941 /* next pixel */
1942 dp += pixel_bytes;
1943 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001944 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05001945 }
1946 }
1947 /* set new row width */
1948 row_info->width = (row_info->width +
1949 png_pass_inc[pass] - 1 -
1950 png_pass_start[pass]) /
1951 png_pass_inc[pass];
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001952 row_info->rowbytes = ((row_info->width *
1953 row_info->pixel_depth + 7) >> 3);
Guy Schalnat0d580581995-07-20 02:43:20 -05001954 }
1955}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001956#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001957
Andreas Dilger47a0c421997-05-16 02:46:07 -05001958/* This filters the row, chooses which filter to use, if it has not already
1959 * been specified by the application, and then writes the row out with the
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001960 * chosen filter.
1961 */
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001962#define PNG_MAXSUM (~((png_uint_32)0) >> 1)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001963#define PNG_HISHIFT 10
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001964#define PNG_LOMASK ((png_uint_32)0xffffL)
1965#define PNG_HIMASK ((png_uint_32)(~PNG_LOMASK >> PNG_HISHIFT))
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001966void /* PRIVATE */
Guy Schalnate5a37791996-06-05 15:50:50 -05001967png_write_find_filter(png_structp png_ptr, png_row_infop row_info)
Guy Schalnat0d580581995-07-20 02:43:20 -05001968{
Guy Schalnate5a37791996-06-05 15:50:50 -05001969 png_bytep prev_row, best_row, row_buf;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001970 png_uint_32 mins, bpp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001971 png_byte filter_to_do = png_ptr->do_filter;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001972 png_uint_32 row_bytes = row_info->rowbytes;
1973#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1974 int num_p_filters = (int)png_ptr->num_prev_filters;
1975#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001976
Andreas Dilger47a0c421997-05-16 02:46:07 -05001977 png_debug(1, "in png_write_find_filter\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001978 /* find out how many bytes offset each pixel is */
1979 bpp = (row_info->pixel_depth + 7) / 8;
Guy Schalnate5a37791996-06-05 15:50:50 -05001980
1981 prev_row = png_ptr->prev_row;
1982 best_row = row_buf = png_ptr->row_buf;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001983 mins = PNG_MAXSUM;
Guy Schalnat0d580581995-07-20 02:43:20 -05001984
Andreas Dilger47a0c421997-05-16 02:46:07 -05001985 /* The prediction method we use is to find which method provides the
1986 * smallest value when summing the absolute values of the distances
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -05001987 * from zero, using anything >= 128 as negative numbers. This is known
Andreas Dilger47a0c421997-05-16 02:46:07 -05001988 * as the "minimum sum of absolute differences" heuristic. Other
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001989 * heuristics are the "weighted minimum sum of absolute differences"
Andreas Dilger47a0c421997-05-16 02:46:07 -05001990 * (experimental and can in theory improve compression), and the "zlib
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001991 * predictive" method (not implemented yet), which does test compressions
1992 * of lines using different filter methods, and then chooses the
1993 * (series of) filter(s) that give minimum compressed data size (VERY
Andreas Dilger47a0c421997-05-16 02:46:07 -05001994 * computationally expensive).
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001995 *
1996 * GRR 980525: consider also
1997 * (1) minimum sum of absolute differences from running average (i.e.,
1998 * keep running sum of non-absolute differences & count of bytes)
1999 * [track dispersion, too? restart average if dispersion too large?]
2000 * (1b) minimum sum of absolute differences from sliding average, probably
2001 * with window size <= deflate window (usually 32K)
2002 * (2) minimum sum of squared differences from zero or running average
2003 * (i.e., ~ root-mean-square approach)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002004 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002005
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002006
Guy Schalnate5a37791996-06-05 15:50:50 -05002007 /* We don't need to test the 'no filter' case if this is the only filter
Andreas Dilger47a0c421997-05-16 02:46:07 -05002008 * that has been chosen, as it doesn't actually do anything to the data.
2009 */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002010 if ((filter_to_do & PNG_FILTER_NONE) &&
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002011 filter_to_do != PNG_FILTER_NONE)
Guy Schalnat0d580581995-07-20 02:43:20 -05002012 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002013 png_bytep rp;
2014 png_uint_32 sum = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002015 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002016 int v;
Guy Schalnat0d580581995-07-20 02:43:20 -05002017
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002018 for (i = 0, rp = row_buf + 1; i < row_bytes; i++, rp++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002019 {
2020 v = *rp;
2021 sum += (v < 128) ? v : 256 - v;
2022 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002023
2024#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2025 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2026 {
2027 png_uint_32 sumhi, sumlo;
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002028 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002029 sumlo = sum & PNG_LOMASK;
2030 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK; /* Gives us some footroom */
2031
2032 /* Reduce the sum if we match any of the previous rows */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002033 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002034 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002035 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_NONE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002036 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002037 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002038 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002039 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002040 PNG_WEIGHT_SHIFT;
2041 }
2042 }
2043
2044 /* Factor in the cost of this filter (this is here for completeness,
2045 * but it makes no sense to have a "cost" for the NONE filter, as
2046 * it has the minimum possible computational cost - none).
2047 */
2048 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_NONE]) >>
2049 PNG_COST_SHIFT;
2050 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_NONE]) >>
2051 PNG_COST_SHIFT;
2052
2053 if (sumhi > PNG_HIMASK)
2054 sum = PNG_MAXSUM;
2055 else
2056 sum = (sumhi << PNG_HISHIFT) + sumlo;
2057 }
2058#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002059 mins = sum;
Guy Schalnat0d580581995-07-20 02:43:20 -05002060 }
2061
Guy Schalnate5a37791996-06-05 15:50:50 -05002062 /* sub filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002063 if (filter_to_do == PNG_FILTER_SUB)
2064 /* it's the only filter so no testing is needed */
2065 {
2066 png_bytep rp, lp, dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002067 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002068 for (i = 0, rp = row_buf + 1, dp = png_ptr->sub_row + 1; i < bpp;
2069 i++, rp++, dp++)
2070 {
2071 *dp = *rp;
2072 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002073 for (lp = row_buf + 1; i < row_bytes;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002074 i++, rp++, lp++, dp++)
2075 {
2076 *dp = (png_byte)(((int)*rp - (int)*lp) & 0xff);
2077 }
2078 best_row = png_ptr->sub_row;
2079 }
2080
2081 else if (filter_to_do & PNG_FILTER_SUB)
Guy Schalnat0d580581995-07-20 02:43:20 -05002082 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002083 png_bytep rp, dp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002084 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002085 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002086 int v;
2087
2088#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002089 /* We temporarily increase the "minimum sum" by the factor we
Andreas Dilger47a0c421997-05-16 02:46:07 -05002090 * would reduce the sum of this filter, so that we can do the
2091 * early exit comparison without scaling the sum each time.
2092 */
2093 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2094 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002095 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002096 png_uint_32 lmhi, lmlo;
2097 lmlo = lmins & PNG_LOMASK;
2098 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2099
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002100 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002101 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002102 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_SUB)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002103 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002104 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002105 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002106 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002107 PNG_WEIGHT_SHIFT;
2108 }
2109 }
2110
2111 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2112 PNG_COST_SHIFT;
2113 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2114 PNG_COST_SHIFT;
2115
2116 if (lmhi > PNG_HIMASK)
2117 lmins = PNG_MAXSUM;
2118 else
2119 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2120 }
2121#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002122
Guy Schalnate5a37791996-06-05 15:50:50 -05002123 for (i = 0, rp = row_buf + 1, dp = png_ptr->sub_row + 1; i < bpp;
2124 i++, rp++, dp++)
2125 {
2126 v = *dp = *rp;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002127
Guy Schalnate5a37791996-06-05 15:50:50 -05002128 sum += (v < 128) ? v : 256 - v;
2129 }
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06002130 for (lp = row_buf + 1; i < row_info->rowbytes;
2131 i++, rp++, lp++, dp++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002132 {
2133 v = *dp = (png_byte)(((int)*rp - (int)*lp) & 0xff);
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002134
Guy Schalnate5a37791996-06-05 15:50:50 -05002135 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002136
2137 if (sum > lmins) /* We are already worse, don't continue. */
2138 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002139 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002140
2141#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2142 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2143 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002144 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002145 png_uint_32 sumhi, sumlo;
2146 sumlo = sum & PNG_LOMASK;
2147 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2148
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002149 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002150 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002151 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_SUB)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002152 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002153 sumlo = (sumlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002154 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002155 sumhi = (sumhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002156 PNG_WEIGHT_SHIFT;
2157 }
2158 }
2159
2160 sumlo = (sumlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2161 PNG_COST_SHIFT;
2162 sumhi = (sumhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2163 PNG_COST_SHIFT;
2164
2165 if (sumhi > PNG_HIMASK)
2166 sum = PNG_MAXSUM;
2167 else
2168 sum = (sumhi << PNG_HISHIFT) + sumlo;
2169 }
2170#endif
2171
Guy Schalnate5a37791996-06-05 15:50:50 -05002172 if (sum < mins)
2173 {
2174 mins = sum;
2175 best_row = png_ptr->sub_row;
2176 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002177 }
2178
Guy Schalnate5a37791996-06-05 15:50:50 -05002179 /* up filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002180 if (filter_to_do == PNG_FILTER_UP)
2181 {
2182 png_bytep rp, dp, pp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002183 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002184
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002185 for (i = 0, rp = row_buf + 1, dp = png_ptr->up_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002186 pp = prev_row + 1; i < row_bytes;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002187 i++, rp++, pp++, dp++)
2188 {
2189 *dp = (png_byte)(((int)*rp - (int)*pp) & 0xff);
2190 }
2191 best_row = png_ptr->up_row;
2192 }
2193
2194 else if (filter_to_do & PNG_FILTER_UP)
Guy Schalnat0d580581995-07-20 02:43:20 -05002195 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002196 png_bytep rp, dp, pp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002197 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002198 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002199 int v;
2200
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002201
Andreas Dilger47a0c421997-05-16 02:46:07 -05002202#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2203 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2204 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002205 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002206 png_uint_32 lmhi, lmlo;
2207 lmlo = lmins & PNG_LOMASK;
2208 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2209
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002210 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002211 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002212 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_UP)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002213 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002214 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002215 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002216 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002217 PNG_WEIGHT_SHIFT;
2218 }
2219 }
2220
2221 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_UP]) >>
2222 PNG_COST_SHIFT;
2223 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_UP]) >>
2224 PNG_COST_SHIFT;
2225
2226 if (lmhi > PNG_HIMASK)
2227 lmins = PNG_MAXSUM;
2228 else
2229 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2230 }
2231#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002232
2233 for (i = 0, rp = row_buf + 1, dp = png_ptr->up_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002234 pp = prev_row + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002235 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002236 v = *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002237
2238 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002239
2240 if (sum > lmins) /* We are already worse, don't continue. */
2241 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002242 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002243
2244#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2245 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2246 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002247 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002248 png_uint_32 sumhi, sumlo;
2249 sumlo = sum & PNG_LOMASK;
2250 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2251
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002252 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002253 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002254 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_UP)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002255 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002256 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002257 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002258 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002259 PNG_WEIGHT_SHIFT;
2260 }
2261 }
2262
2263 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_UP]) >>
2264 PNG_COST_SHIFT;
2265 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_UP]) >>
2266 PNG_COST_SHIFT;
2267
2268 if (sumhi > PNG_HIMASK)
2269 sum = PNG_MAXSUM;
2270 else
2271 sum = (sumhi << PNG_HISHIFT) + sumlo;
2272 }
2273#endif
2274
Guy Schalnate5a37791996-06-05 15:50:50 -05002275 if (sum < mins)
2276 {
2277 mins = sum;
2278 best_row = png_ptr->up_row;
2279 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002280 }
2281
Guy Schalnate5a37791996-06-05 15:50:50 -05002282 /* avg filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002283 if (filter_to_do == PNG_FILTER_AVG)
2284 {
2285 png_bytep rp, dp, pp, lp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002286 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002287 for (i = 0, rp = row_buf + 1, dp = png_ptr->avg_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002288 pp = prev_row + 1; i < bpp; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002289 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002290 *dp++ = (png_byte)(((int)*rp++ - ((int)*pp++ / 2)) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002291 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002292 for (lp = row_buf + 1; i < row_bytes; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002293 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002294 *dp++ = (png_byte)(((int)*rp++ - (((int)*pp++ + (int)*lp++) / 2))
2295 & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002296 }
2297 best_row = png_ptr->avg_row;
2298 }
2299
2300 else if (filter_to_do & PNG_FILTER_AVG)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002301 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002302 png_bytep rp, dp, pp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002303 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002304 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002305 int v;
2306
2307#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2308 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2309 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002310 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002311 png_uint_32 lmhi, lmlo;
2312 lmlo = lmins & PNG_LOMASK;
2313 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2314
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002315 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002316 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002317 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_AVG)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002318 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002319 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002320 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002321 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002322 PNG_WEIGHT_SHIFT;
2323 }
2324 }
2325
2326 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_AVG]) >>
2327 PNG_COST_SHIFT;
2328 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_AVG]) >>
2329 PNG_COST_SHIFT;
2330
2331 if (lmhi > PNG_HIMASK)
2332 lmins = PNG_MAXSUM;
2333 else
2334 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2335 }
2336#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002337
2338 for (i = 0, rp = row_buf + 1, dp = png_ptr->avg_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002339 pp = prev_row + 1; i < bpp; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002340 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002341 v = *dp++ = (png_byte)(((int)*rp++ - ((int)*pp++ / 2)) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002342
2343 sum += (v < 128) ? v : 256 - v;
2344 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002345 for (lp = row_buf + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002346 {
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002347 v = *dp++ =
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002348 (png_byte)(((int)*rp++ - (((int)*pp++ + (int)*lp++) / 2)) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002349
2350 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002351
2352 if (sum > lmins) /* We are already worse, don't continue. */
2353 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002354 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002355
2356#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2357 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2358 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002359 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002360 png_uint_32 sumhi, sumlo;
2361 sumlo = sum & PNG_LOMASK;
2362 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2363
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002364 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002365 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002366 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_NONE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002367 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002368 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002369 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002370 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002371 PNG_WEIGHT_SHIFT;
2372 }
2373 }
2374
2375 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_AVG]) >>
2376 PNG_COST_SHIFT;
2377 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_AVG]) >>
2378 PNG_COST_SHIFT;
2379
2380 if (sumhi > PNG_HIMASK)
2381 sum = PNG_MAXSUM;
2382 else
2383 sum = (sumhi << PNG_HISHIFT) + sumlo;
2384 }
2385#endif
2386
Guy Schalnate5a37791996-06-05 15:50:50 -05002387 if (sum < mins)
2388 {
2389 mins = sum;
2390 best_row = png_ptr->avg_row;
2391 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002392 }
2393
Andreas Dilger47a0c421997-05-16 02:46:07 -05002394 /* Paeth filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002395 if (filter_to_do == PNG_FILTER_PAETH)
2396 {
2397 png_bytep rp, dp, pp, cp, lp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002398 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002399 for (i = 0, rp = row_buf + 1, dp = png_ptr->paeth_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002400 pp = prev_row + 1; i < bpp; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002401 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002402 *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002403 }
2404
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002405 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002406 {
2407 int a, b, c, pa, pb, pc, p;
2408
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002409 b = *pp++;
2410 c = *cp++;
2411 a = *lp++;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002412
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002413 p = b - c;
2414 pc = a - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002415
2416#ifdef PNG_USE_ABS
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002417 pa = abs(p);
2418 pb = abs(pc);
2419 pc = abs(p + pc);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002420#else
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002421 pa = p < 0 ? -p : p;
2422 pb = pc < 0 ? -pc : pc;
2423 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002424#endif
2425
2426 p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
2427
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002428 *dp++ = (png_byte)(((int)*rp++ - p) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002429 }
2430 best_row = png_ptr->paeth_row;
2431 }
2432
2433 else if (filter_to_do & PNG_FILTER_PAETH)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002434 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002435 png_bytep rp, dp, pp, cp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002436 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002437 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002438 int v;
2439
2440#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2441 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2442 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002443 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002444 png_uint_32 lmhi, lmlo;
2445 lmlo = lmins & PNG_LOMASK;
2446 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2447
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002448 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002449 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002450 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_PAETH)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002451 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002452 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002453 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002454 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002455 PNG_WEIGHT_SHIFT;
2456 }
2457 }
2458
2459 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2460 PNG_COST_SHIFT;
2461 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2462 PNG_COST_SHIFT;
2463
2464 if (lmhi > PNG_HIMASK)
2465 lmins = PNG_MAXSUM;
2466 else
2467 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2468 }
2469#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002470
2471 for (i = 0, rp = row_buf + 1, dp = png_ptr->paeth_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002472 pp = prev_row + 1; i < bpp; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002473 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002474 v = *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002475
2476 sum += (v < 128) ? v : 256 - v;
2477 }
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002478
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002479 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002480 {
2481 int a, b, c, pa, pb, pc, p;
2482
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002483 b = *pp++;
2484 c = *cp++;
2485 a = *lp++;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002486
2487#ifndef PNG_SLOW_PAETH
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002488 p = b - c;
2489 pc = a - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002490#ifdef PNG_USE_ABS
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002491 pa = abs(p);
2492 pb = abs(pc);
2493 pc = abs(p + pc);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002494#else
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002495 pa = p < 0 ? -p : p;
2496 pb = pc < 0 ? -pc : pc;
2497 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002498#endif
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002499 p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
2500#else /* PNG_SLOW_PAETH */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002501 p = a + b - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002502 pa = abs(p - a);
2503 pb = abs(p - b);
2504 pc = abs(p - c);
Guy Schalnate5a37791996-06-05 15:50:50 -05002505 if (pa <= pb && pa <= pc)
2506 p = a;
2507 else if (pb <= pc)
2508 p = b;
2509 else
2510 p = c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002511#endif /* PNG_SLOW_PAETH */
Guy Schalnate5a37791996-06-05 15:50:50 -05002512
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002513 v = *dp++ = (png_byte)(((int)*rp++ - p) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002514
2515 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002516
2517 if (sum > lmins) /* We are already worse, don't continue. */
2518 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002519 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002520
2521#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2522 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2523 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002524 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002525 png_uint_32 sumhi, sumlo;
2526 sumlo = sum & PNG_LOMASK;
2527 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2528
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002529 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002530 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002531 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_PAETH)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002532 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002533 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002534 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002535 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002536 PNG_WEIGHT_SHIFT;
2537 }
2538 }
2539
2540 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2541 PNG_COST_SHIFT;
2542 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2543 PNG_COST_SHIFT;
2544
2545 if (sumhi > PNG_HIMASK)
2546 sum = PNG_MAXSUM;
2547 else
2548 sum = (sumhi << PNG_HISHIFT) + sumlo;
2549 }
2550#endif
2551
Guy Schalnate5a37791996-06-05 15:50:50 -05002552 if (sum < mins)
2553 {
2554 best_row = png_ptr->paeth_row;
2555 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002556 }
2557
Andreas Dilger47a0c421997-05-16 02:46:07 -05002558 /* Do the actual writing of the filtered row data from the chosen filter. */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002559
Guy Schalnate5a37791996-06-05 15:50:50 -05002560 png_write_filtered_row(png_ptr, best_row);
Andreas Dilger47a0c421997-05-16 02:46:07 -05002561
2562#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2563 /* Save the type of filter we picked this time for future calculations */
2564 if (png_ptr->num_prev_filters > 0)
2565 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002566 int j;
2567 for (j = 1; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002568 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002569 png_ptr->prev_filters[j] = png_ptr->prev_filters[j - 1];
Andreas Dilger47a0c421997-05-16 02:46:07 -05002570 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002571 png_ptr->prev_filters[j] = best_row[0];
Andreas Dilger47a0c421997-05-16 02:46:07 -05002572 }
2573#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002574}
2575
2576
Andreas Dilger47a0c421997-05-16 02:46:07 -05002577/* Do the actual writing of a previously filtered row. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002578void /* PRIVATE */
Guy Schalnate5a37791996-06-05 15:50:50 -05002579png_write_filtered_row(png_structp png_ptr, png_bytep filtered_row)
2580{
Andreas Dilger47a0c421997-05-16 02:46:07 -05002581 png_debug(1, "in png_write_filtered_row\n");
2582 png_debug1(2, "filter = %d\n", filtered_row[0]);
Guy Schalnate5a37791996-06-05 15:50:50 -05002583 /* set up the zlib input buffer */
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06002584
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002585 png_ptr->zstream.next_in = filtered_row;
2586 png_ptr->zstream.avail_in = (uInt)png_ptr->row_info.rowbytes + 1;
Guy Schalnate5a37791996-06-05 15:50:50 -05002587 /* repeat until we have compressed all the data */
2588 do
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002589 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002590 int ret; /* return of zlib */
Guy Schalnat0d580581995-07-20 02:43:20 -05002591
Guy Schalnate5a37791996-06-05 15:50:50 -05002592 /* compress the data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002593 ret = deflate(&png_ptr->zstream, Z_NO_FLUSH);
Guy Schalnate5a37791996-06-05 15:50:50 -05002594 /* check for compression errors */
2595 if (ret != Z_OK)
2596 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05002597 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002598 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnate5a37791996-06-05 15:50:50 -05002599 else
2600 png_error(png_ptr, "zlib error");
2601 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002602
Guy Schalnate5a37791996-06-05 15:50:50 -05002603 /* see if it is time to write another IDAT */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002604 if (!(png_ptr->zstream.avail_out))
Guy Schalnate5a37791996-06-05 15:50:50 -05002605 {
2606 /* write the IDAT and reset the zlib output buffer */
2607 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002608 png_ptr->zstream.next_out = png_ptr->zbuf;
2609 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnate5a37791996-06-05 15:50:50 -05002610 }
2611 /* repeat until all data has been compressed */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002612 } while (png_ptr->zstream.avail_in);
Guy Schalnate5a37791996-06-05 15:50:50 -05002613
Guy Schalnatc21f90c1996-06-17 16:24:45 -05002614 /* swap the current and previous rows */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002615 if (png_ptr->prev_row != NULL)
Guy Schalnatc21f90c1996-06-17 16:24:45 -05002616 {
2617 png_bytep tptr;
2618
2619 tptr = png_ptr->prev_row;
2620 png_ptr->prev_row = png_ptr->row_buf;
2621 png_ptr->row_buf = tptr;
2622 }
2623
Guy Schalnate5a37791996-06-05 15:50:50 -05002624 /* finish row - updates counters and flushes zlib if last row */
2625 png_write_finish_row(png_ptr);
2626
2627#if defined(PNG_WRITE_FLUSH_SUPPORTED)
2628 png_ptr->flush_rows++;
2629
2630 if (png_ptr->flush_dist > 0 &&
2631 png_ptr->flush_rows >= png_ptr->flush_dist)
Guy Schalnat0d580581995-07-20 02:43:20 -05002632 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002633 png_write_flush(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002634 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002635#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002636}
Glenn Randers-Pehrson19095602001-03-14 07:08:39 -06002637#endif /* PNG_WRITE_SUPPORTED */