blob: fb702c986c55cfc229591f16f8056db9292c7b2a [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-Pehrson32fc5ce2000-07-24 06:34:14 -05004 * libpng 1.0.8 - July 24, 2000
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06005 * For conditions of distribution and use, see copyright notice in png.h
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06006 * Copyright (c) 1998, 1999, 2000 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"
13
Andreas Dilger47a0c421997-05-16 02:46:07 -050014/* Place a 32-bit number into a buffer in PNG byte order. We work
15 * with unsigned numbers for convenience, although one supported
16 * ancillary chunk uses signed (two's complement) numbers.
17 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050018void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -060019png_save_uint_32(png_bytep buf, png_uint_32 i)
Guy Schalnat0d580581995-07-20 02:43:20 -050020{
21 buf[0] = (png_byte)((i >> 24) & 0xff);
22 buf[1] = (png_byte)((i >> 16) & 0xff);
23 buf[2] = (png_byte)((i >> 8) & 0xff);
24 buf[3] = (png_byte)(i & 0xff);
25}
26
Andreas Dilger47a0c421997-05-16 02:46:07 -050027#if defined(PNG_WRITE_pCAL_SUPPORTED)
28/* The png_save_int_32 function assumes integers are stored in two's
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060029 * complement format. If this isn't the case, then this routine needs to
30 * be modified to write data in two's complement format.
31 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050032void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -050033png_save_int_32(png_bytep buf, png_int_32 i)
34{
35 buf[0] = (png_byte)((i >> 24) & 0xff);
36 buf[1] = (png_byte)((i >> 16) & 0xff);
37 buf[2] = (png_byte)((i >> 8) & 0xff);
38 buf[3] = (png_byte)(i & 0xff);
39}
40#endif
41
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060042/* Place a 16-bit number into a buffer in PNG byte order.
43 * The parameter is declared unsigned int, not png_uint_16,
44 * just to avoid potential problems on pre-ANSI C compilers.
45 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050046void /* PRIVATE */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060047png_save_uint_16(png_bytep buf, unsigned int i)
Guy Schalnat0d580581995-07-20 02:43:20 -050048{
49 buf[0] = (png_byte)((i >> 8) & 0xff);
50 buf[1] = (png_byte)(i & 0xff);
51}
52
Andreas Dilger47a0c421997-05-16 02:46:07 -050053/* Write a PNG chunk all at once. The type is an array of ASCII characters
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060054 * representing the chunk name. The array must be at least 4 bytes in
55 * length, and does not need to be null terminated. To be safe, pass the
56 * pre-defined chunk names here, and if you need a new one, define it
57 * where the others are defined. The length is the length of the data.
58 * All the data must be present. If that is not possible, use the
59 * png_write_chunk_start(), png_write_chunk_data(), and png_write_chunk_end()
60 * functions instead.
61 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050062void PNGAPI
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060063png_write_chunk(png_structp png_ptr, png_bytep chunk_name,
Andreas Dilger47a0c421997-05-16 02:46:07 -050064 png_bytep data, png_size_t length)
Guy Schalnat0d580581995-07-20 02:43:20 -050065{
Andreas Dilger47a0c421997-05-16 02:46:07 -050066 png_write_chunk_start(png_ptr, chunk_name, (png_uint_32)length);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060067 png_write_chunk_data(png_ptr, data, length);
68 png_write_chunk_end(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -050069}
70
Andreas Dilger47a0c421997-05-16 02:46:07 -050071/* Write the start of a PNG chunk. The type is the chunk type.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060072 * The total_length is the sum of the lengths of all the data you will be
73 * passing in png_write_chunk_data().
74 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050075void PNGAPI
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060076png_write_chunk_start(png_structp png_ptr, png_bytep chunk_name,
77 png_uint_32 length)
Guy Schalnat0d580581995-07-20 02:43:20 -050078{
Andreas Dilger47a0c421997-05-16 02:46:07 -050079 png_byte buf[4];
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -050080 png_debug2(0, "Writing %s chunk (%lu bytes)\n", chunk_name, length);
Andreas Dilger47a0c421997-05-16 02:46:07 -050081
Guy Schalnat0d580581995-07-20 02:43:20 -050082 /* write the length */
Andreas Dilger47a0c421997-05-16 02:46:07 -050083 png_save_uint_32(buf, length);
84 png_write_data(png_ptr, buf, (png_size_t)4);
85
Guy Schalnat0d580581995-07-20 02:43:20 -050086 /* write the chunk name */
Andreas Dilger47a0c421997-05-16 02:46:07 -050087 png_write_data(png_ptr, chunk_name, (png_size_t)4);
Guy Schalnat0d580581995-07-20 02:43:20 -050088 /* reset the crc and run it over the chunk name */
89 png_reset_crc(png_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -050090 png_calculate_crc(png_ptr, chunk_name, (png_size_t)4);
Guy Schalnat0d580581995-07-20 02:43:20 -050091}
92
Andreas Dilger47a0c421997-05-16 02:46:07 -050093/* Write the data of a PNG chunk started with png_write_chunk_start().
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060094 * Note that multiple calls to this function are allowed, and that the
95 * sum of the lengths from these calls *must* add up to the total_length
96 * given to png_write_chunk_start().
97 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050098void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -050099png_write_chunk_data(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnat0d580581995-07-20 02:43:20 -0500100{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500101 /* write the data, and run the CRC over it */
102 if (data != NULL && length > 0)
Guy Schalnat0d580581995-07-20 02:43:20 -0500103 {
104 png_calculate_crc(png_ptr, data, length);
Guy Schalnat6d764711995-12-19 03:22:19 -0600105 png_write_data(png_ptr, data, length);
Guy Schalnat0d580581995-07-20 02:43:20 -0500106 }
107}
108
Andreas Dilger47a0c421997-05-16 02:46:07 -0500109/* Finish a chunk started with png_write_chunk_start(). */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500110void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600111png_write_chunk_end(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500112{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500113 png_byte buf[4];
114
Guy Schalnat0d580581995-07-20 02:43:20 -0500115 /* write the crc */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500116 png_save_uint_32(buf, png_ptr->crc);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500117
118 png_write_data(png_ptr, buf, (png_size_t)4);
Guy Schalnat0d580581995-07-20 02:43:20 -0500119}
120
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600121/* Simple function to write the signature. If we have already written
122 * the magic bytes of the signature, or more likely, the PNG stream is
123 * being embedded into another stream and doesn't need its own signature,
124 * we should call png_set_sig_bytes() to tell libpng how many of the
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600125 * bytes have already been written.
126 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500127void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600128png_write_sig(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500129{
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600130 png_byte png_signature[8] = {137, 80, 78, 71, 13, 10, 26, 10};
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600131 /* write the rest of the 8 byte signature */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600132 png_write_data(png_ptr, &png_signature[png_ptr->sig_bytes],
Andreas Dilger47a0c421997-05-16 02:46:07 -0500133 (png_size_t)8 - png_ptr->sig_bytes);
Guy Schalnat0d580581995-07-20 02:43:20 -0500134}
135
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600136#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_iCCP_SUPPORTED)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600137/*
138 * This pair of functions encapsulates the operation of (a) compressing a
139 * text string, and (b) issuing it later as a series of chunk data writes.
140 * The compression_state structure is shared context for these functions
141 * set up by the caller in order to make the whole mess thread-safe.
142 */
143
144typedef struct
145{
146 char *input; /* the uncompressed input data */
147 int input_len; /* its length */
148 int num_output_ptr; /* number of output pointers used */
149 int max_output_ptr; /* size of output_ptr */
150 png_charpp output_ptr; /* array of pointers to output */
151} compression_state;
152
153/* compress given text into storage in the png_ptr structure */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500154static int /* PRIVATE */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600155png_text_compress(png_structp png_ptr,
156 png_charp text, png_size_t text_len, int compression,
157 compression_state *comp)
158{
159 int ret;
160
161 comp->num_output_ptr = comp->max_output_ptr = 0;
162 comp->output_ptr = NULL;
163 comp->input = NULL;
164
165 /* we may just want to pass the text right through */
166 if (compression == PNG_TEXT_COMPRESSION_NONE)
167 {
168 comp->input = text;
169 comp->input_len = text_len;
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500170 return((int)text_len);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600171 }
172
173 if (compression >= PNG_TEXT_COMPRESSION_LAST)
174 {
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500175#if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600176 char msg[50];
177 sprintf(msg, "Unknown compression type %d", compression);
178 png_warning(png_ptr, msg);
179#else
180 png_warning(png_ptr, "Unknown compression type");
181#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600182 }
183
184 /* We can't write the chunk until we find out how much data we have,
185 * which means we need to run the compressor first and save the
186 * output. This shouldn't be a problem, as the vast majority of
187 * comments should be reasonable, but we will set up an array of
188 * malloc'd pointers to be sure.
189 *
190 * If we knew the application was well behaved, we could simplify this
191 * greatly by assuming we can always malloc an output buffer large
192 * enough to hold the compressed text ((1001 * text_len / 1000) + 12)
193 * and malloc this directly. The only time this would be a bad idea is
194 * if we can't malloc more than 64K and we have 64K of random input
195 * data, or if the input string is incredibly large (although this
196 * wouldn't cause a failure, just a slowdown due to swapping).
197 */
198
199 /* set up the compression buffers */
200 png_ptr->zstream.avail_in = (uInt)text_len;
201 png_ptr->zstream.next_in = (Bytef *)text;
202 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
203 png_ptr->zstream.next_out = (Bytef *)png_ptr->zbuf;
204
205 /* this is the same compression loop as in png_write_row() */
206 do
207 {
208 /* compress the data */
209 ret = deflate(&png_ptr->zstream, Z_NO_FLUSH);
210 if (ret != Z_OK)
211 {
212 /* error */
213 if (png_ptr->zstream.msg != NULL)
214 png_error(png_ptr, png_ptr->zstream.msg);
215 else
216 png_error(png_ptr, "zlib error");
217 }
218 /* check to see if we need more room */
219 if (!png_ptr->zstream.avail_out && png_ptr->zstream.avail_in)
220 {
221 /* make sure the output array has room */
222 if (comp->num_output_ptr >= comp->max_output_ptr)
223 {
224 int old_max;
225
226 old_max = comp->max_output_ptr;
227 comp->max_output_ptr = comp->num_output_ptr + 4;
228 if (comp->output_ptr != NULL)
229 {
230 png_charpp old_ptr;
231
232 old_ptr = comp->output_ptr;
233 comp->output_ptr = (png_charpp)png_malloc(png_ptr,
234 (png_uint_32)(comp->max_output_ptr * sizeof (png_charpp)));
235 png_memcpy(comp->output_ptr, old_ptr,
236 old_max * sizeof (png_charp));
237 png_free(png_ptr, old_ptr);
238 }
239 else
240 comp->output_ptr = (png_charpp)png_malloc(png_ptr,
241 (png_uint_32)(comp->max_output_ptr * sizeof (png_charp)));
242 }
243
244 /* save the data */
245 comp->output_ptr[comp->num_output_ptr] = (png_charp)png_malloc(png_ptr,
246 (png_uint_32)png_ptr->zbuf_size);
247 png_memcpy(comp->output_ptr[comp->num_output_ptr], png_ptr->zbuf,
248 png_ptr->zbuf_size);
249 comp->num_output_ptr++;
250
251 /* and reset the buffer */
252 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
253 png_ptr->zstream.next_out = png_ptr->zbuf;
254 }
255 /* continue until we don't have any more to compress */
256 } while (png_ptr->zstream.avail_in);
257
258 /* finish the compression */
259 do
260 {
261 /* tell zlib we are finished */
262 ret = deflate(&png_ptr->zstream, Z_FINISH);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500263
264 if (ret == Z_OK)
265 {
266 /* check to see if we need more room */
267 if (!(png_ptr->zstream.avail_out))
268 {
269 /* check to make sure our output array has room */
270 if (comp->num_output_ptr >= comp->max_output_ptr)
271 {
272 int old_max;
273
274 old_max = comp->max_output_ptr;
275 comp->max_output_ptr = comp->num_output_ptr + 4;
276 if (comp->output_ptr != NULL)
277 {
278 png_charpp old_ptr;
279
280 old_ptr = comp->output_ptr;
281 /* This could be optimized to realloc() */
282 comp->output_ptr = (png_charpp)png_malloc(png_ptr,
283 (png_uint_32)(comp->max_output_ptr * sizeof (png_charpp)));
284 png_memcpy(comp->output_ptr, old_ptr,
285 old_max * sizeof (png_charp));
286 png_free(png_ptr, old_ptr);
287 }
288 else
289 comp->output_ptr = (png_charpp)png_malloc(png_ptr,
290 (png_uint_32)(comp->max_output_ptr * sizeof (png_charp)));
291 }
292
293 /* save off the data */
294 comp->output_ptr[comp->num_output_ptr] =
295 (png_charp)png_malloc(png_ptr, (png_uint_32)png_ptr->zbuf_size);
296 png_memcpy(comp->output_ptr[comp->num_output_ptr], png_ptr->zbuf,
297 png_ptr->zbuf_size);
298 comp->num_output_ptr++;
299
300 /* and reset the buffer pointers */
301 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
302 png_ptr->zstream.next_out = png_ptr->zbuf;
303 }
304 }
305 else if (ret != Z_STREAM_END)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600306 {
307 /* we got an error */
308 if (png_ptr->zstream.msg != NULL)
309 png_error(png_ptr, png_ptr->zstream.msg);
310 else
311 png_error(png_ptr, "zlib error");
312 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600313 } while (ret != Z_STREAM_END);
314
315 /* text length is number of buffers plus last buffer */
316 text_len = png_ptr->zbuf_size * comp->num_output_ptr;
317 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size)
318 text_len += png_ptr->zbuf_size - (png_size_t)png_ptr->zstream.avail_out;
319
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500320 return((int)text_len);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600321}
322
323/* ship the compressed text out via chunk writes */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500324static void /* PRIVATE */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600325png_write_compressed_data_out(png_structp png_ptr, compression_state *comp)
326{
327 int i;
328
329 /* handle the no-compression case */
330 if (comp->input)
331 {
332 png_write_chunk_data(png_ptr, (png_bytep)comp->input, comp->input_len);
333 return;
334 }
335
336 /* write saved output buffers, if any */
337 for (i = 0; i < comp->num_output_ptr; i++)
338 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600339 png_write_chunk_data(png_ptr,(png_bytep)comp->output_ptr[i],
340 png_ptr->zbuf_size);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600341 png_free(png_ptr, comp->output_ptr[i]);
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -0500342 comp->output_ptr[i]=NULL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600343 }
344 if (comp->max_output_ptr != 0)
345 png_free(png_ptr, comp->output_ptr);
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -0500346 comp->output_ptr=NULL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600347 /* write anything left in zbuf */
348 if (png_ptr->zstream.avail_out < (png_uint_32)png_ptr->zbuf_size)
349 png_write_chunk_data(png_ptr, png_ptr->zbuf,
350 png_ptr->zbuf_size - png_ptr->zstream.avail_out);
351
352 /* reset zlib for another zTXt/iTXt or the image data */
353 deflateReset(&png_ptr->zstream);
354
355}
356#endif
357
Guy Schalnat0d580581995-07-20 02:43:20 -0500358/* Write the IHDR chunk, and update the png_struct with the necessary
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600359 * information. Note that the rest of this code depends upon this
360 * information being correct.
361 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500362void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600363png_write_IHDR(png_structp png_ptr, png_uint_32 width, png_uint_32 height,
Guy Schalnat0d580581995-07-20 02:43:20 -0500364 int bit_depth, int color_type, int compression_type, int filter_type,
365 int interlace_type)
366{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600367#ifdef PNG_USE_LOCAL_ARRAYS
368 PNG_IHDR;
369#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500370 png_byte buf[13]; /* buffer to store the IHDR info */
371
Andreas Dilger47a0c421997-05-16 02:46:07 -0500372 png_debug(1, "in png_write_IHDR\n");
Guy Schalnate5a37791996-06-05 15:50:50 -0500373 /* Check that we have valid input data from the application info */
374 switch (color_type)
375 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500376 case PNG_COLOR_TYPE_GRAY:
Guy Schalnate5a37791996-06-05 15:50:50 -0500377 switch (bit_depth)
378 {
379 case 1:
380 case 2:
381 case 4:
382 case 8:
383 case 16: png_ptr->channels = 1; break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500384 default: png_error(png_ptr,"Invalid bit depth for grayscale image");
Guy Schalnate5a37791996-06-05 15:50:50 -0500385 }
386 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500387 case PNG_COLOR_TYPE_RGB:
Guy Schalnate5a37791996-06-05 15:50:50 -0500388 if (bit_depth != 8 && bit_depth != 16)
389 png_error(png_ptr, "Invalid bit depth for RGB image");
390 png_ptr->channels = 3;
391 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500392 case PNG_COLOR_TYPE_PALETTE:
Guy Schalnate5a37791996-06-05 15:50:50 -0500393 switch (bit_depth)
394 {
395 case 1:
396 case 2:
397 case 4:
398 case 8: png_ptr->channels = 1; break;
399 default: png_error(png_ptr, "Invalid bit depth for paletted image");
400 }
401 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500402 case PNG_COLOR_TYPE_GRAY_ALPHA:
Guy Schalnate5a37791996-06-05 15:50:50 -0500403 if (bit_depth != 8 && bit_depth != 16)
404 png_error(png_ptr, "Invalid bit depth for grayscale+alpha image");
405 png_ptr->channels = 2;
406 break;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500407 case PNG_COLOR_TYPE_RGB_ALPHA:
Guy Schalnate5a37791996-06-05 15:50:50 -0500408 if (bit_depth != 8 && bit_depth != 16)
409 png_error(png_ptr, "Invalid bit depth for RGBA image");
410 png_ptr->channels = 4;
411 break;
412 default:
413 png_error(png_ptr, "Invalid image color type specified");
414 }
415
Andreas Dilger47a0c421997-05-16 02:46:07 -0500416 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
Guy Schalnate5a37791996-06-05 15:50:50 -0500417 {
418 png_warning(png_ptr, "Invalid compression type specified");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500419 compression_type = PNG_COMPRESSION_TYPE_BASE;
Guy Schalnate5a37791996-06-05 15:50:50 -0500420 }
421
Andreas Dilger47a0c421997-05-16 02:46:07 -0500422 if (filter_type != PNG_FILTER_TYPE_BASE)
Guy Schalnate5a37791996-06-05 15:50:50 -0500423 {
424 png_warning(png_ptr, "Invalid filter type specified");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500425 filter_type = PNG_FILTER_TYPE_BASE;
Guy Schalnate5a37791996-06-05 15:50:50 -0500426 }
427
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600428#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500429 if (interlace_type != PNG_INTERLACE_NONE &&
430 interlace_type != PNG_INTERLACE_ADAM7)
Guy Schalnate5a37791996-06-05 15:50:50 -0500431 {
432 png_warning(png_ptr, "Invalid interlace type specified");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500433 interlace_type = PNG_INTERLACE_ADAM7;
Guy Schalnate5a37791996-06-05 15:50:50 -0500434 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600435#else
436 interlace_type=PNG_INTERLACE_NONE;
437#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500438
439 /* save off the relevent information */
440 png_ptr->bit_depth = (png_byte)bit_depth;
441 png_ptr->color_type = (png_byte)color_type;
442 png_ptr->interlaced = (png_byte)interlace_type;
443 png_ptr->width = width;
444 png_ptr->height = height;
445
446 png_ptr->pixel_depth = (png_byte)(bit_depth * png_ptr->channels);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500447 png_ptr->rowbytes = ((width * (png_size_t)png_ptr->pixel_depth + 7) >> 3);
Guy Schalnate5a37791996-06-05 15:50:50 -0500448 /* set the usr info, so any transformations can modify it */
449 png_ptr->usr_width = png_ptr->width;
450 png_ptr->usr_bit_depth = png_ptr->bit_depth;
451 png_ptr->usr_channels = png_ptr->channels;
452
Guy Schalnat0d580581995-07-20 02:43:20 -0500453 /* pack the header information into the buffer */
454 png_save_uint_32(buf, width);
455 png_save_uint_32(buf + 4, height);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600456 buf[8] = (png_byte)bit_depth;
457 buf[9] = (png_byte)color_type;
458 buf[10] = (png_byte)compression_type;
459 buf[11] = (png_byte)filter_type;
460 buf[12] = (png_byte)interlace_type;
Guy Schalnat0d580581995-07-20 02:43:20 -0500461
462 /* write the chunk */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600463 png_write_chunk(png_ptr, (png_bytep)png_IHDR, buf, (png_size_t)13);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500464
Andreas Dilger47a0c421997-05-16 02:46:07 -0500465 /* initialize zlib with PNG info */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600466 png_ptr->zstream.zalloc = png_zalloc;
467 png_ptr->zstream.zfree = png_zfree;
468 png_ptr->zstream.opaque = (voidpf)png_ptr;
Guy Schalnate5a37791996-06-05 15:50:50 -0500469 if (!(png_ptr->do_filter))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500470 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500471 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE ||
472 png_ptr->bit_depth < 8)
Guy Schalnate5a37791996-06-05 15:50:50 -0500473 png_ptr->do_filter = PNG_FILTER_NONE;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500474 else
Guy Schalnate5a37791996-06-05 15:50:50 -0500475 png_ptr->do_filter = PNG_ALL_FILTERS;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500476 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500477 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_STRATEGY))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500478 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500479 if (png_ptr->do_filter != PNG_FILTER_NONE)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500480 png_ptr->zlib_strategy = Z_FILTERED;
481 else
482 png_ptr->zlib_strategy = Z_DEFAULT_STRATEGY;
483 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500484 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_LEVEL))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500485 png_ptr->zlib_level = Z_DEFAULT_COMPRESSION;
Guy Schalnate5a37791996-06-05 15:50:50 -0500486 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500487 png_ptr->zlib_mem_level = 8;
Guy Schalnate5a37791996-06-05 15:50:50 -0500488 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500489 png_ptr->zlib_window_bits = 15;
Guy Schalnate5a37791996-06-05 15:50:50 -0500490 if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_METHOD))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500491 png_ptr->zlib_method = 8;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600492 deflateInit2(&png_ptr->zstream, png_ptr->zlib_level,
Andreas Dilger47a0c421997-05-16 02:46:07 -0500493 png_ptr->zlib_method, png_ptr->zlib_window_bits,
494 png_ptr->zlib_mem_level, png_ptr->zlib_strategy);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600495 png_ptr->zstream.next_out = png_ptr->zbuf;
496 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500497
Guy Schalnate5a37791996-06-05 15:50:50 -0500498 png_ptr->mode = PNG_HAVE_IHDR;
Guy Schalnat0d580581995-07-20 02:43:20 -0500499}
500
501/* write the palette. We are careful not to trust png_color to be in the
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -0500502 * correct order for PNG, so people can redefine it to any convenient
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600503 * structure.
504 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500505void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500506png_write_PLTE(png_structp png_ptr, png_colorp palette, png_uint_32 num_pal)
Guy Schalnat0d580581995-07-20 02:43:20 -0500507{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600508#ifdef PNG_USE_LOCAL_ARRAYS
509 PNG_PLTE;
510#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500511 png_uint_32 i;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600512 png_colorp pal_ptr;
Guy Schalnat0d580581995-07-20 02:43:20 -0500513 png_byte buf[3];
514
Andreas Dilger47a0c421997-05-16 02:46:07 -0500515 png_debug(1, "in png_write_PLTE\n");
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500516 if ((
517#ifdef PNG_WRITE_EMPTY_PLTE_SUPPORTED
518 !png_ptr->empty_plte_permitted &&
519#endif
520 num_pal == 0) || num_pal > 256)
521 {
522 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
523 {
524 png_error(png_ptr, "Invalid number of colors in palette");
525 }
526 else
527 {
528 png_warning(png_ptr, "Invalid number of colors in palette");
529 return;
530 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500531 }
532
Andreas Dilger47a0c421997-05-16 02:46:07 -0500533 png_ptr->num_palette = (png_uint_16)num_pal;
534 png_debug1(3, "num_palette = %d\n", png_ptr->num_palette);
Guy Schalnate5a37791996-06-05 15:50:50 -0500535
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600536 png_write_chunk_start(png_ptr, (png_bytep)png_PLTE, num_pal * 3);
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500537#ifndef PNG_NO_POINTER_INDEXING
Andreas Dilger47a0c421997-05-16 02:46:07 -0500538 for (i = 0, pal_ptr = palette; i < num_pal; i++, pal_ptr++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500539 {
540 buf[0] = pal_ptr->red;
541 buf[1] = pal_ptr->green;
542 buf[2] = pal_ptr->blue;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500543 png_write_chunk_data(png_ptr, buf, (png_size_t)3);
Guy Schalnat0d580581995-07-20 02:43:20 -0500544 }
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500545#else
546 /* This is a little slower but some buggy compilers need to do this instead */
547 pal_ptr=palette;
548 for (i = 0; i < num_pal; i++)
549 {
550 buf[0] = pal_ptr[i].red;
551 buf[1] = pal_ptr[i].green;
552 buf[2] = pal_ptr[i].blue;
553 png_write_chunk_data(png_ptr, buf, (png_size_t)3);
554 }
555#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500556 png_write_chunk_end(png_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500557 png_ptr->mode |= PNG_HAVE_PLTE;
Guy Schalnat0d580581995-07-20 02:43:20 -0500558}
559
560/* write an IDAT chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500561void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500562png_write_IDAT(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnat0d580581995-07-20 02:43:20 -0500563{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600564#ifdef PNG_USE_LOCAL_ARRAYS
565 PNG_IDAT;
566#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500567 png_debug(1, "in png_write_IDAT\n");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600568 png_write_chunk(png_ptr, (png_bytep)png_IDAT, data, length);
Guy Schalnate5a37791996-06-05 15:50:50 -0500569 png_ptr->mode |= PNG_HAVE_IDAT;
Guy Schalnat0d580581995-07-20 02:43:20 -0500570}
571
572/* write an IEND chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500573void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600574png_write_IEND(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500575{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600576#ifdef PNG_USE_LOCAL_ARRAYS
577 PNG_IEND;
578#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500579 png_debug(1, "in png_write_IEND\n");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600580 png_write_chunk(png_ptr, (png_bytep)png_IEND, NULL, (png_size_t)0);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600581 png_ptr->mode |= PNG_HAVE_IEND;
Guy Schalnat0d580581995-07-20 02:43:20 -0500582}
583
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500584#if defined(PNG_WRITE_gAMA_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500585/* write a gAMA chunk */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600586#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500587void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500588png_write_gAMA(png_structp png_ptr, double file_gamma)
Guy Schalnat0d580581995-07-20 02:43:20 -0500589{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600590#ifdef PNG_USE_LOCAL_ARRAYS
591 PNG_gAMA;
592#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500593 png_uint_32 igamma;
594 png_byte buf[4];
595
Andreas Dilger47a0c421997-05-16 02:46:07 -0500596 png_debug(1, "in png_write_gAMA\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600597 /* file_gamma is saved in 1/100,000ths */
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600598 igamma = (png_uint_32)(file_gamma * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500599 png_save_uint_32(buf, igamma);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600600 png_write_chunk(png_ptr, (png_bytep)png_gAMA, buf, (png_size_t)4);
Guy Schalnat0d580581995-07-20 02:43:20 -0500601}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500602#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600603#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500604void /* PRIVATE */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600605png_write_gAMA_fixed(png_structp png_ptr, png_fixed_point file_gamma)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600606{
607#ifdef PNG_USE_LOCAL_ARRAYS
608 PNG_gAMA;
609#endif
610 png_byte buf[4];
611
612 png_debug(1, "in png_write_gAMA\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600613 /* file_gamma is saved in 1/100,000ths */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600614 png_save_uint_32(buf, file_gamma);
615 png_write_chunk(png_ptr, (png_bytep)png_gAMA, buf, (png_size_t)4);
616}
617#endif
618#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500619
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600620#if defined(PNG_WRITE_sRGB_SUPPORTED)
621/* write a sRGB chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500622void /* PRIVATE */
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600623png_write_sRGB(png_structp png_ptr, int srgb_intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600624{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600625#ifdef PNG_USE_LOCAL_ARRAYS
626 PNG_sRGB;
627#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600628 png_byte buf[1];
629
630 png_debug(1, "in png_write_sRGB\n");
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600631 if(srgb_intent >= PNG_sRGB_INTENT_LAST)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600632 png_warning(png_ptr,
633 "Invalid sRGB rendering intent specified");
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600634 buf[0]=(png_byte)srgb_intent;
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600635 png_write_chunk(png_ptr, (png_bytep)png_sRGB, buf, (png_size_t)1);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600636}
637#endif
638
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600639#if defined(PNG_WRITE_iCCP_SUPPORTED)
640/* write an iCCP chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500641void /* PRIVATE */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600642png_write_iCCP(png_structp png_ptr, png_charp name, int compression_type,
643 png_charp profile, int profile_len)
644{
645#ifdef PNG_USE_LOCAL_ARRAYS
646 PNG_iCCP;
647#endif
648 png_size_t name_len;
649 png_charp new_name;
650 compression_state comp;
651
652 png_debug(1, "in png_write_iCCP\n");
653 if (name == NULL || (name_len = png_check_keyword(png_ptr, name,
654 &new_name)) == 0)
655 {
656 png_warning(png_ptr, "Empty keyword in iCCP chunk");
657 return;
658 }
659
660 if (compression_type)
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600661 png_warning(png_ptr, "Unknown compression type in iCCP chunk");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600662
Glenn Randers-Pehrson13944802000-06-24 07:42:42 -0500663 if (profile == NULL)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600664 profile_len = 0;
665
666 if (profile_len)
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500667 profile_len = png_text_compress(png_ptr, profile, (png_size_t)profile_len,
668 PNG_TEXT_COMPRESSION_zTXt, &comp);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600669
670 /* make sure we include the NULL after the name and the compression type */
671 png_write_chunk_start(png_ptr, (png_bytep)png_iCCP,
672 (png_uint_32)name_len+profile_len+2);
673 png_write_chunk_data(png_ptr, (png_bytep)new_name, name_len + 2);
674
675 if (profile_len)
676 png_write_compressed_data_out(png_ptr, &comp);
677
678 png_write_chunk_end(png_ptr);
679 png_free(png_ptr, new_name);
680}
681#endif
682
683#if defined(PNG_WRITE_sPLT_SUPPORTED)
684/* write a sPLT chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500685void /* PRIVATE */
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600686png_write_sPLT(png_structp png_ptr, png_sPLT_tp spalette)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600687{
688#ifdef PNG_USE_LOCAL_ARRAYS
689 PNG_sPLT;
690#endif
691 png_size_t name_len;
692 png_charp new_name;
693 png_byte entrybuf[10];
694 int entry_size = (spalette->depth == 8 ? 6 : 10);
695 int palette_size = entry_size * spalette->nentries;
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600696 png_sPLT_entryp ep;
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500697#ifdef PNG_NO_POINTER_INDEXING
698 int i;
699#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600700
701 png_debug(1, "in png_write_sPLT\n");
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600702 if (spalette->name == NULL || (name_len = png_check_keyword(png_ptr,
703 spalette->name, &new_name))==0)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600704 {
705 png_warning(png_ptr, "Empty keyword in sPLT chunk");
706 return;
707 }
708
709 /* make sure we include the NULL after the name */
710 png_write_chunk_start(png_ptr, (png_bytep) png_sPLT,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600711 (png_uint_32)(name_len + 2 + palette_size));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600712 png_write_chunk_data(png_ptr, (png_bytep)new_name, name_len + 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600713 png_write_chunk_data(png_ptr, (png_bytep)&spalette->depth, 1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600714
715 /* loop through each palette entry, writing appropriately */
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500716#ifndef PNG_NO_POINTER_INDEXING
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600717 for (ep = spalette->entries; ep<spalette->entries+spalette->nentries; ep++)
718 {
719 if (spalette->depth == 8)
720 {
721 entrybuf[0] = (png_byte)ep->red;
722 entrybuf[1] = (png_byte)ep->green;
723 entrybuf[2] = (png_byte)ep->blue;
724 entrybuf[3] = (png_byte)ep->alpha;
725 png_save_uint_16(entrybuf + 4, ep->frequency);
726 }
727 else
728 {
729 png_save_uint_16(entrybuf + 0, ep->red);
730 png_save_uint_16(entrybuf + 2, ep->green);
731 png_save_uint_16(entrybuf + 4, ep->blue);
732 png_save_uint_16(entrybuf + 6, ep->alpha);
733 png_save_uint_16(entrybuf + 8, ep->frequency);
734 }
735 png_write_chunk_data(png_ptr, entrybuf, entry_size);
736 }
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500737#else
738 ep=spalette->entries;
739 for (i=0; i>spalette->nentries; i++)
740 {
741 if (spalette->depth == 8)
742 {
743 entrybuf[0] = (png_byte)ep[i].red;
744 entrybuf[1] = (png_byte)ep[i].green;
745 entrybuf[2] = (png_byte)ep[i].blue;
746 entrybuf[3] = (png_byte)ep[i].alpha;
747 png_save_uint_16(entrybuf + 4, ep[i].frequency);
748 }
749 else
750 {
751 png_save_uint_16(entrybuf + 0, ep[i].red);
752 png_save_uint_16(entrybuf + 2, ep[i].green);
753 png_save_uint_16(entrybuf + 4, ep[i].blue);
754 png_save_uint_16(entrybuf + 6, ep[i].alpha);
755 png_save_uint_16(entrybuf + 8, ep[i].frequency);
756 }
757 png_write_chunk_data(png_ptr, entrybuf, entry_size);
758 }
759#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600760
761 png_write_chunk_end(png_ptr);
762 png_free(png_ptr, new_name);
763}
764#endif
765
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500766#if defined(PNG_WRITE_sBIT_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500767/* write the sBIT chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500768void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600769png_write_sBIT(png_structp png_ptr, png_color_8p sbit, int color_type)
Guy Schalnat0d580581995-07-20 02:43:20 -0500770{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600771#ifdef PNG_USE_LOCAL_ARRAYS
772 PNG_sBIT;
773#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500774 png_byte buf[4];
Andreas Dilger47a0c421997-05-16 02:46:07 -0500775 png_size_t size;
Guy Schalnat0d580581995-07-20 02:43:20 -0500776
Andreas Dilger47a0c421997-05-16 02:46:07 -0500777 png_debug(1, "in png_write_sBIT\n");
Guy Schalnat6d764711995-12-19 03:22:19 -0600778 /* make sure we don't depend upon the order of PNG_COLOR_8 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500779 if (color_type & PNG_COLOR_MASK_COLOR)
780 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600781 png_byte maxbits;
Guy Schalnate5a37791996-06-05 15:50:50 -0500782
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -0500783 maxbits = (png_byte)(color_type==PNG_COLOR_TYPE_PALETTE ? 8 :
784 png_ptr->usr_bit_depth);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600785 if (sbit->red == 0 || sbit->red > maxbits ||
786 sbit->green == 0 || sbit->green > maxbits ||
Guy Schalnate5a37791996-06-05 15:50:50 -0500787 sbit->blue == 0 || sbit->blue > maxbits)
788 {
789 png_warning(png_ptr, "Invalid sBIT depth specified");
790 return;
791 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500792 buf[0] = sbit->red;
793 buf[1] = sbit->green;
794 buf[2] = sbit->blue;
795 size = 3;
796 }
797 else
798 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500799 if (sbit->gray == 0 || sbit->gray > png_ptr->usr_bit_depth)
800 {
801 png_warning(png_ptr, "Invalid sBIT depth specified");
802 return;
803 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500804 buf[0] = sbit->gray;
805 size = 1;
806 }
807
808 if (color_type & PNG_COLOR_MASK_ALPHA)
809 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500810 if (sbit->alpha == 0 || sbit->alpha > png_ptr->usr_bit_depth)
811 {
812 png_warning(png_ptr, "Invalid sBIT depth specified");
813 return;
814 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500815 buf[size++] = sbit->alpha;
816 }
817
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600818 png_write_chunk(png_ptr, (png_bytep)png_sBIT, buf, size);
Guy Schalnat0d580581995-07-20 02:43:20 -0500819}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500820#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500821
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500822#if defined(PNG_WRITE_cHRM_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500823/* write the cHRM chunk */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600824#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500825void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500826png_write_cHRM(png_structp png_ptr, double white_x, double white_y,
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600827 double red_x, double red_y, double green_x, double green_y,
828 double blue_x, double blue_y)
Guy Schalnat0d580581995-07-20 02:43:20 -0500829{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600830#ifdef PNG_USE_LOCAL_ARRAYS
831 PNG_cHRM;
832#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500833 png_byte buf[32];
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600834 png_uint_32 itemp;
Guy Schalnat0d580581995-07-20 02:43:20 -0500835
Andreas Dilger47a0c421997-05-16 02:46:07 -0500836 png_debug(1, "in png_write_cHRM\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600837 /* each value is saved in 1/100,000ths */
Guy Schalnate5a37791996-06-05 15:50:50 -0500838 if (white_x < 0 || white_x > 0.8 || white_y < 0 || white_y > 0.8 ||
839 white_x + white_y > 1.0)
840 {
841 png_warning(png_ptr, "Invalid cHRM white point specified");
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500842#if !defined(PNG_NO_CONSOLE_IO)
843 fprintf(stderr,"white_x=%f, white_y=%f\n",white_x, white_y);
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -0600844#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500845 return;
846 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600847 itemp = (png_uint_32)(white_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500848 png_save_uint_32(buf, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600849 itemp = (png_uint_32)(white_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500850 png_save_uint_32(buf + 4, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500851
852 if (red_x < 0 || red_x > 0.8 || red_y < 0 || red_y > 0.8 ||
853 red_x + red_y > 1.0)
854 {
855 png_warning(png_ptr, "Invalid cHRM red point specified");
856 return;
857 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600858 itemp = (png_uint_32)(red_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500859 png_save_uint_32(buf + 8, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600860 itemp = (png_uint_32)(red_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500861 png_save_uint_32(buf + 12, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500862
863 if (green_x < 0 || green_x > 0.8 || green_y < 0 || green_y > 0.8 ||
864 green_x + green_y > 1.0)
865 {
866 png_warning(png_ptr, "Invalid cHRM green point specified");
867 return;
868 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600869 itemp = (png_uint_32)(green_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500870 png_save_uint_32(buf + 16, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600871 itemp = (png_uint_32)(green_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500872 png_save_uint_32(buf + 20, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500873
874 if (blue_x < 0 || blue_x > 0.8 || blue_y < 0 || blue_y > 0.8 ||
875 blue_x + blue_y > 1.0)
876 {
877 png_warning(png_ptr, "Invalid cHRM blue point specified");
878 return;
879 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600880 itemp = (png_uint_32)(blue_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500881 png_save_uint_32(buf + 24, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600882 itemp = (png_uint_32)(blue_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500883 png_save_uint_32(buf + 28, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500884
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600885 png_write_chunk(png_ptr, (png_bytep)png_cHRM, buf, (png_size_t)32);
Guy Schalnat0d580581995-07-20 02:43:20 -0500886}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500887#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600888#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500889void /* PRIVATE */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600890png_write_cHRM_fixed(png_structp png_ptr, png_fixed_point white_x,
891 png_fixed_point white_y, png_fixed_point red_x, png_fixed_point red_y,
892 png_fixed_point green_x, png_fixed_point green_y, png_fixed_point blue_x,
893 png_fixed_point blue_y)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600894{
895#ifdef PNG_USE_LOCAL_ARRAYS
896 PNG_cHRM;
897#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600898 png_byte buf[32];
899
900 png_debug(1, "in png_write_cHRM\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600901 /* each value is saved in 1/100,000ths */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600902 if (white_x > 80000L || white_y > 80000L || white_x + white_y > 100000L)
903 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600904 png_warning(png_ptr, "Invalid fixed cHRM white point specified");
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500905#if !defined(PNG_NO_CONSOLE_IO)
906 fprintf(stderr,"white_x=%ld, white_y=%ld\n",white_x, white_y);
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -0600907#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600908 return;
909 }
910 png_save_uint_32(buf, white_x);
911 png_save_uint_32(buf + 4, white_y);
912
913 if (red_x > 80000L || red_y > 80000L || red_x + red_y > 100000L)
914 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600915 png_warning(png_ptr, "Invalid cHRM fixed red point specified");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600916 return;
917 }
918 png_save_uint_32(buf + 8, red_x);
919 png_save_uint_32(buf + 12, red_y);
920
921 if (green_x > 80000L || green_y > 80000L || green_x + green_y > 100000L)
922 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600923 png_warning(png_ptr, "Invalid fixed cHRM green point specified");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600924 return;
925 }
926 png_save_uint_32(buf + 16, green_x);
927 png_save_uint_32(buf + 20, green_y);
928
929 if (blue_x > 80000L || blue_y > 80000L || blue_x + blue_y > 100000L)
930 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600931 png_warning(png_ptr, "Invalid fixed cHRM blue point specified");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600932 return;
933 }
934 png_save_uint_32(buf + 24, blue_x);
935 png_save_uint_32(buf + 28, blue_y);
936
937 png_write_chunk(png_ptr, (png_bytep)png_cHRM, buf, (png_size_t)32);
938}
939#endif
940#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500941
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500942#if defined(PNG_WRITE_tRNS_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500943/* write the tRNS chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500944void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600945png_write_tRNS(png_structp png_ptr, png_bytep trans, png_color_16p tran,
Guy Schalnat0d580581995-07-20 02:43:20 -0500946 int num_trans, int color_type)
947{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600948#ifdef PNG_USE_LOCAL_ARRAYS
949 PNG_tRNS;
950#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500951 png_byte buf[6];
952
Andreas Dilger47a0c421997-05-16 02:46:07 -0500953 png_debug(1, "in png_write_tRNS\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500954 if (color_type == PNG_COLOR_TYPE_PALETTE)
955 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600956 if (num_trans <= 0 || num_trans > (int)png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -0500957 {
958 png_warning(png_ptr,"Invalid number of transparent colors specified");
959 return;
960 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500961 /* write the chunk out as it is */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600962 png_write_chunk(png_ptr, (png_bytep)png_tRNS, trans, (png_size_t)num_trans);
Guy Schalnat0d580581995-07-20 02:43:20 -0500963 }
964 else if (color_type == PNG_COLOR_TYPE_GRAY)
965 {
966 /* one 16 bit value */
967 png_save_uint_16(buf, tran->gray);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600968 png_write_chunk(png_ptr, (png_bytep)png_tRNS, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -0500969 }
970 else if (color_type == PNG_COLOR_TYPE_RGB)
971 {
972 /* three 16 bit values */
973 png_save_uint_16(buf, tran->red);
974 png_save_uint_16(buf + 2, tran->green);
975 png_save_uint_16(buf + 4, tran->blue);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600976 png_write_chunk(png_ptr, (png_bytep)png_tRNS, buf, (png_size_t)6);
Guy Schalnat0d580581995-07-20 02:43:20 -0500977 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500978 else
979 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600980 png_warning(png_ptr, "Can't write tRNS with an alpha channel");
Guy Schalnate5a37791996-06-05 15:50:50 -0500981 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500982}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500983#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500984
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500985#if defined(PNG_WRITE_bKGD_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500986/* write the background chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500987void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600988png_write_bKGD(png_structp png_ptr, png_color_16p back, int color_type)
Guy Schalnat0d580581995-07-20 02:43:20 -0500989{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600990#ifdef PNG_USE_LOCAL_ARRAYS
991 PNG_bKGD;
992#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500993 png_byte buf[6];
994
Andreas Dilger47a0c421997-05-16 02:46:07 -0500995 png_debug(1, "in png_write_bKGD\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500996 if (color_type == PNG_COLOR_TYPE_PALETTE)
997 {
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500998 if (
999#ifdef PNG_WRITE_EMPTY_PLTE_SUPPORTED
1000 (!png_ptr->empty_plte_permitted ||
1001 (png_ptr->empty_plte_permitted && png_ptr->num_palette)) &&
1002#endif
1003 back->index > png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -05001004 {
1005 png_warning(png_ptr, "Invalid background palette index");
1006 return;
1007 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001008 buf[0] = back->index;
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001009 png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)1);
Guy Schalnat0d580581995-07-20 02:43:20 -05001010 }
1011 else if (color_type & PNG_COLOR_MASK_COLOR)
1012 {
1013 png_save_uint_16(buf, back->red);
1014 png_save_uint_16(buf + 2, back->green);
1015 png_save_uint_16(buf + 4, back->blue);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001016 png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)6);
Guy Schalnat0d580581995-07-20 02:43:20 -05001017 }
1018 else
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001019 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001020 png_save_uint_16(buf, back->gray);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001021 png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -05001022 }
1023}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001024#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001025
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001026#if defined(PNG_WRITE_hIST_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001027/* write the histogram */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001028void /* PRIVATE */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001029png_write_hIST(png_structp png_ptr, png_uint_16p hist, int num_hist)
Guy Schalnat0d580581995-07-20 02:43:20 -05001030{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001031#ifdef PNG_USE_LOCAL_ARRAYS
1032 PNG_hIST;
1033#endif
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001034 int i;
Guy Schalnat0d580581995-07-20 02:43:20 -05001035 png_byte buf[3];
1036
Andreas Dilger47a0c421997-05-16 02:46:07 -05001037 png_debug(1, "in png_write_hIST\n");
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001038 if (num_hist > (int)png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -05001039 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001040 png_debug2(3, "num_hist = %d, num_palette = %d\n", num_hist,
1041 png_ptr->num_palette);
Guy Schalnate5a37791996-06-05 15:50:50 -05001042 png_warning(png_ptr, "Invalid number of histogram entries specified");
1043 return;
1044 }
1045
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001046 png_write_chunk_start(png_ptr, (png_bytep)png_hIST, (png_uint_32)(num_hist * 2));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001047 for (i = 0; i < num_hist; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05001048 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001049 png_save_uint_16(buf, hist[i]);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001050 png_write_chunk_data(png_ptr, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -05001051 }
1052 png_write_chunk_end(png_ptr);
1053}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001054#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001055
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001056#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_pCAL_SUPPORTED) || \
1057 defined(PNG_WRITE_iCCP_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001058/* Check that the tEXt or zTXt keyword is valid per PNG 1.0 specification,
1059 * and if invalid, correct the keyword rather than discarding the entire
1060 * chunk. The PNG 1.0 specification requires keywords 1-79 characters in
1061 * length, forbids leading or trailing whitespace, multiple internal spaces,
1062 * and the non-break space (0x80) from ISO 8859-1. Returns keyword length.
Andreas Dilger47a0c421997-05-16 02:46:07 -05001063 *
1064 * The new_key is allocated to hold the corrected keyword and must be freed
1065 * by the calling routine. This avoids problems with trying to write to
1066 * static keywords without having to have duplicate copies of the strings.
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001067 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001068png_size_t /* PRIVATE */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001069png_check_keyword(png_structp png_ptr, png_charp key, png_charpp new_key)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001070{
Andreas Dilger47a0c421997-05-16 02:46:07 -05001071 png_size_t key_len;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001072 png_charp kp, dp;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001073 int kflag;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001074
Andreas Dilger47a0c421997-05-16 02:46:07 -05001075 png_debug(1, "in png_check_keyword\n");
1076 *new_key = NULL;
1077
1078 if (key == NULL || (key_len = png_strlen(key)) == 0)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001079 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001080 png_chunk_warning(png_ptr, "zero length keyword");
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -06001081 return ((png_size_t)0);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001082 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001083
Andreas Dilger47a0c421997-05-16 02:46:07 -05001084 png_debug1(2, "Keyword to be checked is '%s'\n", key);
1085
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001086 *new_key = (png_charp)png_malloc(png_ptr, (png_uint_32)(key_len + 1));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001087
1088 /* Replace non-printing characters with a blank and print a warning */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001089 for (kp = key, dp = *new_key; *kp != '\0'; kp++, dp++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001090 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001091 if (*kp < 0x20 || (*kp > 0x7E && (png_byte)*kp < 0xA1))
Andreas Dilger47a0c421997-05-16 02:46:07 -05001092 {
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -05001093#if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001094 char msg[40];
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001095
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001096 sprintf(msg, "invalid keyword character 0x%02X", *kp);
1097 png_chunk_warning(png_ptr, msg);
1098#else
1099 png_chunk_warning(png_ptr, "invalid character in keyword");
1100#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001101 *dp = ' ';
1102 }
1103 else
1104 {
1105 *dp = *kp;
1106 }
1107 }
1108 *dp = '\0';
1109
1110 /* Remove any trailing white space. */
1111 kp = *new_key + key_len - 1;
1112 if (*kp == ' ')
1113 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001114 png_chunk_warning(png_ptr, "trailing spaces removed from keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001115
1116 while (*kp == ' ')
1117 {
1118 *(kp--) = '\0';
1119 key_len--;
1120 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001121 }
1122
1123 /* Remove any leading white space. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001124 kp = *new_key;
1125 if (*kp == ' ')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001126 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001127 png_chunk_warning(png_ptr, "leading spaces removed from keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001128
1129 while (*kp == ' ')
1130 {
1131 kp++;
1132 key_len--;
1133 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001134 }
1135
Andreas Dilger47a0c421997-05-16 02:46:07 -05001136 png_debug1(2, "Checking for multiple internal spaces in '%s'\n", kp);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001137
Andreas Dilger47a0c421997-05-16 02:46:07 -05001138 /* Remove multiple internal spaces. */
1139 for (kflag = 0, dp = *new_key; *kp != '\0'; kp++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001140 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001141 if (*kp == ' ' && kflag == 0)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001142 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001143 *(dp++) = *kp;
1144 kflag = 1;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001145 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001146 else if (*kp == ' ')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001147 {
1148 key_len--;
1149 }
1150 else
1151 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001152 *(dp++) = *kp;
1153 kflag = 0;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001154 }
1155 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001156 *dp = '\0';
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001157
1158 if (key_len == 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001159 {
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001160 png_free(png_ptr, *new_key);
1161 *new_key=NULL;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001162 png_chunk_warning(png_ptr, "Zero length keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001163 }
1164
1165 if (key_len > 79)
1166 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001167 png_chunk_warning(png_ptr, "keyword length must be 1 - 79 characters");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001168 new_key[79] = '\0';
1169 key_len = 79;
1170 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001171
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -06001172 return (key_len);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001173}
1174#endif
1175
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001176#if defined(PNG_WRITE_tEXt_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001177/* write a tEXt chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001178void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001179png_write_tEXt(png_structp png_ptr, png_charp key, png_charp text,
Andreas Dilger47a0c421997-05-16 02:46:07 -05001180 png_size_t text_len)
Guy Schalnat0d580581995-07-20 02:43:20 -05001181{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001182#ifdef PNG_USE_LOCAL_ARRAYS
1183 PNG_tEXt;
1184#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001185 png_size_t key_len;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001186 png_charp new_key;
Guy Schalnat0d580581995-07-20 02:43:20 -05001187
Andreas Dilger47a0c421997-05-16 02:46:07 -05001188 png_debug(1, "in png_write_tEXt\n");
1189 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
1190 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001191 png_warning(png_ptr, "Empty keyword in tEXt chunk");
Guy Schalnate5a37791996-06-05 15:50:50 -05001192 return;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001193 }
Guy Schalnate5a37791996-06-05 15:50:50 -05001194
Andreas Dilger47a0c421997-05-16 02:46:07 -05001195 if (text == NULL || *text == '\0')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001196 text_len = 0;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001197 else
1198 text_len = png_strlen(text);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001199
1200 /* make sure we include the 0 after the key */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001201 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 -05001202 /*
1203 * We leave it to the application to meet PNG-1.0 requirements on the
1204 * contents of the text. PNG-1.0 through PNG-1.2 discourage the use of
1205 * any non-Latin-1 characters except for NEWLINE. ISO PNG will forbid them.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001206 * The NUL character is forbidden by PNG-1.0 through PNG-1.2 and ISO PNG.
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001207 */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001208 png_write_chunk_data(png_ptr, (png_bytep)new_key, key_len + 1);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001209 if (text_len)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001210 png_write_chunk_data(png_ptr, (png_bytep)text, text_len);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001211
Guy Schalnat0d580581995-07-20 02:43:20 -05001212 png_write_chunk_end(png_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001213 png_free(png_ptr, new_key);
Guy Schalnat0d580581995-07-20 02:43:20 -05001214}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001215#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001216
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001217#if defined(PNG_WRITE_zTXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001218/* write a compressed text chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001219void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001220png_write_zTXt(png_structp png_ptr, png_charp key, png_charp text,
Andreas Dilger47a0c421997-05-16 02:46:07 -05001221 png_size_t text_len, int compression)
Guy Schalnat0d580581995-07-20 02:43:20 -05001222{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001223#ifdef PNG_USE_LOCAL_ARRAYS
1224 PNG_zTXt;
1225#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001226 png_size_t key_len;
Guy Schalnat0d580581995-07-20 02:43:20 -05001227 char buf[1];
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001228 png_charp new_key;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001229 compression_state comp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001230
Andreas Dilger47a0c421997-05-16 02:46:07 -05001231 png_debug(1, "in png_write_zTXt\n");
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001232
Andreas Dilger47a0c421997-05-16 02:46:07 -05001233 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
Guy Schalnate5a37791996-06-05 15:50:50 -05001234 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001235 png_warning(png_ptr, "Empty keyword in zTXt chunk");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001236 return;
Guy Schalnate5a37791996-06-05 15:50:50 -05001237 }
1238
Andreas Dilger47a0c421997-05-16 02:46:07 -05001239 if (text == NULL || *text == '\0' || compression==PNG_TEXT_COMPRESSION_NONE)
1240 {
1241 png_write_tEXt(png_ptr, new_key, text, (png_size_t)0);
1242 png_free(png_ptr, new_key);
1243 return;
1244 }
1245
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001246 text_len = png_strlen(text);
1247
Andreas Dilger47a0c421997-05-16 02:46:07 -05001248 png_free(png_ptr, new_key);
1249
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001250 /* compute the compressed data; do it now for the length */
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001251 text_len = png_text_compress(png_ptr, text, text_len, compression,
1252 &comp);
Guy Schalnat0d580581995-07-20 02:43:20 -05001253
1254 /* write start of chunk */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001255 png_write_chunk_start(png_ptr, (png_bytep)png_zTXt, (png_uint_32)
1256 (key_len+text_len+2));
Guy Schalnat0d580581995-07-20 02:43:20 -05001257 /* write key */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001258 png_write_chunk_data(png_ptr, (png_bytep)key, key_len + 1);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001259 buf[0] = (png_byte)compression;
Guy Schalnat0d580581995-07-20 02:43:20 -05001260 /* write compression */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001261 png_write_chunk_data(png_ptr, (png_bytep)buf, (png_size_t)1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001262 /* write the compressed data */
1263 png_write_compressed_data_out(png_ptr, &comp);
Guy Schalnat0d580581995-07-20 02:43:20 -05001264
Guy Schalnat0d580581995-07-20 02:43:20 -05001265 /* close the chunk */
1266 png_write_chunk_end(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05001267}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001268#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001269
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001270#if defined(PNG_WRITE_iTXt_SUPPORTED)
1271/* write an iTXt chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001272void /* PRIVATE */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001273png_write_iTXt(png_structp png_ptr, int compression, png_charp key,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001274 png_charp lang, png_charp lang_key, png_charp text)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001275{
1276#ifdef PNG_USE_LOCAL_ARRAYS
1277 PNG_iTXt;
1278#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001279 png_size_t lang_len, key_len, lang_key_len, text_len;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001280 png_charp new_lang, new_key;
1281 png_byte cbuf[2];
1282 compression_state comp;
1283
1284 png_debug(1, "in png_write_iTXt\n");
1285
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001286 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
1287 {
1288 png_warning(png_ptr, "Empty keyword in iTXt chunk");
1289 return;
1290 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001291 if (lang == NULL || (lang_len = png_check_keyword(png_ptr, lang,
1292 &new_lang))==0)
1293 {
1294 png_warning(png_ptr, "Empty language field in iTXt chunk");
1295 return;
1296 }
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001297 lang_key_len = png_strlen(lang_key);
1298 text_len = png_strlen(text);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001299
1300 if (text == NULL || *text == '\0')
1301 text_len = 0;
1302
1303 /* compute the compressed data; do it now for the length */
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001304 text_len = png_text_compress(png_ptr, text, text_len, compression-2,
1305 &comp);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001306
1307 /* make sure we include the compression flag, the compression byte,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001308 * and the NULs after the key, lang, and lang_key parts */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001309
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001310 png_write_chunk_start(png_ptr, (png_bytep)png_iTXt,
1311 (png_uint_32)(
1312 5 /* comp byte, comp flag, terminators for key, lang and lang_key */
1313 + key_len
1314 + lang_len
1315 + lang_key_len
1316 + text_len));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001317
1318 /*
1319 * We leave it to the application to meet PNG-1.0 requirements on the
1320 * contents of the text. PNG-1.0 through PNG-1.2 discourage the use of
1321 * any non-Latin-1 characters except for NEWLINE. ISO PNG will forbid them.
1322 * The NUL character is forbidden by PNG-1.0 through PNG-1.2 and ISO PNG.
1323 */
1324 png_write_chunk_data(png_ptr, (png_bytep)new_key, key_len + 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001325
1326 /* set the compression flag */
1327 if (compression == PNG_ITXT_COMPRESSION_NONE || \
1328 compression == PNG_TEXT_COMPRESSION_NONE)
1329 cbuf[0] = 0;
1330 else /* compression == PNG_ITXT_COMPRESSION_zTXt */
1331 cbuf[0] = 1;
1332 /* set the compression method */
1333 cbuf[1] = 0;
1334 png_write_chunk_data(png_ptr, cbuf, 2);
1335
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001336 png_write_chunk_data(png_ptr, (png_bytep)new_lang, lang_len + 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001337 png_write_chunk_data(png_ptr, (png_bytep)lang_key, lang_key_len+1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001338 png_write_chunk_data(png_ptr, '\0', 1);
1339
1340 png_write_compressed_data_out(png_ptr, &comp);
1341
1342 png_write_chunk_end(png_ptr);
1343 png_free(png_ptr, new_key);
1344 png_free(png_ptr, new_lang);
1345}
1346#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001347
1348#if defined(PNG_WRITE_oFFs_SUPPORTED)
1349/* write the oFFs chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001350void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001351png_write_oFFs(png_structp png_ptr, png_uint_32 x_offset,
1352 png_uint_32 y_offset,
1353 int unit_type)
1354{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001355#ifdef PNG_USE_LOCAL_ARRAYS
1356 PNG_oFFs;
1357#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001358 png_byte buf[9];
1359
1360 png_debug(1, "in png_write_oFFs\n");
1361 if (unit_type >= PNG_OFFSET_LAST)
1362 png_warning(png_ptr, "Unrecognized unit type for oFFs chunk");
1363
1364 png_save_uint_32(buf, x_offset);
1365 png_save_uint_32(buf + 4, y_offset);
1366 buf[8] = (png_byte)unit_type;
1367
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001368 png_write_chunk(png_ptr, (png_bytep)png_oFFs, buf, (png_size_t)9);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001369}
1370#endif
1371
1372#if defined(PNG_WRITE_pCAL_SUPPORTED)
Glenn Randers-Pehrsonff9c9472000-07-11 07:12:36 -05001373/* write the pCAL chunk (described in the PNG extensions document) */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001374void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001375png_write_pCAL(png_structp png_ptr, png_charp purpose, png_int_32 X0,
1376 png_int_32 X1, int type, int nparams, png_charp units, png_charpp params)
1377{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001378#ifdef PNG_USE_LOCAL_ARRAYS
1379 PNG_pCAL;
1380#endif
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001381 png_size_t purpose_len, units_len, total_len;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001382 png_uint_32p params_len;
1383 png_byte buf[10];
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001384 png_charp new_purpose;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001385 int i;
1386
1387 png_debug1(1, "in png_write_pCAL (%d parameters)\n", nparams);
1388 if (type >= PNG_EQUATION_LAST)
1389 png_warning(png_ptr, "Unrecognized equation type for pCAL chunk");
1390
1391 purpose_len = png_check_keyword(png_ptr, purpose, &new_purpose) + 1;
1392 png_debug1(3, "pCAL purpose length = %d\n", purpose_len);
1393 units_len = png_strlen(units) + (nparams == 0 ? 0 : 1);
1394 png_debug1(3, "pCAL units length = %d\n", units_len);
1395 total_len = purpose_len + units_len + 10;
1396
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001397 params_len = (png_uint_32p)png_malloc(png_ptr, (png_uint_32)(nparams
1398 *sizeof(png_uint_32)));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001399
1400 /* Find the length of each parameter, making sure we don't count the
1401 null terminator for the last parameter. */
1402 for (i = 0; i < nparams; i++)
1403 {
1404 params_len[i] = png_strlen(params[i]) + (i == nparams - 1 ? 0 : 1);
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -05001405 png_debug2(3, "pCAL parameter %d length = %lu\n", i, params_len[i]);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001406 total_len += (png_size_t)params_len[i];
1407 }
1408
1409 png_debug1(3, "pCAL total length = %d\n", total_len);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001410 png_write_chunk_start(png_ptr, (png_bytep)png_pCAL, (png_uint_32)total_len);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001411 png_write_chunk_data(png_ptr, (png_bytep)new_purpose, purpose_len);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001412 png_save_int_32(buf, X0);
1413 png_save_int_32(buf + 4, X1);
1414 buf[8] = (png_byte)type;
1415 buf[9] = (png_byte)nparams;
1416 png_write_chunk_data(png_ptr, buf, (png_size_t)10);
1417 png_write_chunk_data(png_ptr, (png_bytep)units, (png_size_t)units_len);
1418
1419 png_free(png_ptr, new_purpose);
1420
1421 for (i = 0; i < nparams; i++)
1422 {
1423 png_write_chunk_data(png_ptr, (png_bytep)params[i],
1424 (png_size_t)params_len[i]);
1425 }
1426
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001427 png_free(png_ptr, params_len);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001428 png_write_chunk_end(png_ptr);
1429}
1430#endif
1431
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001432#if defined(PNG_WRITE_sCAL_SUPPORTED)
1433/* write the sCAL chunk */
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -06001434#if defined(PNG_FLOATING_POINT_SUPPORTED) && !defined(PNG_NO_STDIO)
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001435void /* PRIVATE */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001436png_write_sCAL(png_structp png_ptr, int unit, double width,double height)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001437{
1438#ifdef PNG_USE_LOCAL_ARRAYS
1439 PNG_sCAL;
1440#endif
1441 png_size_t total_len;
1442 char wbuf[32], hbuf[32];
1443
1444 png_debug(1, "in png_write_sCAL\n");
1445
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -05001446#if defined(_WIN32_WCE)
1447/* sprintf() function is not supported on WindowsCE */
1448 {
1449 wchar_t wc_buf[32];
1450 swprintf(wc_buf, TEXT("%12.12e"), width);
1451 WideCharToMultiByte(CP_ACP, 0, wc_buf, -1, wbuf, 32, NULL, NULL);
1452 swprintf(wc_buf, TEXT("%12.12e"), height);
1453 WideCharToMultiByte(CP_ACP, 0, wc_buf, -1, hbuf, 32, NULL, NULL);
1454 }
1455#else
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001456 sprintf(wbuf, "%12.12e", width);
1457 sprintf(hbuf, "%12.12e", height);
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -05001458#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001459 total_len = 1 + png_strlen(wbuf)+1 + png_strlen(hbuf);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001460
1461 png_debug1(3, "sCAL total length = %d\n", total_len);
1462 png_write_chunk_start(png_ptr, (png_bytep)png_sCAL, (png_uint_32)total_len);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001463 png_write_chunk_data(png_ptr, (png_bytep)&unit, 1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001464 png_write_chunk_data(png_ptr, (png_bytep)wbuf, strlen(wbuf)+1);
1465 png_write_chunk_data(png_ptr, (png_bytep)hbuf, strlen(hbuf));
1466
1467 png_write_chunk_end(png_ptr);
1468}
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001469#else
1470#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001471void /* PRIVATE */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001472png_write_sCAL_s(png_structp png_ptr, int unit, png_charp width,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001473 png_charp height)
1474{
1475#ifdef PNG_USE_LOCAL_ARRAYS
1476 PNG_sCAL;
1477#endif
1478 png_size_t total_len;
1479 char wbuf[32], hbuf[32];
1480
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -06001481 png_debug(1, "in png_write_sCAL_s\n");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001482
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -06001483 strcpy(wbuf,(const char *)width);
1484 strcpy(hbuf,(const char *)height);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001485 total_len = 1 + png_strlen(wbuf)+1 + png_strlen(hbuf);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001486
1487 png_debug1(3, "sCAL total length = %d\n", total_len);
1488 png_write_chunk_start(png_ptr, (png_bytep)png_sCAL, (png_uint_32)total_len);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001489 png_write_chunk_data(png_ptr, (png_bytep)&unit, 1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001490 png_write_chunk_data(png_ptr, (png_bytep)wbuf, strlen(wbuf)+1);
1491 png_write_chunk_data(png_ptr, (png_bytep)hbuf, strlen(hbuf));
1492
1493 png_write_chunk_end(png_ptr);
1494}
1495#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001496#endif
1497#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001498
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001499#if defined(PNG_WRITE_pHYs_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001500/* write the pHYs chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001501void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001502png_write_pHYs(png_structp png_ptr, png_uint_32 x_pixels_per_unit,
Guy Schalnat0d580581995-07-20 02:43:20 -05001503 png_uint_32 y_pixels_per_unit,
1504 int unit_type)
1505{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001506#ifdef PNG_USE_LOCAL_ARRAYS
1507 PNG_pHYs;
1508#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001509 png_byte buf[9];
1510
Andreas Dilger47a0c421997-05-16 02:46:07 -05001511 png_debug(1, "in png_write_pHYs\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001512 if (unit_type >= PNG_RESOLUTION_LAST)
1513 png_warning(png_ptr, "Unrecognized unit type for pHYs chunk");
1514
Guy Schalnat0d580581995-07-20 02:43:20 -05001515 png_save_uint_32(buf, x_pixels_per_unit);
1516 png_save_uint_32(buf + 4, y_pixels_per_unit);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001517 buf[8] = (png_byte)unit_type;
Guy Schalnat0d580581995-07-20 02:43:20 -05001518
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001519 png_write_chunk(png_ptr, (png_bytep)png_pHYs, buf, (png_size_t)9);
Guy Schalnat0d580581995-07-20 02:43:20 -05001520}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001521#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001522
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001523#if defined(PNG_WRITE_tIME_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001524/* Write the tIME chunk. Use either png_convert_from_struct_tm()
1525 * or png_convert_from_time_t(), or fill in the structure yourself.
1526 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001527void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001528png_write_tIME(png_structp png_ptr, png_timep mod_time)
Guy Schalnat0d580581995-07-20 02:43:20 -05001529{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001530#ifdef PNG_USE_LOCAL_ARRAYS
1531 PNG_tIME;
1532#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001533 png_byte buf[7];
1534
Andreas Dilger47a0c421997-05-16 02:46:07 -05001535 png_debug(1, "in png_write_tIME\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001536 if (mod_time->month > 12 || mod_time->month < 1 ||
1537 mod_time->day > 31 || mod_time->day < 1 ||
1538 mod_time->hour > 23 || mod_time->second > 60)
1539 {
1540 png_warning(png_ptr, "Invalid time specified for tIME chunk");
1541 return;
1542 }
1543
Guy Schalnat0d580581995-07-20 02:43:20 -05001544 png_save_uint_16(buf, mod_time->year);
1545 buf[2] = mod_time->month;
1546 buf[3] = mod_time->day;
1547 buf[4] = mod_time->hour;
1548 buf[5] = mod_time->minute;
1549 buf[6] = mod_time->second;
1550
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001551 png_write_chunk(png_ptr, (png_bytep)png_tIME, buf, (png_size_t)7);
Guy Schalnat0d580581995-07-20 02:43:20 -05001552}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001553#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001554
1555/* initializes the row writing capability of libpng */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001556void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001557png_write_start_row(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05001558{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001559#ifdef PNG_USE_LOCAL_ARRAYS
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001560 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001561
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001562 /* start of interlace block */
1563 int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001564
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001565 /* offset to next interlace block */
1566 int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001567
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001568 /* start of interlace block in the y direction */
1569 int png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001570
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001571 /* offset to next interlace block in the y direction */
1572 int png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001573#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001574
Andreas Dilger47a0c421997-05-16 02:46:07 -05001575 png_size_t buf_size;
1576
1577 png_debug(1, "in png_write_start_row\n");
1578 buf_size = (png_size_t)(((png_ptr->width * png_ptr->usr_channels *
1579 png_ptr->usr_bit_depth + 7) >> 3) + 1);
1580
Guy Schalnat0d580581995-07-20 02:43:20 -05001581 /* set up row buffer */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001582 png_ptr->row_buf = (png_bytep)png_malloc(png_ptr, (png_uint_32)buf_size);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001583 png_ptr->row_buf[0] = PNG_FILTER_VALUE_NONE;
Guy Schalnate5a37791996-06-05 15:50:50 -05001584
1585 /* set up filtering buffer, if using this filter */
1586 if (png_ptr->do_filter & PNG_FILTER_SUB)
Guy Schalnat0d580581995-07-20 02:43:20 -05001587 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001588 png_ptr->sub_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001589 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001590 png_ptr->sub_row[0] = PNG_FILTER_VALUE_SUB;
Guy Schalnate5a37791996-06-05 15:50:50 -05001591 }
1592
Andreas Dilger47a0c421997-05-16 02:46:07 -05001593 /* We only need to keep the previous row if we are using one of these. */
Guy Schalnate5a37791996-06-05 15:50:50 -05001594 if (png_ptr->do_filter & (PNG_FILTER_AVG | PNG_FILTER_UP | PNG_FILTER_PAETH))
1595 {
1596 /* set up previous row buffer */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001597 png_ptr->prev_row = (png_bytep)png_malloc(png_ptr, (png_uint_32)buf_size);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001598 png_memset(png_ptr->prev_row, 0, buf_size);
Guy Schalnate5a37791996-06-05 15:50:50 -05001599
1600 if (png_ptr->do_filter & PNG_FILTER_UP)
1601 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001602 png_ptr->up_row = (png_bytep )png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001603 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001604 png_ptr->up_row[0] = PNG_FILTER_VALUE_UP;
Guy Schalnate5a37791996-06-05 15:50:50 -05001605 }
1606
1607 if (png_ptr->do_filter & PNG_FILTER_AVG)
1608 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001609 png_ptr->avg_row = (png_bytep)png_malloc(png_ptr,
1610 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001611 png_ptr->avg_row[0] = PNG_FILTER_VALUE_AVG;
Guy Schalnate5a37791996-06-05 15:50:50 -05001612 }
1613
1614 if (png_ptr->do_filter & PNG_FILTER_PAETH)
1615 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001616 png_ptr->paeth_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->paeth_row[0] = PNG_FILTER_VALUE_PAETH;
Guy Schalnate5a37791996-06-05 15:50:50 -05001619 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001620 }
1621
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001622#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05001623 /* if interlaced, we need to set up width and height of pass */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001624 if (png_ptr->interlaced)
Guy Schalnat0d580581995-07-20 02:43:20 -05001625 {
1626 if (!(png_ptr->transformations & PNG_INTERLACE))
1627 {
1628 png_ptr->num_rows = (png_ptr->height + png_pass_yinc[0] - 1 -
1629 png_pass_ystart[0]) / png_pass_yinc[0];
Andreas Dilger47a0c421997-05-16 02:46:07 -05001630 png_ptr->usr_width = (png_ptr->width + png_pass_inc[0] - 1 -
1631 png_pass_start[0]) / png_pass_inc[0];
Guy Schalnat0d580581995-07-20 02:43:20 -05001632 }
1633 else
1634 {
1635 png_ptr->num_rows = png_ptr->height;
1636 png_ptr->usr_width = png_ptr->width;
1637 }
1638 }
1639 else
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001640#endif
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001641 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001642 png_ptr->num_rows = png_ptr->height;
1643 png_ptr->usr_width = png_ptr->width;
1644 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001645 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
1646 png_ptr->zstream.next_out = png_ptr->zbuf;
Guy Schalnat0d580581995-07-20 02:43:20 -05001647}
1648
Andreas Dilger47a0c421997-05-16 02:46:07 -05001649/* Internal use only. Called when finished processing a row of data. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001650void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001651png_write_finish_row(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05001652{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001653#ifdef PNG_USE_LOCAL_ARRAYS
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001654 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001655
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001656 /* start of interlace block */
1657 int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001658
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001659 /* offset to next interlace block */
1660 int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001661
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001662 /* start of interlace block in the y direction */
1663 int png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001664
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001665 /* offset to next interlace block in the y direction */
1666 int png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001667#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001668
Guy Schalnat0d580581995-07-20 02:43:20 -05001669 int ret;
1670
Andreas Dilger47a0c421997-05-16 02:46:07 -05001671 png_debug(1, "in png_write_finish_row\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001672 /* next row */
1673 png_ptr->row_number++;
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001674
Guy Schalnat0d580581995-07-20 02:43:20 -05001675 /* see if we are done */
Guy Schalnat6d764711995-12-19 03:22:19 -06001676 if (png_ptr->row_number < png_ptr->num_rows)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001677 return;
Guy Schalnat0d580581995-07-20 02:43:20 -05001678
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001679#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05001680 /* if interlaced, go to next pass */
1681 if (png_ptr->interlaced)
1682 {
1683 png_ptr->row_number = 0;
1684 if (png_ptr->transformations & PNG_INTERLACE)
1685 {
1686 png_ptr->pass++;
1687 }
1688 else
1689 {
1690 /* loop until we find a non-zero width or height pass */
1691 do
1692 {
1693 png_ptr->pass++;
1694 if (png_ptr->pass >= 7)
1695 break;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001696 png_ptr->usr_width = (png_ptr->width +
Guy Schalnat0d580581995-07-20 02:43:20 -05001697 png_pass_inc[png_ptr->pass] - 1 -
1698 png_pass_start[png_ptr->pass]) /
1699 png_pass_inc[png_ptr->pass];
1700 png_ptr->num_rows = (png_ptr->height +
1701 png_pass_yinc[png_ptr->pass] - 1 -
1702 png_pass_ystart[png_ptr->pass]) /
1703 png_pass_yinc[png_ptr->pass];
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001704 if (png_ptr->transformations & PNG_INTERLACE)
1705 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05001706 } while (png_ptr->usr_width == 0 || png_ptr->num_rows == 0);
1707
1708 }
1709
Guy Schalnate5a37791996-06-05 15:50:50 -05001710 /* reset the row above the image for the next pass */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001711 if (png_ptr->pass < 7)
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001712 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001713 if (png_ptr->prev_row != NULL)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001714 png_memset(png_ptr->prev_row, 0,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001715 (png_size_t) (((png_uint_32)png_ptr->usr_channels *
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001716 (png_uint_32)png_ptr->usr_bit_depth *
1717 png_ptr->width + 7) >> 3) + 1);
Guy Schalnat0d580581995-07-20 02:43:20 -05001718 return;
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001719 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001720 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001721#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001722
1723 /* if we get here, we've just written the last row, so we need
1724 to flush the compressor */
1725 do
1726 {
1727 /* tell the compressor we are done */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001728 ret = deflate(&png_ptr->zstream, Z_FINISH);
Guy Schalnat0d580581995-07-20 02:43:20 -05001729 /* check for an error */
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001730 if (ret == Z_OK)
1731 {
1732 /* check to see if we need more room */
1733 if (!(png_ptr->zstream.avail_out))
1734 {
1735 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
1736 png_ptr->zstream.next_out = png_ptr->zbuf;
1737 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
1738 }
1739 }
1740 else if (ret != Z_STREAM_END)
Guy Schalnat0d580581995-07-20 02:43:20 -05001741 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001742 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001743 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnat0d580581995-07-20 02:43:20 -05001744 else
Guy Schalnat6d764711995-12-19 03:22:19 -06001745 png_error(png_ptr, "zlib error");
Guy Schalnat0d580581995-07-20 02:43:20 -05001746 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001747 } while (ret != Z_STREAM_END);
1748
1749 /* write any extra space */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001750 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size)
Guy Schalnat0d580581995-07-20 02:43:20 -05001751 {
1752 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size -
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001753 png_ptr->zstream.avail_out);
Guy Schalnat0d580581995-07-20 02:43:20 -05001754 }
1755
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001756 deflateReset(&png_ptr->zstream);
Guy Schalnat0d580581995-07-20 02:43:20 -05001757}
1758
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001759#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001760/* Pick out the correct pixels for the interlace pass.
1761 * The basic idea here is to go through the row with a source
1762 * pointer and a destination pointer (sp and dp), and copy the
1763 * correct pixels for the pass. As the row gets compacted,
1764 * sp will always be >= dp, so we should never overwrite anything.
1765 * See the default: case for the easiest code to understand.
1766 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001767void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001768png_do_write_interlace(png_row_infop row_info, png_bytep row, int pass)
Guy Schalnat0d580581995-07-20 02:43:20 -05001769{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001770#ifdef PNG_USE_LOCAL_ARRAYS
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001771 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001772
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001773 /* start of interlace block */
1774 int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001775
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001776 /* offset to next interlace block */
1777 int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001778#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001779
Andreas Dilger47a0c421997-05-16 02:46:07 -05001780 png_debug(1, "in png_do_write_interlace\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001781 /* we don't have to do anything on the last pass (6) */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001782#if defined(PNG_USELESS_TESTS_SUPPORTED)
1783 if (row != NULL && row_info != NULL && pass < 6)
1784#else
1785 if (pass < 6)
1786#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001787 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001788 /* each pixel depth is handled separately */
Guy Schalnat0d580581995-07-20 02:43:20 -05001789 switch (row_info->pixel_depth)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001790 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001791 case 1:
1792 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001793 png_bytep sp;
1794 png_bytep dp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001795 int shift;
1796 int d;
1797 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001798 png_uint_32 i;
1799 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001800
1801 dp = row;
1802 d = 0;
1803 shift = 7;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001804 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001805 i += png_pass_inc[pass])
1806 {
1807 sp = row + (png_size_t)(i >> 3);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001808 value = (int)(*sp >> (7 - (int)(i & 0x07))) & 0x01;
Guy Schalnat0d580581995-07-20 02:43:20 -05001809 d |= (value << shift);
1810
1811 if (shift == 0)
1812 {
1813 shift = 7;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001814 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001815 d = 0;
1816 }
1817 else
1818 shift--;
1819
1820 }
1821 if (shift != 7)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001822 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001823 break;
1824 }
1825 case 2:
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001826 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001827 png_bytep sp;
1828 png_bytep dp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001829 int shift;
1830 int d;
1831 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001832 png_uint_32 i;
1833 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001834
1835 dp = row;
1836 shift = 6;
1837 d = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001838 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001839 i += png_pass_inc[pass])
1840 {
1841 sp = row + (png_size_t)(i >> 2);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001842 value = (*sp >> ((3 - (int)(i & 0x03)) << 1)) & 0x03;
Guy Schalnat0d580581995-07-20 02:43:20 -05001843 d |= (value << shift);
1844
1845 if (shift == 0)
1846 {
1847 shift = 6;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001848 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001849 d = 0;
1850 }
1851 else
1852 shift -= 2;
1853 }
1854 if (shift != 6)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001855 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001856 break;
1857 }
1858 case 4:
1859 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001860 png_bytep sp;
1861 png_bytep dp;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001862 int shift;
Guy Schalnat0d580581995-07-20 02:43:20 -05001863 int d;
1864 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001865 png_uint_32 i;
1866 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001867
1868 dp = row;
1869 shift = 4;
1870 d = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001871 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001872 i += png_pass_inc[pass])
1873 {
1874 sp = row + (png_size_t)(i >> 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001875 value = (*sp >> ((1 - (int)(i & 0x01)) << 2)) & 0x0f;
Guy Schalnat0d580581995-07-20 02:43:20 -05001876 d |= (value << shift);
1877
1878 if (shift == 0)
1879 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001880 shift = 4;
1881 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001882 d = 0;
1883 }
1884 else
1885 shift -= 4;
1886 }
1887 if (shift != 4)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001888 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001889 break;
1890 }
1891 default:
1892 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001893 png_bytep sp;
1894 png_bytep dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001895 png_uint_32 i;
1896 png_uint_32 row_width = row_info->width;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001897 png_size_t pixel_bytes;
Guy Schalnat0d580581995-07-20 02:43:20 -05001898
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001899 /* start at the beginning */
Guy Schalnat0d580581995-07-20 02:43:20 -05001900 dp = row;
1901 /* find out how many bytes each pixel takes up */
1902 pixel_bytes = (row_info->pixel_depth >> 3);
1903 /* loop through the row, only looking at the pixels that
1904 matter */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001905 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001906 i += png_pass_inc[pass])
1907 {
1908 /* find out where the original pixel is */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001909 sp = row + (png_size_t)i * pixel_bytes;
Guy Schalnat0d580581995-07-20 02:43:20 -05001910 /* move the pixel */
1911 if (dp != sp)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001912 png_memcpy(dp, sp, pixel_bytes);
Guy Schalnat0d580581995-07-20 02:43:20 -05001913 /* next pixel */
1914 dp += pixel_bytes;
1915 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001916 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05001917 }
1918 }
1919 /* set new row width */
1920 row_info->width = (row_info->width +
1921 png_pass_inc[pass] - 1 -
1922 png_pass_start[pass]) /
1923 png_pass_inc[pass];
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001924 row_info->rowbytes = ((row_info->width *
1925 row_info->pixel_depth + 7) >> 3);
Guy Schalnat0d580581995-07-20 02:43:20 -05001926 }
1927}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001928#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001929
Andreas Dilger47a0c421997-05-16 02:46:07 -05001930/* This filters the row, chooses which filter to use, if it has not already
1931 * been specified by the application, and then writes the row out with the
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001932 * chosen filter.
1933 */
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001934#define PNG_MAXSUM (~((png_uint_32)0) >> 1)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001935#define PNG_HISHIFT 10
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001936#define PNG_LOMASK ((png_uint_32)0xffffL)
1937#define PNG_HIMASK ((png_uint_32)(~PNG_LOMASK >> PNG_HISHIFT))
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001938void /* PRIVATE */
Guy Schalnate5a37791996-06-05 15:50:50 -05001939png_write_find_filter(png_structp png_ptr, png_row_infop row_info)
Guy Schalnat0d580581995-07-20 02:43:20 -05001940{
Guy Schalnate5a37791996-06-05 15:50:50 -05001941 png_bytep prev_row, best_row, row_buf;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001942 png_uint_32 mins, bpp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001943 png_byte filter_to_do = png_ptr->do_filter;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001944 png_uint_32 row_bytes = row_info->rowbytes;
1945#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1946 int num_p_filters = (int)png_ptr->num_prev_filters;
1947#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001948
Andreas Dilger47a0c421997-05-16 02:46:07 -05001949 png_debug(1, "in png_write_find_filter\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001950 /* find out how many bytes offset each pixel is */
1951 bpp = (row_info->pixel_depth + 7) / 8;
Guy Schalnate5a37791996-06-05 15:50:50 -05001952
1953 prev_row = png_ptr->prev_row;
1954 best_row = row_buf = png_ptr->row_buf;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001955 mins = PNG_MAXSUM;
Guy Schalnat0d580581995-07-20 02:43:20 -05001956
Andreas Dilger47a0c421997-05-16 02:46:07 -05001957 /* The prediction method we use is to find which method provides the
1958 * smallest value when summing the absolute values of the distances
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -05001959 * from zero, using anything >= 128 as negative numbers. This is known
Andreas Dilger47a0c421997-05-16 02:46:07 -05001960 * as the "minimum sum of absolute differences" heuristic. Other
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001961 * heuristics are the "weighted minimum sum of absolute differences"
Andreas Dilger47a0c421997-05-16 02:46:07 -05001962 * (experimental and can in theory improve compression), and the "zlib
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001963 * predictive" method (not implemented yet), which does test compressions
1964 * of lines using different filter methods, and then chooses the
1965 * (series of) filter(s) that give minimum compressed data size (VERY
Andreas Dilger47a0c421997-05-16 02:46:07 -05001966 * computationally expensive).
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001967 *
1968 * GRR 980525: consider also
1969 * (1) minimum sum of absolute differences from running average (i.e.,
1970 * keep running sum of non-absolute differences & count of bytes)
1971 * [track dispersion, too? restart average if dispersion too large?]
1972 * (1b) minimum sum of absolute differences from sliding average, probably
1973 * with window size <= deflate window (usually 32K)
1974 * (2) minimum sum of squared differences from zero or running average
1975 * (i.e., ~ root-mean-square approach)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001976 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001977
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001978
Guy Schalnate5a37791996-06-05 15:50:50 -05001979 /* We don't need to test the 'no filter' case if this is the only filter
Andreas Dilger47a0c421997-05-16 02:46:07 -05001980 * that has been chosen, as it doesn't actually do anything to the data.
1981 */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001982 if ((filter_to_do & PNG_FILTER_NONE) &&
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001983 filter_to_do != PNG_FILTER_NONE)
Guy Schalnat0d580581995-07-20 02:43:20 -05001984 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001985 png_bytep rp;
1986 png_uint_32 sum = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001987 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001988 int v;
Guy Schalnat0d580581995-07-20 02:43:20 -05001989
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001990 for (i = 0, rp = row_buf + 1; i < row_bytes; i++, rp++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001991 {
1992 v = *rp;
1993 sum += (v < 128) ? v : 256 - v;
1994 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001995
1996#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1997 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
1998 {
1999 png_uint_32 sumhi, sumlo;
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002000 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002001 sumlo = sum & PNG_LOMASK;
2002 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK; /* Gives us some footroom */
2003
2004 /* Reduce the sum if we match any of the previous rows */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002005 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002006 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002007 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_NONE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002008 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002009 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002010 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002011 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002012 PNG_WEIGHT_SHIFT;
2013 }
2014 }
2015
2016 /* Factor in the cost of this filter (this is here for completeness,
2017 * but it makes no sense to have a "cost" for the NONE filter, as
2018 * it has the minimum possible computational cost - none).
2019 */
2020 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_NONE]) >>
2021 PNG_COST_SHIFT;
2022 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_NONE]) >>
2023 PNG_COST_SHIFT;
2024
2025 if (sumhi > PNG_HIMASK)
2026 sum = PNG_MAXSUM;
2027 else
2028 sum = (sumhi << PNG_HISHIFT) + sumlo;
2029 }
2030#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002031 mins = sum;
Guy Schalnat0d580581995-07-20 02:43:20 -05002032 }
2033
Guy Schalnate5a37791996-06-05 15:50:50 -05002034 /* sub filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002035 if (filter_to_do == PNG_FILTER_SUB)
2036 /* it's the only filter so no testing is needed */
2037 {
2038 png_bytep rp, lp, dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002039 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002040 for (i = 0, rp = row_buf + 1, dp = png_ptr->sub_row + 1; i < bpp;
2041 i++, rp++, dp++)
2042 {
2043 *dp = *rp;
2044 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002045 for (lp = row_buf + 1; i < row_bytes;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002046 i++, rp++, lp++, dp++)
2047 {
2048 *dp = (png_byte)(((int)*rp - (int)*lp) & 0xff);
2049 }
2050 best_row = png_ptr->sub_row;
2051 }
2052
2053 else if (filter_to_do & PNG_FILTER_SUB)
Guy Schalnat0d580581995-07-20 02:43:20 -05002054 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002055 png_bytep rp, dp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002056 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002057 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002058 int v;
2059
2060#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002061 /* We temporarily increase the "minimum sum" by the factor we
Andreas Dilger47a0c421997-05-16 02:46:07 -05002062 * would reduce the sum of this filter, so that we can do the
2063 * early exit comparison without scaling the sum each time.
2064 */
2065 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2066 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002067 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002068 png_uint_32 lmhi, lmlo;
2069 lmlo = lmins & PNG_LOMASK;
2070 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2071
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002072 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002073 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002074 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_SUB)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002075 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002076 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002077 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002078 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002079 PNG_WEIGHT_SHIFT;
2080 }
2081 }
2082
2083 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2084 PNG_COST_SHIFT;
2085 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2086 PNG_COST_SHIFT;
2087
2088 if (lmhi > PNG_HIMASK)
2089 lmins = PNG_MAXSUM;
2090 else
2091 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2092 }
2093#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002094
Guy Schalnate5a37791996-06-05 15:50:50 -05002095 for (i = 0, rp = row_buf + 1, dp = png_ptr->sub_row + 1; i < bpp;
2096 i++, rp++, dp++)
2097 {
2098 v = *dp = *rp;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002099
Guy Schalnate5a37791996-06-05 15:50:50 -05002100 sum += (v < 128) ? v : 256 - v;
2101 }
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06002102 for (lp = row_buf + 1; i < row_info->rowbytes;
2103 i++, rp++, lp++, dp++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002104 {
2105 v = *dp = (png_byte)(((int)*rp - (int)*lp) & 0xff);
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002106
Guy Schalnate5a37791996-06-05 15:50:50 -05002107 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002108
2109 if (sum > lmins) /* We are already worse, don't continue. */
2110 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002111 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002112
2113#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2114 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2115 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002116 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002117 png_uint_32 sumhi, sumlo;
2118 sumlo = sum & PNG_LOMASK;
2119 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2120
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002121 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002122 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002123 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_SUB)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002124 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002125 sumlo = (sumlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002126 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002127 sumhi = (sumhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002128 PNG_WEIGHT_SHIFT;
2129 }
2130 }
2131
2132 sumlo = (sumlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2133 PNG_COST_SHIFT;
2134 sumhi = (sumhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2135 PNG_COST_SHIFT;
2136
2137 if (sumhi > PNG_HIMASK)
2138 sum = PNG_MAXSUM;
2139 else
2140 sum = (sumhi << PNG_HISHIFT) + sumlo;
2141 }
2142#endif
2143
Guy Schalnate5a37791996-06-05 15:50:50 -05002144 if (sum < mins)
2145 {
2146 mins = sum;
2147 best_row = png_ptr->sub_row;
2148 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002149 }
2150
Guy Schalnate5a37791996-06-05 15:50:50 -05002151 /* up filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002152 if (filter_to_do == PNG_FILTER_UP)
2153 {
2154 png_bytep rp, dp, pp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002155 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002156
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002157 for (i = 0, rp = row_buf + 1, dp = png_ptr->up_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002158 pp = prev_row + 1; i < row_bytes;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002159 i++, rp++, pp++, dp++)
2160 {
2161 *dp = (png_byte)(((int)*rp - (int)*pp) & 0xff);
2162 }
2163 best_row = png_ptr->up_row;
2164 }
2165
2166 else if (filter_to_do & PNG_FILTER_UP)
Guy Schalnat0d580581995-07-20 02:43:20 -05002167 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002168 png_bytep rp, dp, pp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002169 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002170 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002171 int v;
2172
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002173
Andreas Dilger47a0c421997-05-16 02:46:07 -05002174#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2175 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2176 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002177 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002178 png_uint_32 lmhi, lmlo;
2179 lmlo = lmins & PNG_LOMASK;
2180 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2181
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002182 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002183 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002184 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_UP)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002185 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002186 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002187 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002188 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002189 PNG_WEIGHT_SHIFT;
2190 }
2191 }
2192
2193 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_UP]) >>
2194 PNG_COST_SHIFT;
2195 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_UP]) >>
2196 PNG_COST_SHIFT;
2197
2198 if (lmhi > PNG_HIMASK)
2199 lmins = PNG_MAXSUM;
2200 else
2201 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2202 }
2203#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002204
2205 for (i = 0, rp = row_buf + 1, dp = png_ptr->up_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002206 pp = prev_row + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002207 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002208 v = *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002209
2210 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002211
2212 if (sum > lmins) /* We are already worse, don't continue. */
2213 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002214 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002215
2216#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2217 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2218 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002219 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002220 png_uint_32 sumhi, sumlo;
2221 sumlo = sum & PNG_LOMASK;
2222 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2223
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002224 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002225 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002226 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_UP)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002227 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002228 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002229 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002230 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002231 PNG_WEIGHT_SHIFT;
2232 }
2233 }
2234
2235 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_UP]) >>
2236 PNG_COST_SHIFT;
2237 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_UP]) >>
2238 PNG_COST_SHIFT;
2239
2240 if (sumhi > PNG_HIMASK)
2241 sum = PNG_MAXSUM;
2242 else
2243 sum = (sumhi << PNG_HISHIFT) + sumlo;
2244 }
2245#endif
2246
Guy Schalnate5a37791996-06-05 15:50:50 -05002247 if (sum < mins)
2248 {
2249 mins = sum;
2250 best_row = png_ptr->up_row;
2251 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002252 }
2253
Guy Schalnate5a37791996-06-05 15:50:50 -05002254 /* avg filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002255 if (filter_to_do == PNG_FILTER_AVG)
2256 {
2257 png_bytep rp, dp, pp, lp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002258 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002259 for (i = 0, rp = row_buf + 1, dp = png_ptr->avg_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002260 pp = prev_row + 1; i < bpp; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002261 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002262 *dp++ = (png_byte)(((int)*rp++ - ((int)*pp++ / 2)) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002263 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002264 for (lp = row_buf + 1; i < row_bytes; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002265 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002266 *dp++ = (png_byte)(((int)*rp++ - (((int)*pp++ + (int)*lp++) / 2))
2267 & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002268 }
2269 best_row = png_ptr->avg_row;
2270 }
2271
2272 else if (filter_to_do & PNG_FILTER_AVG)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002273 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002274 png_bytep rp, dp, pp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002275 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002276 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002277 int v;
2278
2279#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2280 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2281 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002282 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002283 png_uint_32 lmhi, lmlo;
2284 lmlo = lmins & PNG_LOMASK;
2285 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2286
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002287 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002288 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002289 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_AVG)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002290 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002291 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002292 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002293 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002294 PNG_WEIGHT_SHIFT;
2295 }
2296 }
2297
2298 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_AVG]) >>
2299 PNG_COST_SHIFT;
2300 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_AVG]) >>
2301 PNG_COST_SHIFT;
2302
2303 if (lmhi > PNG_HIMASK)
2304 lmins = PNG_MAXSUM;
2305 else
2306 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2307 }
2308#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002309
2310 for (i = 0, rp = row_buf + 1, dp = png_ptr->avg_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002311 pp = prev_row + 1; i < bpp; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002312 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002313 v = *dp++ = (png_byte)(((int)*rp++ - ((int)*pp++ / 2)) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002314
2315 sum += (v < 128) ? v : 256 - v;
2316 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002317 for (lp = row_buf + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002318 {
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002319 v = *dp++ =
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002320 (png_byte)(((int)*rp++ - (((int)*pp++ + (int)*lp++) / 2)) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002321
2322 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002323
2324 if (sum > lmins) /* We are already worse, don't continue. */
2325 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002326 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002327
2328#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2329 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2330 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002331 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002332 png_uint_32 sumhi, sumlo;
2333 sumlo = sum & PNG_LOMASK;
2334 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2335
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002336 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002337 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002338 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_NONE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002339 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002340 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002341 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002342 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002343 PNG_WEIGHT_SHIFT;
2344 }
2345 }
2346
2347 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_AVG]) >>
2348 PNG_COST_SHIFT;
2349 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_AVG]) >>
2350 PNG_COST_SHIFT;
2351
2352 if (sumhi > PNG_HIMASK)
2353 sum = PNG_MAXSUM;
2354 else
2355 sum = (sumhi << PNG_HISHIFT) + sumlo;
2356 }
2357#endif
2358
Guy Schalnate5a37791996-06-05 15:50:50 -05002359 if (sum < mins)
2360 {
2361 mins = sum;
2362 best_row = png_ptr->avg_row;
2363 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002364 }
2365
Andreas Dilger47a0c421997-05-16 02:46:07 -05002366 /* Paeth filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002367 if (filter_to_do == PNG_FILTER_PAETH)
2368 {
2369 png_bytep rp, dp, pp, cp, lp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002370 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002371 for (i = 0, rp = row_buf + 1, dp = png_ptr->paeth_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002372 pp = prev_row + 1; i < bpp; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002373 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002374 *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002375 }
2376
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002377 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002378 {
2379 int a, b, c, pa, pb, pc, p;
2380
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002381 b = *pp++;
2382 c = *cp++;
2383 a = *lp++;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002384
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002385 p = b - c;
2386 pc = a - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002387
2388#ifdef PNG_USE_ABS
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002389 pa = abs(p);
2390 pb = abs(pc);
2391 pc = abs(p + pc);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002392#else
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002393 pa = p < 0 ? -p : p;
2394 pb = pc < 0 ? -pc : pc;
2395 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002396#endif
2397
2398 p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
2399
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002400 *dp++ = (png_byte)(((int)*rp++ - p) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002401 }
2402 best_row = png_ptr->paeth_row;
2403 }
2404
2405 else if (filter_to_do & PNG_FILTER_PAETH)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002406 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002407 png_bytep rp, dp, pp, cp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002408 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002409 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002410 int v;
2411
2412#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2413 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2414 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002415 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002416 png_uint_32 lmhi, lmlo;
2417 lmlo = lmins & PNG_LOMASK;
2418 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2419
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002420 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002421 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002422 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_PAETH)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002423 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002424 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002425 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002426 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002427 PNG_WEIGHT_SHIFT;
2428 }
2429 }
2430
2431 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2432 PNG_COST_SHIFT;
2433 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2434 PNG_COST_SHIFT;
2435
2436 if (lmhi > PNG_HIMASK)
2437 lmins = PNG_MAXSUM;
2438 else
2439 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2440 }
2441#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002442
2443 for (i = 0, rp = row_buf + 1, dp = png_ptr->paeth_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002444 pp = prev_row + 1; i < bpp; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002445 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002446 v = *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002447
2448 sum += (v < 128) ? v : 256 - v;
2449 }
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002450
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002451 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002452 {
2453 int a, b, c, pa, pb, pc, p;
2454
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002455 b = *pp++;
2456 c = *cp++;
2457 a = *lp++;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002458
2459#ifndef PNG_SLOW_PAETH
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002460 p = b - c;
2461 pc = a - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002462#ifdef PNG_USE_ABS
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002463 pa = abs(p);
2464 pb = abs(pc);
2465 pc = abs(p + pc);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002466#else
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002467 pa = p < 0 ? -p : p;
2468 pb = pc < 0 ? -pc : pc;
2469 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002470#endif
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002471 p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
2472#else /* PNG_SLOW_PAETH */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002473 p = a + b - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002474 pa = abs(p - a);
2475 pb = abs(p - b);
2476 pc = abs(p - c);
Guy Schalnate5a37791996-06-05 15:50:50 -05002477 if (pa <= pb && pa <= pc)
2478 p = a;
2479 else if (pb <= pc)
2480 p = b;
2481 else
2482 p = c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002483#endif /* PNG_SLOW_PAETH */
Guy Schalnate5a37791996-06-05 15:50:50 -05002484
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002485 v = *dp++ = (png_byte)(((int)*rp++ - p) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002486
2487 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002488
2489 if (sum > lmins) /* We are already worse, don't continue. */
2490 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002491 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002492
2493#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2494 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2495 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002496 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002497 png_uint_32 sumhi, sumlo;
2498 sumlo = sum & PNG_LOMASK;
2499 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2500
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002501 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002502 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002503 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_PAETH)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002504 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002505 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002506 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002507 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002508 PNG_WEIGHT_SHIFT;
2509 }
2510 }
2511
2512 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2513 PNG_COST_SHIFT;
2514 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2515 PNG_COST_SHIFT;
2516
2517 if (sumhi > PNG_HIMASK)
2518 sum = PNG_MAXSUM;
2519 else
2520 sum = (sumhi << PNG_HISHIFT) + sumlo;
2521 }
2522#endif
2523
Guy Schalnate5a37791996-06-05 15:50:50 -05002524 if (sum < mins)
2525 {
2526 best_row = png_ptr->paeth_row;
2527 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002528 }
2529
Andreas Dilger47a0c421997-05-16 02:46:07 -05002530 /* Do the actual writing of the filtered row data from the chosen filter. */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002531
Guy Schalnate5a37791996-06-05 15:50:50 -05002532 png_write_filtered_row(png_ptr, best_row);
Andreas Dilger47a0c421997-05-16 02:46:07 -05002533
2534#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2535 /* Save the type of filter we picked this time for future calculations */
2536 if (png_ptr->num_prev_filters > 0)
2537 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002538 int j;
2539 for (j = 1; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002540 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002541 png_ptr->prev_filters[j] = png_ptr->prev_filters[j - 1];
Andreas Dilger47a0c421997-05-16 02:46:07 -05002542 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002543 png_ptr->prev_filters[j] = best_row[0];
Andreas Dilger47a0c421997-05-16 02:46:07 -05002544 }
2545#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002546}
2547
2548
Andreas Dilger47a0c421997-05-16 02:46:07 -05002549/* Do the actual writing of a previously filtered row. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002550void /* PRIVATE */
Guy Schalnate5a37791996-06-05 15:50:50 -05002551png_write_filtered_row(png_structp png_ptr, png_bytep filtered_row)
2552{
Andreas Dilger47a0c421997-05-16 02:46:07 -05002553 png_debug(1, "in png_write_filtered_row\n");
2554 png_debug1(2, "filter = %d\n", filtered_row[0]);
Guy Schalnate5a37791996-06-05 15:50:50 -05002555 /* set up the zlib input buffer */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002556 png_ptr->zstream.next_in = filtered_row;
2557 png_ptr->zstream.avail_in = (uInt)png_ptr->row_info.rowbytes + 1;
Guy Schalnate5a37791996-06-05 15:50:50 -05002558 /* repeat until we have compressed all the data */
2559 do
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002560 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002561 int ret; /* return of zlib */
Guy Schalnat0d580581995-07-20 02:43:20 -05002562
Guy Schalnate5a37791996-06-05 15:50:50 -05002563 /* compress the data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002564 ret = deflate(&png_ptr->zstream, Z_NO_FLUSH);
Guy Schalnate5a37791996-06-05 15:50:50 -05002565 /* check for compression errors */
2566 if (ret != Z_OK)
2567 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05002568 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002569 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnate5a37791996-06-05 15:50:50 -05002570 else
2571 png_error(png_ptr, "zlib error");
2572 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002573
Guy Schalnate5a37791996-06-05 15:50:50 -05002574 /* see if it is time to write another IDAT */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002575 if (!(png_ptr->zstream.avail_out))
Guy Schalnate5a37791996-06-05 15:50:50 -05002576 {
2577 /* write the IDAT and reset the zlib output buffer */
2578 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002579 png_ptr->zstream.next_out = png_ptr->zbuf;
2580 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnate5a37791996-06-05 15:50:50 -05002581 }
2582 /* repeat until all data has been compressed */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002583 } while (png_ptr->zstream.avail_in);
Guy Schalnate5a37791996-06-05 15:50:50 -05002584
Guy Schalnatc21f90c1996-06-17 16:24:45 -05002585 /* swap the current and previous rows */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002586 if (png_ptr->prev_row != NULL)
Guy Schalnatc21f90c1996-06-17 16:24:45 -05002587 {
2588 png_bytep tptr;
2589
2590 tptr = png_ptr->prev_row;
2591 png_ptr->prev_row = png_ptr->row_buf;
2592 png_ptr->row_buf = tptr;
2593 }
2594
Guy Schalnate5a37791996-06-05 15:50:50 -05002595 /* finish row - updates counters and flushes zlib if last row */
2596 png_write_finish_row(png_ptr);
2597
2598#if defined(PNG_WRITE_FLUSH_SUPPORTED)
2599 png_ptr->flush_rows++;
2600
2601 if (png_ptr->flush_dist > 0 &&
2602 png_ptr->flush_rows >= png_ptr->flush_dist)
Guy Schalnat0d580581995-07-20 02:43:20 -05002603 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002604 png_write_flush(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002605 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002606#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002607}