blob: d3415f5da402ecc5d8dc3010972ec57ed1e5cb28 [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-Pehrsonf6b4f452000-12-01 09:23:06 -06004 * libpng 1.0.9beta4 - December 1, 2000
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06005 * For conditions of distribution and use, see copyright notice in png.h
Glenn Randers-Pehrsonf5ed0e12000-11-18 18:19:14 -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
Glenn Randers-Pehrsonf5ed0e12000-11-18 18:19:14 -0600422 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 ((
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -0600517#if defined(PNG_MNG_FEATURES_SUPPORTED)
518 !(png_ptr->mng_features_permitted & PNG_FLAG_MNG_EMPTY_PLTE) &&
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500519#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
Glenn Randers-Pehrsonf5ed0e12000-11-18 18:19:14 -0600660 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,
Glenn Randers-Pehrsonf5ed0e12000-11-18 18:19:14 -0600668 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);
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -0600673 new_name[name_len+1]=0x00;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600674 png_write_chunk_data(png_ptr, (png_bytep)new_name, name_len + 2);
675
676 if (profile_len)
677 png_write_compressed_data_out(png_ptr, &comp);
678
679 png_write_chunk_end(png_ptr);
680 png_free(png_ptr, new_name);
681}
682#endif
683
684#if defined(PNG_WRITE_sPLT_SUPPORTED)
685/* write a sPLT chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500686void /* PRIVATE */
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600687png_write_sPLT(png_structp png_ptr, png_sPLT_tp spalette)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600688{
689#ifdef PNG_USE_LOCAL_ARRAYS
690 PNG_sPLT;
691#endif
692 png_size_t name_len;
693 png_charp new_name;
694 png_byte entrybuf[10];
695 int entry_size = (spalette->depth == 8 ? 6 : 10);
696 int palette_size = entry_size * spalette->nentries;
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600697 png_sPLT_entryp ep;
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500698#ifdef PNG_NO_POINTER_INDEXING
699 int i;
700#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600701
702 png_debug(1, "in png_write_sPLT\n");
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600703 if (spalette->name == NULL || (name_len = png_check_keyword(png_ptr,
704 spalette->name, &new_name))==0)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600705 {
706 png_warning(png_ptr, "Empty keyword in sPLT chunk");
707 return;
708 }
709
710 /* make sure we include the NULL after the name */
711 png_write_chunk_start(png_ptr, (png_bytep) png_sPLT,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600712 (png_uint_32)(name_len + 2 + palette_size));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600713 png_write_chunk_data(png_ptr, (png_bytep)new_name, name_len + 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600714 png_write_chunk_data(png_ptr, (png_bytep)&spalette->depth, 1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600715
716 /* loop through each palette entry, writing appropriately */
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500717#ifndef PNG_NO_POINTER_INDEXING
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600718 for (ep = spalette->entries; ep<spalette->entries+spalette->nentries; ep++)
719 {
720 if (spalette->depth == 8)
721 {
722 entrybuf[0] = (png_byte)ep->red;
723 entrybuf[1] = (png_byte)ep->green;
724 entrybuf[2] = (png_byte)ep->blue;
725 entrybuf[3] = (png_byte)ep->alpha;
726 png_save_uint_16(entrybuf + 4, ep->frequency);
727 }
728 else
729 {
730 png_save_uint_16(entrybuf + 0, ep->red);
731 png_save_uint_16(entrybuf + 2, ep->green);
732 png_save_uint_16(entrybuf + 4, ep->blue);
733 png_save_uint_16(entrybuf + 6, ep->alpha);
734 png_save_uint_16(entrybuf + 8, ep->frequency);
735 }
736 png_write_chunk_data(png_ptr, entrybuf, entry_size);
737 }
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500738#else
739 ep=spalette->entries;
740 for (i=0; i>spalette->nentries; i++)
741 {
742 if (spalette->depth == 8)
743 {
744 entrybuf[0] = (png_byte)ep[i].red;
745 entrybuf[1] = (png_byte)ep[i].green;
746 entrybuf[2] = (png_byte)ep[i].blue;
747 entrybuf[3] = (png_byte)ep[i].alpha;
748 png_save_uint_16(entrybuf + 4, ep[i].frequency);
749 }
750 else
751 {
752 png_save_uint_16(entrybuf + 0, ep[i].red);
753 png_save_uint_16(entrybuf + 2, ep[i].green);
754 png_save_uint_16(entrybuf + 4, ep[i].blue);
755 png_save_uint_16(entrybuf + 6, ep[i].alpha);
756 png_save_uint_16(entrybuf + 8, ep[i].frequency);
757 }
758 png_write_chunk_data(png_ptr, entrybuf, entry_size);
759 }
760#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600761
762 png_write_chunk_end(png_ptr);
763 png_free(png_ptr, new_name);
764}
765#endif
766
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500767#if defined(PNG_WRITE_sBIT_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500768/* write the sBIT chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500769void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600770png_write_sBIT(png_structp png_ptr, png_color_8p sbit, int color_type)
Guy Schalnat0d580581995-07-20 02:43:20 -0500771{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600772#ifdef PNG_USE_LOCAL_ARRAYS
773 PNG_sBIT;
774#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500775 png_byte buf[4];
Andreas Dilger47a0c421997-05-16 02:46:07 -0500776 png_size_t size;
Guy Schalnat0d580581995-07-20 02:43:20 -0500777
Andreas Dilger47a0c421997-05-16 02:46:07 -0500778 png_debug(1, "in png_write_sBIT\n");
Guy Schalnat6d764711995-12-19 03:22:19 -0600779 /* make sure we don't depend upon the order of PNG_COLOR_8 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500780 if (color_type & PNG_COLOR_MASK_COLOR)
781 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600782 png_byte maxbits;
Guy Schalnate5a37791996-06-05 15:50:50 -0500783
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -0500784 maxbits = (png_byte)(color_type==PNG_COLOR_TYPE_PALETTE ? 8 :
785 png_ptr->usr_bit_depth);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600786 if (sbit->red == 0 || sbit->red > maxbits ||
787 sbit->green == 0 || sbit->green > maxbits ||
Guy Schalnate5a37791996-06-05 15:50:50 -0500788 sbit->blue == 0 || sbit->blue > maxbits)
789 {
790 png_warning(png_ptr, "Invalid sBIT depth specified");
791 return;
792 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500793 buf[0] = sbit->red;
794 buf[1] = sbit->green;
795 buf[2] = sbit->blue;
796 size = 3;
797 }
798 else
799 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500800 if (sbit->gray == 0 || sbit->gray > png_ptr->usr_bit_depth)
801 {
802 png_warning(png_ptr, "Invalid sBIT depth specified");
803 return;
804 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500805 buf[0] = sbit->gray;
806 size = 1;
807 }
808
809 if (color_type & PNG_COLOR_MASK_ALPHA)
810 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500811 if (sbit->alpha == 0 || sbit->alpha > png_ptr->usr_bit_depth)
812 {
813 png_warning(png_ptr, "Invalid sBIT depth specified");
814 return;
815 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500816 buf[size++] = sbit->alpha;
817 }
818
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600819 png_write_chunk(png_ptr, (png_bytep)png_sBIT, buf, size);
Guy Schalnat0d580581995-07-20 02:43:20 -0500820}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500821#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500822
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500823#if defined(PNG_WRITE_cHRM_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500824/* write the cHRM chunk */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600825#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500826void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500827png_write_cHRM(png_structp png_ptr, double white_x, double white_y,
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600828 double red_x, double red_y, double green_x, double green_y,
829 double blue_x, double blue_y)
Guy Schalnat0d580581995-07-20 02:43:20 -0500830{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600831#ifdef PNG_USE_LOCAL_ARRAYS
832 PNG_cHRM;
833#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500834 png_byte buf[32];
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600835 png_uint_32 itemp;
Guy Schalnat0d580581995-07-20 02:43:20 -0500836
Andreas Dilger47a0c421997-05-16 02:46:07 -0500837 png_debug(1, "in png_write_cHRM\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600838 /* each value is saved in 1/100,000ths */
Guy Schalnate5a37791996-06-05 15:50:50 -0500839 if (white_x < 0 || white_x > 0.8 || white_y < 0 || white_y > 0.8 ||
840 white_x + white_y > 1.0)
841 {
842 png_warning(png_ptr, "Invalid cHRM white point specified");
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500843#if !defined(PNG_NO_CONSOLE_IO)
844 fprintf(stderr,"white_x=%f, white_y=%f\n",white_x, white_y);
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -0600845#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500846 return;
847 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600848 itemp = (png_uint_32)(white_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500849 png_save_uint_32(buf, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600850 itemp = (png_uint_32)(white_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500851 png_save_uint_32(buf + 4, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500852
853 if (red_x < 0 || red_x > 0.8 || red_y < 0 || red_y > 0.8 ||
854 red_x + red_y > 1.0)
855 {
856 png_warning(png_ptr, "Invalid cHRM red point specified");
857 return;
858 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600859 itemp = (png_uint_32)(red_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500860 png_save_uint_32(buf + 8, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600861 itemp = (png_uint_32)(red_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500862 png_save_uint_32(buf + 12, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500863
864 if (green_x < 0 || green_x > 0.8 || green_y < 0 || green_y > 0.8 ||
865 green_x + green_y > 1.0)
866 {
867 png_warning(png_ptr, "Invalid cHRM green point specified");
868 return;
869 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600870 itemp = (png_uint_32)(green_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500871 png_save_uint_32(buf + 16, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600872 itemp = (png_uint_32)(green_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500873 png_save_uint_32(buf + 20, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500874
875 if (blue_x < 0 || blue_x > 0.8 || blue_y < 0 || blue_y > 0.8 ||
876 blue_x + blue_y > 1.0)
877 {
878 png_warning(png_ptr, "Invalid cHRM blue point specified");
879 return;
880 }
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600881 itemp = (png_uint_32)(blue_x * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500882 png_save_uint_32(buf + 24, itemp);
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -0600883 itemp = (png_uint_32)(blue_y * 100000.0 + 0.5);
Guy Schalnat0d580581995-07-20 02:43:20 -0500884 png_save_uint_32(buf + 28, itemp);
Guy Schalnate5a37791996-06-05 15:50:50 -0500885
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600886 png_write_chunk(png_ptr, (png_bytep)png_cHRM, buf, (png_size_t)32);
Guy Schalnat0d580581995-07-20 02:43:20 -0500887}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500888#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600889#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500890void /* PRIVATE */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600891png_write_cHRM_fixed(png_structp png_ptr, png_fixed_point white_x,
892 png_fixed_point white_y, png_fixed_point red_x, png_fixed_point red_y,
893 png_fixed_point green_x, png_fixed_point green_y, png_fixed_point blue_x,
894 png_fixed_point blue_y)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600895{
896#ifdef PNG_USE_LOCAL_ARRAYS
897 PNG_cHRM;
898#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600899 png_byte buf[32];
900
901 png_debug(1, "in png_write_cHRM\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600902 /* each value is saved in 1/100,000ths */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600903 if (white_x > 80000L || white_y > 80000L || white_x + white_y > 100000L)
904 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600905 png_warning(png_ptr, "Invalid fixed cHRM white point specified");
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500906#if !defined(PNG_NO_CONSOLE_IO)
907 fprintf(stderr,"white_x=%ld, white_y=%ld\n",white_x, white_y);
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -0600908#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600909 return;
910 }
911 png_save_uint_32(buf, white_x);
912 png_save_uint_32(buf + 4, white_y);
913
914 if (red_x > 80000L || red_y > 80000L || red_x + red_y > 100000L)
915 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600916 png_warning(png_ptr, "Invalid cHRM fixed red point specified");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600917 return;
918 }
919 png_save_uint_32(buf + 8, red_x);
920 png_save_uint_32(buf + 12, red_y);
921
922 if (green_x > 80000L || green_y > 80000L || green_x + green_y > 100000L)
923 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600924 png_warning(png_ptr, "Invalid fixed cHRM green point specified");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600925 return;
926 }
927 png_save_uint_32(buf + 16, green_x);
928 png_save_uint_32(buf + 20, green_y);
929
930 if (blue_x > 80000L || blue_y > 80000L || blue_x + blue_y > 100000L)
931 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600932 png_warning(png_ptr, "Invalid fixed cHRM blue point specified");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600933 return;
934 }
935 png_save_uint_32(buf + 24, blue_x);
936 png_save_uint_32(buf + 28, blue_y);
937
938 png_write_chunk(png_ptr, (png_bytep)png_cHRM, buf, (png_size_t)32);
939}
940#endif
941#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500942
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500943#if defined(PNG_WRITE_tRNS_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500944/* write the tRNS chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500945void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600946png_write_tRNS(png_structp png_ptr, png_bytep trans, png_color_16p tran,
Guy Schalnat0d580581995-07-20 02:43:20 -0500947 int num_trans, int color_type)
948{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600949#ifdef PNG_USE_LOCAL_ARRAYS
950 PNG_tRNS;
951#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500952 png_byte buf[6];
953
Andreas Dilger47a0c421997-05-16 02:46:07 -0500954 png_debug(1, "in png_write_tRNS\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500955 if (color_type == PNG_COLOR_TYPE_PALETTE)
956 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600957 if (num_trans <= 0 || num_trans > (int)png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -0500958 {
959 png_warning(png_ptr,"Invalid number of transparent colors specified");
960 return;
961 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500962 /* write the chunk out as it is */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600963 png_write_chunk(png_ptr, (png_bytep)png_tRNS, trans, (png_size_t)num_trans);
Guy Schalnat0d580581995-07-20 02:43:20 -0500964 }
965 else if (color_type == PNG_COLOR_TYPE_GRAY)
966 {
967 /* one 16 bit value */
968 png_save_uint_16(buf, tran->gray);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600969 png_write_chunk(png_ptr, (png_bytep)png_tRNS, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -0500970 }
971 else if (color_type == PNG_COLOR_TYPE_RGB)
972 {
973 /* three 16 bit values */
974 png_save_uint_16(buf, tran->red);
975 png_save_uint_16(buf + 2, tran->green);
976 png_save_uint_16(buf + 4, tran->blue);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600977 png_write_chunk(png_ptr, (png_bytep)png_tRNS, buf, (png_size_t)6);
Guy Schalnat0d580581995-07-20 02:43:20 -0500978 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500979 else
980 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600981 png_warning(png_ptr, "Can't write tRNS with an alpha channel");
Guy Schalnate5a37791996-06-05 15:50:50 -0500982 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500983}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500984#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500985
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500986#if defined(PNG_WRITE_bKGD_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500987/* write the background chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500988void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600989png_write_bKGD(png_structp png_ptr, png_color_16p back, int color_type)
Guy Schalnat0d580581995-07-20 02:43:20 -0500990{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600991#ifdef PNG_USE_LOCAL_ARRAYS
992 PNG_bKGD;
993#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500994 png_byte buf[6];
995
Andreas Dilger47a0c421997-05-16 02:46:07 -0500996 png_debug(1, "in png_write_bKGD\n");
Guy Schalnat0d580581995-07-20 02:43:20 -0500997 if (color_type == PNG_COLOR_TYPE_PALETTE)
998 {
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500999 if (
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001000#if defined(PNG_MNG_FEATURES_SUPPORTED)
1001 (png_ptr->num_palette ||
1002 (!(png_ptr->mng_features_permitted & PNG_FLAG_MNG_EMPTY_PLTE))) &&
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001003#endif
1004 back->index > png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -05001005 {
1006 png_warning(png_ptr, "Invalid background palette index");
1007 return;
1008 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001009 buf[0] = back->index;
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001010 png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)1);
Guy Schalnat0d580581995-07-20 02:43:20 -05001011 }
1012 else if (color_type & PNG_COLOR_MASK_COLOR)
1013 {
1014 png_save_uint_16(buf, back->red);
1015 png_save_uint_16(buf + 2, back->green);
1016 png_save_uint_16(buf + 4, back->blue);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001017 png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)6);
Guy Schalnat0d580581995-07-20 02:43:20 -05001018 }
1019 else
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001020 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001021 png_save_uint_16(buf, back->gray);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001022 png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -05001023 }
1024}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001025#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001026
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001027#if defined(PNG_WRITE_hIST_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001028/* write the histogram */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001029void /* PRIVATE */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001030png_write_hIST(png_structp png_ptr, png_uint_16p hist, int num_hist)
Guy Schalnat0d580581995-07-20 02:43:20 -05001031{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001032#ifdef PNG_USE_LOCAL_ARRAYS
1033 PNG_hIST;
1034#endif
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001035 int i;
Guy Schalnat0d580581995-07-20 02:43:20 -05001036 png_byte buf[3];
1037
Andreas Dilger47a0c421997-05-16 02:46:07 -05001038 png_debug(1, "in png_write_hIST\n");
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001039 if (num_hist > (int)png_ptr->num_palette)
Guy Schalnate5a37791996-06-05 15:50:50 -05001040 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001041 png_debug2(3, "num_hist = %d, num_palette = %d\n", num_hist,
1042 png_ptr->num_palette);
Guy Schalnate5a37791996-06-05 15:50:50 -05001043 png_warning(png_ptr, "Invalid number of histogram entries specified");
1044 return;
1045 }
1046
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001047 png_write_chunk_start(png_ptr, (png_bytep)png_hIST, (png_uint_32)(num_hist * 2));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001048 for (i = 0; i < num_hist; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05001049 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001050 png_save_uint_16(buf, hist[i]);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001051 png_write_chunk_data(png_ptr, buf, (png_size_t)2);
Guy Schalnat0d580581995-07-20 02:43:20 -05001052 }
1053 png_write_chunk_end(png_ptr);
1054}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001055#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001056
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001057#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_pCAL_SUPPORTED) || \
1058 defined(PNG_WRITE_iCCP_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001059/* Check that the tEXt or zTXt keyword is valid per PNG 1.0 specification,
1060 * and if invalid, correct the keyword rather than discarding the entire
1061 * chunk. The PNG 1.0 specification requires keywords 1-79 characters in
1062 * length, forbids leading or trailing whitespace, multiple internal spaces,
1063 * and the non-break space (0x80) from ISO 8859-1. Returns keyword length.
Andreas Dilger47a0c421997-05-16 02:46:07 -05001064 *
1065 * The new_key is allocated to hold the corrected keyword and must be freed
1066 * by the calling routine. This avoids problems with trying to write to
1067 * static keywords without having to have duplicate copies of the strings.
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001068 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001069png_size_t /* PRIVATE */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001070png_check_keyword(png_structp png_ptr, png_charp key, png_charpp new_key)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001071{
Andreas Dilger47a0c421997-05-16 02:46:07 -05001072 png_size_t key_len;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001073 png_charp kp, dp;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001074 int kflag;
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001075 int kwarn=0;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001076
Andreas Dilger47a0c421997-05-16 02:46:07 -05001077 png_debug(1, "in png_check_keyword\n");
1078 *new_key = NULL;
1079
1080 if (key == NULL || (key_len = png_strlen(key)) == 0)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001081 {
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001082 png_warning(png_ptr, "zero length keyword");
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -06001083 return ((png_size_t)0);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001084 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001085
Andreas Dilger47a0c421997-05-16 02:46:07 -05001086 png_debug1(2, "Keyword to be checked is '%s'\n", key);
1087
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001088 *new_key = (png_charp)png_malloc(png_ptr, (png_uint_32)(key_len + 2));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001089
1090 /* Replace non-printing characters with a blank and print a warning */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001091 for (kp = key, dp = *new_key; *kp != '\0'; kp++, dp++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001092 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001093 if (*kp < 0x20 || (*kp > 0x7E && (png_byte)*kp < 0xA1))
Andreas Dilger47a0c421997-05-16 02:46:07 -05001094 {
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -05001095#if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001096 char msg[40];
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001097
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001098 sprintf(msg, "invalid keyword character 0x%02X", *kp);
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001099 png_warning(png_ptr, msg);
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001100#else
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001101 png_warning(png_ptr, "invalid character in keyword");
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001102#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001103 *dp = ' ';
1104 }
1105 else
1106 {
1107 *dp = *kp;
1108 }
1109 }
1110 *dp = '\0';
1111
1112 /* Remove any trailing white space. */
1113 kp = *new_key + key_len - 1;
1114 if (*kp == ' ')
1115 {
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001116 png_warning(png_ptr, "trailing spaces removed from keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001117
1118 while (*kp == ' ')
1119 {
1120 *(kp--) = '\0';
1121 key_len--;
1122 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001123 }
1124
1125 /* Remove any leading white space. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001126 kp = *new_key;
1127 if (*kp == ' ')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001128 {
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001129 png_warning(png_ptr, "leading spaces removed from keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001130
1131 while (*kp == ' ')
1132 {
1133 kp++;
1134 key_len--;
1135 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001136 }
1137
Andreas Dilger47a0c421997-05-16 02:46:07 -05001138 png_debug1(2, "Checking for multiple internal spaces in '%s'\n", kp);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001139
Andreas Dilger47a0c421997-05-16 02:46:07 -05001140 /* Remove multiple internal spaces. */
1141 for (kflag = 0, dp = *new_key; *kp != '\0'; kp++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001142 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001143 if (*kp == ' ' && kflag == 0)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001144 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001145 *(dp++) = *kp;
1146 kflag = 1;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001147 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001148 else if (*kp == ' ')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001149 {
1150 key_len--;
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001151 kwarn=1;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001152 }
1153 else
1154 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001155 *(dp++) = *kp;
1156 kflag = 0;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001157 }
1158 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001159 *dp = '\0';
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001160 if(kwarn)
1161 png_warning(png_ptr, "extra interior spaces removed from keyword");
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001162
1163 if (key_len == 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001164 {
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001165 png_free(png_ptr, *new_key);
1166 *new_key=NULL;
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001167 png_warning(png_ptr, "Zero length keyword");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001168 }
1169
1170 if (key_len > 79)
1171 {
Glenn Randers-Pehrsonf6b4f452000-12-01 09:23:06 -06001172 png_warning(png_ptr, "keyword length must be 1 - 79 characters");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001173 new_key[79] = '\0';
1174 key_len = 79;
1175 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001176
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -06001177 return (key_len);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001178}
1179#endif
1180
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001181#if defined(PNG_WRITE_tEXt_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001182/* write a tEXt chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001183void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001184png_write_tEXt(png_structp png_ptr, png_charp key, png_charp text,
Andreas Dilger47a0c421997-05-16 02:46:07 -05001185 png_size_t text_len)
Guy Schalnat0d580581995-07-20 02:43:20 -05001186{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001187#ifdef PNG_USE_LOCAL_ARRAYS
1188 PNG_tEXt;
1189#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001190 png_size_t key_len;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001191 png_charp new_key;
Guy Schalnat0d580581995-07-20 02:43:20 -05001192
Andreas Dilger47a0c421997-05-16 02:46:07 -05001193 png_debug(1, "in png_write_tEXt\n");
1194 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
1195 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001196 png_warning(png_ptr, "Empty keyword in tEXt chunk");
Guy Schalnate5a37791996-06-05 15:50:50 -05001197 return;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001198 }
Guy Schalnate5a37791996-06-05 15:50:50 -05001199
Andreas Dilger47a0c421997-05-16 02:46:07 -05001200 if (text == NULL || *text == '\0')
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001201 text_len = 0;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001202 else
1203 text_len = png_strlen(text);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001204
1205 /* make sure we include the 0 after the key */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001206 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 -05001207 /*
1208 * We leave it to the application to meet PNG-1.0 requirements on the
1209 * contents of the text. PNG-1.0 through PNG-1.2 discourage the use of
1210 * any non-Latin-1 characters except for NEWLINE. ISO PNG will forbid them.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001211 * The NUL character is forbidden by PNG-1.0 through PNG-1.2 and ISO PNG.
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001212 */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001213 png_write_chunk_data(png_ptr, (png_bytep)new_key, key_len + 1);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001214 if (text_len)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001215 png_write_chunk_data(png_ptr, (png_bytep)text, text_len);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001216
Guy Schalnat0d580581995-07-20 02:43:20 -05001217 png_write_chunk_end(png_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001218 png_free(png_ptr, new_key);
Guy Schalnat0d580581995-07-20 02:43:20 -05001219}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001220#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001221
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001222#if defined(PNG_WRITE_zTXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001223/* write a compressed text chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001224void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001225png_write_zTXt(png_structp png_ptr, png_charp key, png_charp text,
Andreas Dilger47a0c421997-05-16 02:46:07 -05001226 png_size_t text_len, int compression)
Guy Schalnat0d580581995-07-20 02:43:20 -05001227{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001228#ifdef PNG_USE_LOCAL_ARRAYS
1229 PNG_zTXt;
1230#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001231 png_size_t key_len;
Guy Schalnat0d580581995-07-20 02:43:20 -05001232 char buf[1];
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001233 png_charp new_key;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001234 compression_state comp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001235
Andreas Dilger47a0c421997-05-16 02:46:07 -05001236 png_debug(1, "in png_write_zTXt\n");
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001237
Andreas Dilger47a0c421997-05-16 02:46:07 -05001238 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
Guy Schalnate5a37791996-06-05 15:50:50 -05001239 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001240 png_warning(png_ptr, "Empty keyword in zTXt chunk");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001241 return;
Guy Schalnate5a37791996-06-05 15:50:50 -05001242 }
1243
Andreas Dilger47a0c421997-05-16 02:46:07 -05001244 if (text == NULL || *text == '\0' || compression==PNG_TEXT_COMPRESSION_NONE)
1245 {
1246 png_write_tEXt(png_ptr, new_key, text, (png_size_t)0);
1247 png_free(png_ptr, new_key);
1248 return;
1249 }
1250
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001251 text_len = png_strlen(text);
1252
Andreas Dilger47a0c421997-05-16 02:46:07 -05001253 png_free(png_ptr, new_key);
1254
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001255 /* compute the compressed data; do it now for the length */
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001256 text_len = png_text_compress(png_ptr, text, text_len, compression,
1257 &comp);
Guy Schalnat0d580581995-07-20 02:43:20 -05001258
1259 /* write start of chunk */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001260 png_write_chunk_start(png_ptr, (png_bytep)png_zTXt, (png_uint_32)
1261 (key_len+text_len+2));
Guy Schalnat0d580581995-07-20 02:43:20 -05001262 /* write key */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001263 png_write_chunk_data(png_ptr, (png_bytep)key, key_len + 1);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001264 buf[0] = (png_byte)compression;
Guy Schalnat0d580581995-07-20 02:43:20 -05001265 /* write compression */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001266 png_write_chunk_data(png_ptr, (png_bytep)buf, (png_size_t)1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001267 /* write the compressed data */
1268 png_write_compressed_data_out(png_ptr, &comp);
Guy Schalnat0d580581995-07-20 02:43:20 -05001269
Guy Schalnat0d580581995-07-20 02:43:20 -05001270 /* close the chunk */
1271 png_write_chunk_end(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05001272}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001273#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001274
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001275#if defined(PNG_WRITE_iTXt_SUPPORTED)
1276/* write an iTXt chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001277void /* PRIVATE */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001278png_write_iTXt(png_structp png_ptr, int compression, png_charp key,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001279 png_charp lang, png_charp lang_key, png_charp text)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001280{
1281#ifdef PNG_USE_LOCAL_ARRAYS
1282 PNG_iTXt;
1283#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001284 png_size_t lang_len, key_len, lang_key_len, text_len;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001285 png_charp new_lang, new_key;
1286 png_byte cbuf[2];
1287 compression_state comp;
1288
1289 png_debug(1, "in png_write_iTXt\n");
1290
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001291 if (key == NULL || (key_len = png_check_keyword(png_ptr, key, &new_key))==0)
1292 {
1293 png_warning(png_ptr, "Empty keyword in iTXt chunk");
1294 return;
1295 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001296 if (lang == NULL || (lang_len = png_check_keyword(png_ptr, lang,
1297 &new_lang))==0)
1298 {
1299 png_warning(png_ptr, "Empty language field in iTXt chunk");
1300 return;
1301 }
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001302 lang_key_len = png_strlen(lang_key);
1303 text_len = png_strlen(text);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001304
1305 if (text == NULL || *text == '\0')
1306 text_len = 0;
1307
1308 /* compute the compressed data; do it now for the length */
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001309 text_len = png_text_compress(png_ptr, text, text_len, compression-2,
1310 &comp);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001311
1312 /* make sure we include the compression flag, the compression byte,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001313 * and the NULs after the key, lang, and lang_key parts */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001314
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001315 png_write_chunk_start(png_ptr, (png_bytep)png_iTXt,
1316 (png_uint_32)(
1317 5 /* comp byte, comp flag, terminators for key, lang and lang_key */
1318 + key_len
1319 + lang_len
1320 + lang_key_len
1321 + text_len));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001322
1323 /*
1324 * We leave it to the application to meet PNG-1.0 requirements on the
1325 * contents of the text. PNG-1.0 through PNG-1.2 discourage the use of
1326 * any non-Latin-1 characters except for NEWLINE. ISO PNG will forbid them.
1327 * The NUL character is forbidden by PNG-1.0 through PNG-1.2 and ISO PNG.
1328 */
1329 png_write_chunk_data(png_ptr, (png_bytep)new_key, key_len + 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001330
1331 /* set the compression flag */
1332 if (compression == PNG_ITXT_COMPRESSION_NONE || \
1333 compression == PNG_TEXT_COMPRESSION_NONE)
1334 cbuf[0] = 0;
1335 else /* compression == PNG_ITXT_COMPRESSION_zTXt */
1336 cbuf[0] = 1;
1337 /* set the compression method */
1338 cbuf[1] = 0;
1339 png_write_chunk_data(png_ptr, cbuf, 2);
1340
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001341 png_write_chunk_data(png_ptr, (png_bytep)new_lang, lang_len + 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001342 png_write_chunk_data(png_ptr, (png_bytep)lang_key, lang_key_len+1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001343 png_write_chunk_data(png_ptr, '\0', 1);
1344
1345 png_write_compressed_data_out(png_ptr, &comp);
1346
1347 png_write_chunk_end(png_ptr);
1348 png_free(png_ptr, new_key);
1349 png_free(png_ptr, new_lang);
1350}
1351#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001352
1353#if defined(PNG_WRITE_oFFs_SUPPORTED)
1354/* write the oFFs chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001355void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001356png_write_oFFs(png_structp png_ptr, png_uint_32 x_offset,
1357 png_uint_32 y_offset,
1358 int unit_type)
1359{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001360#ifdef PNG_USE_LOCAL_ARRAYS
1361 PNG_oFFs;
1362#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001363 png_byte buf[9];
1364
1365 png_debug(1, "in png_write_oFFs\n");
1366 if (unit_type >= PNG_OFFSET_LAST)
1367 png_warning(png_ptr, "Unrecognized unit type for oFFs chunk");
1368
1369 png_save_uint_32(buf, x_offset);
1370 png_save_uint_32(buf + 4, y_offset);
1371 buf[8] = (png_byte)unit_type;
1372
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001373 png_write_chunk(png_ptr, (png_bytep)png_oFFs, buf, (png_size_t)9);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001374}
1375#endif
1376
1377#if defined(PNG_WRITE_pCAL_SUPPORTED)
Glenn Randers-Pehrsonff9c9472000-07-11 07:12:36 -05001378/* write the pCAL chunk (described in the PNG extensions document) */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001379void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001380png_write_pCAL(png_structp png_ptr, png_charp purpose, png_int_32 X0,
1381 png_int_32 X1, int type, int nparams, png_charp units, png_charpp params)
1382{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001383#ifdef PNG_USE_LOCAL_ARRAYS
1384 PNG_pCAL;
1385#endif
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001386 png_size_t purpose_len, units_len, total_len;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001387 png_uint_32p params_len;
1388 png_byte buf[10];
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001389 png_charp new_purpose;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001390 int i;
1391
1392 png_debug1(1, "in png_write_pCAL (%d parameters)\n", nparams);
1393 if (type >= PNG_EQUATION_LAST)
1394 png_warning(png_ptr, "Unrecognized equation type for pCAL chunk");
1395
1396 purpose_len = png_check_keyword(png_ptr, purpose, &new_purpose) + 1;
1397 png_debug1(3, "pCAL purpose length = %d\n", purpose_len);
1398 units_len = png_strlen(units) + (nparams == 0 ? 0 : 1);
1399 png_debug1(3, "pCAL units length = %d\n", units_len);
1400 total_len = purpose_len + units_len + 10;
1401
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001402 params_len = (png_uint_32p)png_malloc(png_ptr, (png_uint_32)(nparams
1403 *sizeof(png_uint_32)));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001404
1405 /* Find the length of each parameter, making sure we don't count the
1406 null terminator for the last parameter. */
1407 for (i = 0; i < nparams; i++)
1408 {
1409 params_len[i] = png_strlen(params[i]) + (i == nparams - 1 ? 0 : 1);
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -05001410 png_debug2(3, "pCAL parameter %d length = %lu\n", i, params_len[i]);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001411 total_len += (png_size_t)params_len[i];
1412 }
1413
1414 png_debug1(3, "pCAL total length = %d\n", total_len);
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001415 png_write_chunk_start(png_ptr, (png_bytep)png_pCAL, (png_uint_32)total_len);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001416 png_write_chunk_data(png_ptr, (png_bytep)new_purpose, purpose_len);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001417 png_save_int_32(buf, X0);
1418 png_save_int_32(buf + 4, X1);
1419 buf[8] = (png_byte)type;
1420 buf[9] = (png_byte)nparams;
1421 png_write_chunk_data(png_ptr, buf, (png_size_t)10);
1422 png_write_chunk_data(png_ptr, (png_bytep)units, (png_size_t)units_len);
1423
1424 png_free(png_ptr, new_purpose);
1425
1426 for (i = 0; i < nparams; i++)
1427 {
1428 png_write_chunk_data(png_ptr, (png_bytep)params[i],
1429 (png_size_t)params_len[i]);
1430 }
1431
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001432 png_free(png_ptr, params_len);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001433 png_write_chunk_end(png_ptr);
1434}
1435#endif
1436
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001437#if defined(PNG_WRITE_sCAL_SUPPORTED)
1438/* write the sCAL chunk */
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -06001439#if defined(PNG_FLOATING_POINT_SUPPORTED) && !defined(PNG_NO_STDIO)
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001440void /* PRIVATE */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001441png_write_sCAL(png_structp png_ptr, int unit, double width,double height)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001442{
1443#ifdef PNG_USE_LOCAL_ARRAYS
1444 PNG_sCAL;
1445#endif
1446 png_size_t total_len;
1447 char wbuf[32], hbuf[32];
1448
1449 png_debug(1, "in png_write_sCAL\n");
1450
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -05001451#if defined(_WIN32_WCE)
1452/* sprintf() function is not supported on WindowsCE */
1453 {
1454 wchar_t wc_buf[32];
1455 swprintf(wc_buf, TEXT("%12.12e"), width);
1456 WideCharToMultiByte(CP_ACP, 0, wc_buf, -1, wbuf, 32, NULL, NULL);
1457 swprintf(wc_buf, TEXT("%12.12e"), height);
1458 WideCharToMultiByte(CP_ACP, 0, wc_buf, -1, hbuf, 32, NULL, NULL);
1459 }
1460#else
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001461 sprintf(wbuf, "%12.12e", width);
1462 sprintf(hbuf, "%12.12e", height);
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -05001463#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001464 total_len = 1 + png_strlen(wbuf)+1 + png_strlen(hbuf);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001465
1466 png_debug1(3, "sCAL total length = %d\n", total_len);
1467 png_write_chunk_start(png_ptr, (png_bytep)png_sCAL, (png_uint_32)total_len);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001468 png_write_chunk_data(png_ptr, (png_bytep)&unit, 1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001469 png_write_chunk_data(png_ptr, (png_bytep)wbuf, strlen(wbuf)+1);
1470 png_write_chunk_data(png_ptr, (png_bytep)hbuf, strlen(hbuf));
1471
1472 png_write_chunk_end(png_ptr);
1473}
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001474#else
1475#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001476void /* PRIVATE */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001477png_write_sCAL_s(png_structp png_ptr, int unit, png_charp width,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001478 png_charp height)
1479{
1480#ifdef PNG_USE_LOCAL_ARRAYS
1481 PNG_sCAL;
1482#endif
1483 png_size_t total_len;
1484 char wbuf[32], hbuf[32];
1485
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -06001486 png_debug(1, "in png_write_sCAL_s\n");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001487
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -06001488 strcpy(wbuf,(const char *)width);
1489 strcpy(hbuf,(const char *)height);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001490 total_len = 1 + png_strlen(wbuf)+1 + png_strlen(hbuf);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001491
1492 png_debug1(3, "sCAL total length = %d\n", total_len);
1493 png_write_chunk_start(png_ptr, (png_bytep)png_sCAL, (png_uint_32)total_len);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001494 png_write_chunk_data(png_ptr, (png_bytep)&unit, 1);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001495 png_write_chunk_data(png_ptr, (png_bytep)wbuf, strlen(wbuf)+1);
1496 png_write_chunk_data(png_ptr, (png_bytep)hbuf, strlen(hbuf));
1497
1498 png_write_chunk_end(png_ptr);
1499}
1500#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001501#endif
1502#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001503
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001504#if defined(PNG_WRITE_pHYs_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001505/* write the pHYs chunk */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001506void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001507png_write_pHYs(png_structp png_ptr, png_uint_32 x_pixels_per_unit,
Guy Schalnat0d580581995-07-20 02:43:20 -05001508 png_uint_32 y_pixels_per_unit,
1509 int unit_type)
1510{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001511#ifdef PNG_USE_LOCAL_ARRAYS
1512 PNG_pHYs;
1513#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001514 png_byte buf[9];
1515
Andreas Dilger47a0c421997-05-16 02:46:07 -05001516 png_debug(1, "in png_write_pHYs\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001517 if (unit_type >= PNG_RESOLUTION_LAST)
1518 png_warning(png_ptr, "Unrecognized unit type for pHYs chunk");
1519
Guy Schalnat0d580581995-07-20 02:43:20 -05001520 png_save_uint_32(buf, x_pixels_per_unit);
1521 png_save_uint_32(buf + 4, y_pixels_per_unit);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001522 buf[8] = (png_byte)unit_type;
Guy Schalnat0d580581995-07-20 02:43:20 -05001523
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001524 png_write_chunk(png_ptr, (png_bytep)png_pHYs, buf, (png_size_t)9);
Guy Schalnat0d580581995-07-20 02:43:20 -05001525}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001526#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001527
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001528#if defined(PNG_WRITE_tIME_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001529/* Write the tIME chunk. Use either png_convert_from_struct_tm()
1530 * or png_convert_from_time_t(), or fill in the structure yourself.
1531 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001532void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001533png_write_tIME(png_structp png_ptr, png_timep mod_time)
Guy Schalnat0d580581995-07-20 02:43:20 -05001534{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001535#ifdef PNG_USE_LOCAL_ARRAYS
1536 PNG_tIME;
1537#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001538 png_byte buf[7];
1539
Andreas Dilger47a0c421997-05-16 02:46:07 -05001540 png_debug(1, "in png_write_tIME\n");
Guy Schalnate5a37791996-06-05 15:50:50 -05001541 if (mod_time->month > 12 || mod_time->month < 1 ||
1542 mod_time->day > 31 || mod_time->day < 1 ||
1543 mod_time->hour > 23 || mod_time->second > 60)
1544 {
1545 png_warning(png_ptr, "Invalid time specified for tIME chunk");
1546 return;
1547 }
1548
Guy Schalnat0d580581995-07-20 02:43:20 -05001549 png_save_uint_16(buf, mod_time->year);
1550 buf[2] = mod_time->month;
1551 buf[3] = mod_time->day;
1552 buf[4] = mod_time->hour;
1553 buf[5] = mod_time->minute;
1554 buf[6] = mod_time->second;
1555
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001556 png_write_chunk(png_ptr, (png_bytep)png_tIME, buf, (png_size_t)7);
Guy Schalnat0d580581995-07-20 02:43:20 -05001557}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001558#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001559
1560/* initializes the row writing capability of libpng */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001561void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001562png_write_start_row(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05001563{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001564#ifdef PNG_USE_LOCAL_ARRAYS
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001565 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001566
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001567 /* start of interlace block */
1568 int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001569
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001570 /* offset to next interlace block */
1571 int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001572
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001573 /* start of interlace block in the y direction */
1574 int png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001575
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001576 /* offset to next interlace block in the y direction */
1577 int png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001578#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001579
Andreas Dilger47a0c421997-05-16 02:46:07 -05001580 png_size_t buf_size;
1581
1582 png_debug(1, "in png_write_start_row\n");
1583 buf_size = (png_size_t)(((png_ptr->width * png_ptr->usr_channels *
1584 png_ptr->usr_bit_depth + 7) >> 3) + 1);
1585
Guy Schalnat0d580581995-07-20 02:43:20 -05001586 /* set up row buffer */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001587 png_ptr->row_buf = (png_bytep)png_malloc(png_ptr, (png_uint_32)buf_size);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001588 png_ptr->row_buf[0] = PNG_FILTER_VALUE_NONE;
Guy Schalnate5a37791996-06-05 15:50:50 -05001589
1590 /* set up filtering buffer, if using this filter */
1591 if (png_ptr->do_filter & PNG_FILTER_SUB)
Guy Schalnat0d580581995-07-20 02:43:20 -05001592 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001593 png_ptr->sub_row = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001594 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001595 png_ptr->sub_row[0] = PNG_FILTER_VALUE_SUB;
Guy Schalnate5a37791996-06-05 15:50:50 -05001596 }
1597
Andreas Dilger47a0c421997-05-16 02:46:07 -05001598 /* We only need to keep the previous row if we are using one of these. */
Guy Schalnate5a37791996-06-05 15:50:50 -05001599 if (png_ptr->do_filter & (PNG_FILTER_AVG | PNG_FILTER_UP | PNG_FILTER_PAETH))
1600 {
1601 /* set up previous row buffer */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001602 png_ptr->prev_row = (png_bytep)png_malloc(png_ptr, (png_uint_32)buf_size);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001603 png_memset(png_ptr->prev_row, 0, buf_size);
Guy Schalnate5a37791996-06-05 15:50:50 -05001604
1605 if (png_ptr->do_filter & PNG_FILTER_UP)
1606 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001607 png_ptr->up_row = (png_bytep )png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001608 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001609 png_ptr->up_row[0] = PNG_FILTER_VALUE_UP;
Guy Schalnate5a37791996-06-05 15:50:50 -05001610 }
1611
1612 if (png_ptr->do_filter & PNG_FILTER_AVG)
1613 {
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001614 png_ptr->avg_row = (png_bytep)png_malloc(png_ptr,
1615 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001616 png_ptr->avg_row[0] = PNG_FILTER_VALUE_AVG;
Guy Schalnate5a37791996-06-05 15:50:50 -05001617 }
1618
1619 if (png_ptr->do_filter & PNG_FILTER_PAETH)
1620 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001621 png_ptr->paeth_row = (png_bytep )png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001622 (png_ptr->rowbytes + 1));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001623 png_ptr->paeth_row[0] = PNG_FILTER_VALUE_PAETH;
Guy Schalnate5a37791996-06-05 15:50:50 -05001624 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001625 }
1626
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001627#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05001628 /* if interlaced, we need to set up width and height of pass */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001629 if (png_ptr->interlaced)
Guy Schalnat0d580581995-07-20 02:43:20 -05001630 {
1631 if (!(png_ptr->transformations & PNG_INTERLACE))
1632 {
1633 png_ptr->num_rows = (png_ptr->height + png_pass_yinc[0] - 1 -
1634 png_pass_ystart[0]) / png_pass_yinc[0];
Andreas Dilger47a0c421997-05-16 02:46:07 -05001635 png_ptr->usr_width = (png_ptr->width + png_pass_inc[0] - 1 -
1636 png_pass_start[0]) / png_pass_inc[0];
Guy Schalnat0d580581995-07-20 02:43:20 -05001637 }
1638 else
1639 {
1640 png_ptr->num_rows = png_ptr->height;
1641 png_ptr->usr_width = png_ptr->width;
1642 }
1643 }
1644 else
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001645#endif
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001646 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001647 png_ptr->num_rows = png_ptr->height;
1648 png_ptr->usr_width = png_ptr->width;
1649 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001650 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
1651 png_ptr->zstream.next_out = png_ptr->zbuf;
Guy Schalnat0d580581995-07-20 02:43:20 -05001652}
1653
Andreas Dilger47a0c421997-05-16 02:46:07 -05001654/* Internal use only. Called when finished processing a row of data. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001655void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001656png_write_finish_row(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05001657{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001658#ifdef PNG_USE_LOCAL_ARRAYS
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001659 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001660
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001661 /* start of interlace block */
1662 int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001663
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001664 /* offset to next interlace block */
1665 int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001666
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001667 /* start of interlace block in the y direction */
1668 int png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001669
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001670 /* offset to next interlace block in the y direction */
1671 int png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001672#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001673
Guy Schalnat0d580581995-07-20 02:43:20 -05001674 int ret;
1675
Andreas Dilger47a0c421997-05-16 02:46:07 -05001676 png_debug(1, "in png_write_finish_row\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001677 /* next row */
1678 png_ptr->row_number++;
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001679
Guy Schalnat0d580581995-07-20 02:43:20 -05001680 /* see if we are done */
Guy Schalnat6d764711995-12-19 03:22:19 -06001681 if (png_ptr->row_number < png_ptr->num_rows)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001682 return;
Guy Schalnat0d580581995-07-20 02:43:20 -05001683
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001684#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05001685 /* if interlaced, go to next pass */
1686 if (png_ptr->interlaced)
1687 {
1688 png_ptr->row_number = 0;
1689 if (png_ptr->transformations & PNG_INTERLACE)
1690 {
1691 png_ptr->pass++;
1692 }
1693 else
1694 {
1695 /* loop until we find a non-zero width or height pass */
1696 do
1697 {
1698 png_ptr->pass++;
1699 if (png_ptr->pass >= 7)
1700 break;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001701 png_ptr->usr_width = (png_ptr->width +
Guy Schalnat0d580581995-07-20 02:43:20 -05001702 png_pass_inc[png_ptr->pass] - 1 -
1703 png_pass_start[png_ptr->pass]) /
1704 png_pass_inc[png_ptr->pass];
1705 png_ptr->num_rows = (png_ptr->height +
1706 png_pass_yinc[png_ptr->pass] - 1 -
1707 png_pass_ystart[png_ptr->pass]) /
1708 png_pass_yinc[png_ptr->pass];
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001709 if (png_ptr->transformations & PNG_INTERLACE)
1710 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05001711 } while (png_ptr->usr_width == 0 || png_ptr->num_rows == 0);
1712
1713 }
1714
Guy Schalnate5a37791996-06-05 15:50:50 -05001715 /* reset the row above the image for the next pass */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001716 if (png_ptr->pass < 7)
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001717 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001718 if (png_ptr->prev_row != NULL)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001719 png_memset(png_ptr->prev_row, 0,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001720 (png_size_t) (((png_uint_32)png_ptr->usr_channels *
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001721 (png_uint_32)png_ptr->usr_bit_depth *
1722 png_ptr->width + 7) >> 3) + 1);
Guy Schalnat0d580581995-07-20 02:43:20 -05001723 return;
Guy Schalnatc21f90c1996-06-17 16:24:45 -05001724 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001725 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001726#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001727
1728 /* if we get here, we've just written the last row, so we need
1729 to flush the compressor */
1730 do
1731 {
1732 /* tell the compressor we are done */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001733 ret = deflate(&png_ptr->zstream, Z_FINISH);
Guy Schalnat0d580581995-07-20 02:43:20 -05001734 /* check for an error */
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001735 if (ret == Z_OK)
1736 {
1737 /* check to see if we need more room */
1738 if (!(png_ptr->zstream.avail_out))
1739 {
1740 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
1741 png_ptr->zstream.next_out = png_ptr->zbuf;
1742 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
1743 }
1744 }
1745 else if (ret != Z_STREAM_END)
Guy Schalnat0d580581995-07-20 02:43:20 -05001746 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001747 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001748 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnat0d580581995-07-20 02:43:20 -05001749 else
Guy Schalnat6d764711995-12-19 03:22:19 -06001750 png_error(png_ptr, "zlib error");
Guy Schalnat0d580581995-07-20 02:43:20 -05001751 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001752 } while (ret != Z_STREAM_END);
1753
1754 /* write any extra space */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001755 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size)
Guy Schalnat0d580581995-07-20 02:43:20 -05001756 {
1757 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size -
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001758 png_ptr->zstream.avail_out);
Guy Schalnat0d580581995-07-20 02:43:20 -05001759 }
1760
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001761 deflateReset(&png_ptr->zstream);
Guy Schalnat0d580581995-07-20 02:43:20 -05001762}
1763
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001764#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001765/* Pick out the correct pixels for the interlace pass.
1766 * The basic idea here is to go through the row with a source
1767 * pointer and a destination pointer (sp and dp), and copy the
1768 * correct pixels for the pass. As the row gets compacted,
1769 * sp will always be >= dp, so we should never overwrite anything.
1770 * See the default: case for the easiest code to understand.
1771 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001772void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06001773png_do_write_interlace(png_row_infop row_info, png_bytep row, int pass)
Guy Schalnat0d580581995-07-20 02:43:20 -05001774{
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001775#ifdef PNG_USE_LOCAL_ARRAYS
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001776 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001777
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001778 /* start of interlace block */
1779 int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001780
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001781 /* offset to next interlace block */
1782 int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06001783#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001784
Andreas Dilger47a0c421997-05-16 02:46:07 -05001785 png_debug(1, "in png_do_write_interlace\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001786 /* we don't have to do anything on the last pass (6) */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001787#if defined(PNG_USELESS_TESTS_SUPPORTED)
1788 if (row != NULL && row_info != NULL && pass < 6)
1789#else
1790 if (pass < 6)
1791#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001792 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001793 /* each pixel depth is handled separately */
Guy Schalnat0d580581995-07-20 02:43:20 -05001794 switch (row_info->pixel_depth)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001795 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001796 case 1:
1797 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001798 png_bytep sp;
1799 png_bytep dp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001800 int shift;
1801 int d;
1802 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001803 png_uint_32 i;
1804 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001805
1806 dp = row;
1807 d = 0;
1808 shift = 7;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001809 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001810 i += png_pass_inc[pass])
1811 {
1812 sp = row + (png_size_t)(i >> 3);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001813 value = (int)(*sp >> (7 - (int)(i & 0x07))) & 0x01;
Guy Schalnat0d580581995-07-20 02:43:20 -05001814 d |= (value << shift);
1815
1816 if (shift == 0)
1817 {
1818 shift = 7;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001819 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001820 d = 0;
1821 }
1822 else
1823 shift--;
1824
1825 }
1826 if (shift != 7)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001827 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001828 break;
1829 }
1830 case 2:
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001831 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001832 png_bytep sp;
1833 png_bytep dp;
Guy Schalnat0d580581995-07-20 02:43:20 -05001834 int shift;
1835 int d;
1836 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001837 png_uint_32 i;
1838 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001839
1840 dp = row;
1841 shift = 6;
1842 d = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001843 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001844 i += png_pass_inc[pass])
1845 {
1846 sp = row + (png_size_t)(i >> 2);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001847 value = (*sp >> ((3 - (int)(i & 0x03)) << 1)) & 0x03;
Guy Schalnat0d580581995-07-20 02:43:20 -05001848 d |= (value << shift);
1849
1850 if (shift == 0)
1851 {
1852 shift = 6;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001853 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001854 d = 0;
1855 }
1856 else
1857 shift -= 2;
1858 }
1859 if (shift != 6)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001860 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001861 break;
1862 }
1863 case 4:
1864 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001865 png_bytep sp;
1866 png_bytep dp;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001867 int shift;
Guy Schalnat0d580581995-07-20 02:43:20 -05001868 int d;
1869 int value;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001870 png_uint_32 i;
1871 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001872
1873 dp = row;
1874 shift = 4;
1875 d = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001876 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001877 i += png_pass_inc[pass])
1878 {
1879 sp = row + (png_size_t)(i >> 1);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001880 value = (*sp >> ((1 - (int)(i & 0x01)) << 2)) & 0x0f;
Guy Schalnat0d580581995-07-20 02:43:20 -05001881 d |= (value << shift);
1882
1883 if (shift == 0)
1884 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001885 shift = 4;
1886 *dp++ = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001887 d = 0;
1888 }
1889 else
1890 shift -= 4;
1891 }
1892 if (shift != 4)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001893 *dp = (png_byte)d;
Guy Schalnat0d580581995-07-20 02:43:20 -05001894 break;
1895 }
1896 default:
1897 {
Guy Schalnat6d764711995-12-19 03:22:19 -06001898 png_bytep sp;
1899 png_bytep dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001900 png_uint_32 i;
1901 png_uint_32 row_width = row_info->width;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001902 png_size_t pixel_bytes;
Guy Schalnat0d580581995-07-20 02:43:20 -05001903
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001904 /* start at the beginning */
Guy Schalnat0d580581995-07-20 02:43:20 -05001905 dp = row;
1906 /* find out how many bytes each pixel takes up */
1907 pixel_bytes = (row_info->pixel_depth >> 3);
1908 /* loop through the row, only looking at the pixels that
1909 matter */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001910 for (i = png_pass_start[pass]; i < row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05001911 i += png_pass_inc[pass])
1912 {
1913 /* find out where the original pixel is */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001914 sp = row + (png_size_t)i * pixel_bytes;
Guy Schalnat0d580581995-07-20 02:43:20 -05001915 /* move the pixel */
1916 if (dp != sp)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001917 png_memcpy(dp, sp, pixel_bytes);
Guy Schalnat0d580581995-07-20 02:43:20 -05001918 /* next pixel */
1919 dp += pixel_bytes;
1920 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001921 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05001922 }
1923 }
1924 /* set new row width */
1925 row_info->width = (row_info->width +
1926 png_pass_inc[pass] - 1 -
1927 png_pass_start[pass]) /
1928 png_pass_inc[pass];
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001929 row_info->rowbytes = ((row_info->width *
1930 row_info->pixel_depth + 7) >> 3);
Guy Schalnat0d580581995-07-20 02:43:20 -05001931 }
1932}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001933#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001934
Andreas Dilger47a0c421997-05-16 02:46:07 -05001935/* This filters the row, chooses which filter to use, if it has not already
1936 * been specified by the application, and then writes the row out with the
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001937 * chosen filter.
1938 */
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001939#define PNG_MAXSUM (~((png_uint_32)0) >> 1)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001940#define PNG_HISHIFT 10
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001941#define PNG_LOMASK ((png_uint_32)0xffffL)
1942#define PNG_HIMASK ((png_uint_32)(~PNG_LOMASK >> PNG_HISHIFT))
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001943void /* PRIVATE */
Guy Schalnate5a37791996-06-05 15:50:50 -05001944png_write_find_filter(png_structp png_ptr, png_row_infop row_info)
Guy Schalnat0d580581995-07-20 02:43:20 -05001945{
Guy Schalnate5a37791996-06-05 15:50:50 -05001946 png_bytep prev_row, best_row, row_buf;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001947 png_uint_32 mins, bpp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001948 png_byte filter_to_do = png_ptr->do_filter;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001949 png_uint_32 row_bytes = row_info->rowbytes;
1950#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1951 int num_p_filters = (int)png_ptr->num_prev_filters;
1952#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001953
Andreas Dilger47a0c421997-05-16 02:46:07 -05001954 png_debug(1, "in png_write_find_filter\n");
Guy Schalnat0d580581995-07-20 02:43:20 -05001955 /* find out how many bytes offset each pixel is */
1956 bpp = (row_info->pixel_depth + 7) / 8;
Guy Schalnate5a37791996-06-05 15:50:50 -05001957
1958 prev_row = png_ptr->prev_row;
1959 best_row = row_buf = png_ptr->row_buf;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001960 mins = PNG_MAXSUM;
Guy Schalnat0d580581995-07-20 02:43:20 -05001961
Andreas Dilger47a0c421997-05-16 02:46:07 -05001962 /* The prediction method we use is to find which method provides the
1963 * smallest value when summing the absolute values of the distances
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -05001964 * from zero, using anything >= 128 as negative numbers. This is known
Andreas Dilger47a0c421997-05-16 02:46:07 -05001965 * as the "minimum sum of absolute differences" heuristic. Other
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001966 * heuristics are the "weighted minimum sum of absolute differences"
Andreas Dilger47a0c421997-05-16 02:46:07 -05001967 * (experimental and can in theory improve compression), and the "zlib
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001968 * predictive" method (not implemented yet), which does test compressions
1969 * of lines using different filter methods, and then chooses the
1970 * (series of) filter(s) that give minimum compressed data size (VERY
Andreas Dilger47a0c421997-05-16 02:46:07 -05001971 * computationally expensive).
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001972 *
1973 * GRR 980525: consider also
1974 * (1) minimum sum of absolute differences from running average (i.e.,
1975 * keep running sum of non-absolute differences & count of bytes)
1976 * [track dispersion, too? restart average if dispersion too large?]
1977 * (1b) minimum sum of absolute differences from sliding average, probably
1978 * with window size <= deflate window (usually 32K)
1979 * (2) minimum sum of squared differences from zero or running average
1980 * (i.e., ~ root-mean-square approach)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001981 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001982
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001983
Guy Schalnate5a37791996-06-05 15:50:50 -05001984 /* We don't need to test the 'no filter' case if this is the only filter
Andreas Dilger47a0c421997-05-16 02:46:07 -05001985 * that has been chosen, as it doesn't actually do anything to the data.
1986 */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001987 if ((filter_to_do & PNG_FILTER_NONE) &&
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001988 filter_to_do != PNG_FILTER_NONE)
Guy Schalnat0d580581995-07-20 02:43:20 -05001989 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001990 png_bytep rp;
1991 png_uint_32 sum = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001992 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001993 int v;
Guy Schalnat0d580581995-07-20 02:43:20 -05001994
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001995 for (i = 0, rp = row_buf + 1; i < row_bytes; i++, rp++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001996 {
1997 v = *rp;
1998 sum += (v < 128) ? v : 256 - v;
1999 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002000
2001#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2002 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2003 {
2004 png_uint_32 sumhi, sumlo;
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002005 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002006 sumlo = sum & PNG_LOMASK;
2007 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK; /* Gives us some footroom */
2008
2009 /* Reduce the sum if we match any of the previous rows */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002010 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002011 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002012 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_NONE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002013 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002014 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002015 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002016 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002017 PNG_WEIGHT_SHIFT;
2018 }
2019 }
2020
2021 /* Factor in the cost of this filter (this is here for completeness,
2022 * but it makes no sense to have a "cost" for the NONE filter, as
2023 * it has the minimum possible computational cost - none).
2024 */
2025 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_NONE]) >>
2026 PNG_COST_SHIFT;
2027 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_NONE]) >>
2028 PNG_COST_SHIFT;
2029
2030 if (sumhi > PNG_HIMASK)
2031 sum = PNG_MAXSUM;
2032 else
2033 sum = (sumhi << PNG_HISHIFT) + sumlo;
2034 }
2035#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002036 mins = sum;
Guy Schalnat0d580581995-07-20 02:43:20 -05002037 }
2038
Guy Schalnate5a37791996-06-05 15:50:50 -05002039 /* sub filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002040 if (filter_to_do == PNG_FILTER_SUB)
2041 /* it's the only filter so no testing is needed */
2042 {
2043 png_bytep rp, lp, dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002044 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002045 for (i = 0, rp = row_buf + 1, dp = png_ptr->sub_row + 1; i < bpp;
2046 i++, rp++, dp++)
2047 {
2048 *dp = *rp;
2049 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002050 for (lp = row_buf + 1; i < row_bytes;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002051 i++, rp++, lp++, dp++)
2052 {
2053 *dp = (png_byte)(((int)*rp - (int)*lp) & 0xff);
2054 }
2055 best_row = png_ptr->sub_row;
2056 }
2057
2058 else if (filter_to_do & PNG_FILTER_SUB)
Guy Schalnat0d580581995-07-20 02:43:20 -05002059 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002060 png_bytep rp, dp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002061 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002062 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002063 int v;
2064
2065#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002066 /* We temporarily increase the "minimum sum" by the factor we
Andreas Dilger47a0c421997-05-16 02:46:07 -05002067 * would reduce the sum of this filter, so that we can do the
2068 * early exit comparison without scaling the sum each time.
2069 */
2070 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2071 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002072 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002073 png_uint_32 lmhi, lmlo;
2074 lmlo = lmins & PNG_LOMASK;
2075 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2076
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002077 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002078 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002079 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_SUB)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002080 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002081 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002082 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002083 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002084 PNG_WEIGHT_SHIFT;
2085 }
2086 }
2087
2088 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2089 PNG_COST_SHIFT;
2090 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2091 PNG_COST_SHIFT;
2092
2093 if (lmhi > PNG_HIMASK)
2094 lmins = PNG_MAXSUM;
2095 else
2096 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2097 }
2098#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002099
Guy Schalnate5a37791996-06-05 15:50:50 -05002100 for (i = 0, rp = row_buf + 1, dp = png_ptr->sub_row + 1; i < bpp;
2101 i++, rp++, dp++)
2102 {
2103 v = *dp = *rp;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002104
Guy Schalnate5a37791996-06-05 15:50:50 -05002105 sum += (v < 128) ? v : 256 - v;
2106 }
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06002107 for (lp = row_buf + 1; i < row_info->rowbytes;
2108 i++, rp++, lp++, dp++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002109 {
2110 v = *dp = (png_byte)(((int)*rp - (int)*lp) & 0xff);
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002111
Guy Schalnate5a37791996-06-05 15:50:50 -05002112 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002113
2114 if (sum > lmins) /* We are already worse, don't continue. */
2115 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002116 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002117
2118#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2119 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2120 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002121 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002122 png_uint_32 sumhi, sumlo;
2123 sumlo = sum & PNG_LOMASK;
2124 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2125
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002126 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002127 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002128 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_SUB)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002129 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002130 sumlo = (sumlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002131 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002132 sumhi = (sumhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002133 PNG_WEIGHT_SHIFT;
2134 }
2135 }
2136
2137 sumlo = (sumlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2138 PNG_COST_SHIFT;
2139 sumhi = (sumhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
2140 PNG_COST_SHIFT;
2141
2142 if (sumhi > PNG_HIMASK)
2143 sum = PNG_MAXSUM;
2144 else
2145 sum = (sumhi << PNG_HISHIFT) + sumlo;
2146 }
2147#endif
2148
Guy Schalnate5a37791996-06-05 15:50:50 -05002149 if (sum < mins)
2150 {
2151 mins = sum;
2152 best_row = png_ptr->sub_row;
2153 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002154 }
2155
Guy Schalnate5a37791996-06-05 15:50:50 -05002156 /* up filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002157 if (filter_to_do == PNG_FILTER_UP)
2158 {
2159 png_bytep rp, dp, pp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002160 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002161
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002162 for (i = 0, rp = row_buf + 1, dp = png_ptr->up_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002163 pp = prev_row + 1; i < row_bytes;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002164 i++, rp++, pp++, dp++)
2165 {
2166 *dp = (png_byte)(((int)*rp - (int)*pp) & 0xff);
2167 }
2168 best_row = png_ptr->up_row;
2169 }
2170
2171 else if (filter_to_do & PNG_FILTER_UP)
Guy Schalnat0d580581995-07-20 02:43:20 -05002172 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002173 png_bytep rp, dp, pp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002174 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002175 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002176 int v;
2177
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002178
Andreas Dilger47a0c421997-05-16 02:46:07 -05002179#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2180 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2181 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002182 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002183 png_uint_32 lmhi, lmlo;
2184 lmlo = lmins & PNG_LOMASK;
2185 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2186
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002187 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002188 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002189 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_UP)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002190 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002191 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002192 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002193 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002194 PNG_WEIGHT_SHIFT;
2195 }
2196 }
2197
2198 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_UP]) >>
2199 PNG_COST_SHIFT;
2200 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_UP]) >>
2201 PNG_COST_SHIFT;
2202
2203 if (lmhi > PNG_HIMASK)
2204 lmins = PNG_MAXSUM;
2205 else
2206 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2207 }
2208#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002209
2210 for (i = 0, rp = row_buf + 1, dp = png_ptr->up_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002211 pp = prev_row + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002212 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002213 v = *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002214
2215 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002216
2217 if (sum > lmins) /* We are already worse, don't continue. */
2218 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002219 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002220
2221#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2222 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2223 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002224 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002225 png_uint_32 sumhi, sumlo;
2226 sumlo = sum & PNG_LOMASK;
2227 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2228
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002229 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002230 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002231 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_UP)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002232 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002233 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002234 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002235 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002236 PNG_WEIGHT_SHIFT;
2237 }
2238 }
2239
2240 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_UP]) >>
2241 PNG_COST_SHIFT;
2242 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_UP]) >>
2243 PNG_COST_SHIFT;
2244
2245 if (sumhi > PNG_HIMASK)
2246 sum = PNG_MAXSUM;
2247 else
2248 sum = (sumhi << PNG_HISHIFT) + sumlo;
2249 }
2250#endif
2251
Guy Schalnate5a37791996-06-05 15:50:50 -05002252 if (sum < mins)
2253 {
2254 mins = sum;
2255 best_row = png_ptr->up_row;
2256 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002257 }
2258
Guy Schalnate5a37791996-06-05 15:50:50 -05002259 /* avg filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002260 if (filter_to_do == PNG_FILTER_AVG)
2261 {
2262 png_bytep rp, dp, pp, lp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002263 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002264 for (i = 0, rp = row_buf + 1, dp = png_ptr->avg_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002265 pp = prev_row + 1; i < bpp; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002266 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002267 *dp++ = (png_byte)(((int)*rp++ - ((int)*pp++ / 2)) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002268 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002269 for (lp = row_buf + 1; i < row_bytes; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002270 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002271 *dp++ = (png_byte)(((int)*rp++ - (((int)*pp++ + (int)*lp++) / 2))
2272 & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002273 }
2274 best_row = png_ptr->avg_row;
2275 }
2276
2277 else if (filter_to_do & PNG_FILTER_AVG)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002278 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002279 png_bytep rp, dp, pp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002280 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002281 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002282 int v;
2283
2284#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2285 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2286 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002287 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002288 png_uint_32 lmhi, lmlo;
2289 lmlo = lmins & PNG_LOMASK;
2290 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2291
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002292 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002293 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002294 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_AVG)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002295 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002296 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002297 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002298 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002299 PNG_WEIGHT_SHIFT;
2300 }
2301 }
2302
2303 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_AVG]) >>
2304 PNG_COST_SHIFT;
2305 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_AVG]) >>
2306 PNG_COST_SHIFT;
2307
2308 if (lmhi > PNG_HIMASK)
2309 lmins = PNG_MAXSUM;
2310 else
2311 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2312 }
2313#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002314
2315 for (i = 0, rp = row_buf + 1, dp = png_ptr->avg_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002316 pp = prev_row + 1; i < bpp; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002317 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002318 v = *dp++ = (png_byte)(((int)*rp++ - ((int)*pp++ / 2)) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002319
2320 sum += (v < 128) ? v : 256 - v;
2321 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002322 for (lp = row_buf + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002323 {
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002324 v = *dp++ =
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002325 (png_byte)(((int)*rp++ - (((int)*pp++ + (int)*lp++) / 2)) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002326
2327 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002328
2329 if (sum > lmins) /* We are already worse, don't continue. */
2330 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002331 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002332
2333#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2334 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2335 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002336 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002337 png_uint_32 sumhi, sumlo;
2338 sumlo = sum & PNG_LOMASK;
2339 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2340
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002341 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002342 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002343 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_NONE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002344 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002345 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002346 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002347 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002348 PNG_WEIGHT_SHIFT;
2349 }
2350 }
2351
2352 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_AVG]) >>
2353 PNG_COST_SHIFT;
2354 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_AVG]) >>
2355 PNG_COST_SHIFT;
2356
2357 if (sumhi > PNG_HIMASK)
2358 sum = PNG_MAXSUM;
2359 else
2360 sum = (sumhi << PNG_HISHIFT) + sumlo;
2361 }
2362#endif
2363
Guy Schalnate5a37791996-06-05 15:50:50 -05002364 if (sum < mins)
2365 {
2366 mins = sum;
2367 best_row = png_ptr->avg_row;
2368 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002369 }
2370
Andreas Dilger47a0c421997-05-16 02:46:07 -05002371 /* Paeth filter */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002372 if (filter_to_do == PNG_FILTER_PAETH)
2373 {
2374 png_bytep rp, dp, pp, cp, lp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002375 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002376 for (i = 0, rp = row_buf + 1, dp = png_ptr->paeth_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002377 pp = prev_row + 1; i < bpp; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002378 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002379 *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002380 }
2381
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002382 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002383 {
2384 int a, b, c, pa, pb, pc, p;
2385
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002386 b = *pp++;
2387 c = *cp++;
2388 a = *lp++;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002389
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002390 p = b - c;
2391 pc = a - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002392
2393#ifdef PNG_USE_ABS
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002394 pa = abs(p);
2395 pb = abs(pc);
2396 pc = abs(p + pc);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002397#else
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002398 pa = p < 0 ? -p : p;
2399 pb = pc < 0 ? -pc : pc;
2400 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002401#endif
2402
2403 p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
2404
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002405 *dp++ = (png_byte)(((int)*rp++ - p) & 0xff);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002406 }
2407 best_row = png_ptr->paeth_row;
2408 }
2409
2410 else if (filter_to_do & PNG_FILTER_PAETH)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002411 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002412 png_bytep rp, dp, pp, cp, lp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002413 png_uint_32 sum = 0, lmins = mins;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002414 png_uint_32 i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002415 int v;
2416
2417#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2418 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2419 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002420 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002421 png_uint_32 lmhi, lmlo;
2422 lmlo = lmins & PNG_LOMASK;
2423 lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
2424
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002425 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002426 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002427 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_PAETH)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002428 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002429 lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002430 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002431 lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002432 PNG_WEIGHT_SHIFT;
2433 }
2434 }
2435
2436 lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2437 PNG_COST_SHIFT;
2438 lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2439 PNG_COST_SHIFT;
2440
2441 if (lmhi > PNG_HIMASK)
2442 lmins = PNG_MAXSUM;
2443 else
2444 lmins = (lmhi << PNG_HISHIFT) + lmlo;
2445 }
2446#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002447
2448 for (i = 0, rp = row_buf + 1, dp = png_ptr->paeth_row + 1,
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002449 pp = prev_row + 1; i < bpp; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002450 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002451 v = *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002452
2453 sum += (v < 128) ? v : 256 - v;
2454 }
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002455
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002456 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05002457 {
2458 int a, b, c, pa, pb, pc, p;
2459
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002460 b = *pp++;
2461 c = *cp++;
2462 a = *lp++;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002463
2464#ifndef PNG_SLOW_PAETH
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002465 p = b - c;
2466 pc = a - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002467#ifdef PNG_USE_ABS
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002468 pa = abs(p);
2469 pb = abs(pc);
2470 pc = abs(p + pc);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002471#else
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002472 pa = p < 0 ? -p : p;
2473 pb = pc < 0 ? -pc : pc;
2474 pc = (p + pc) < 0 ? -(p + pc) : p + pc;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002475#endif
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002476 p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
2477#else /* PNG_SLOW_PAETH */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002478 p = a + b - c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002479 pa = abs(p - a);
2480 pb = abs(p - b);
2481 pc = abs(p - c);
Guy Schalnate5a37791996-06-05 15:50:50 -05002482 if (pa <= pb && pa <= pc)
2483 p = a;
2484 else if (pb <= pc)
2485 p = b;
2486 else
2487 p = c;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002488#endif /* PNG_SLOW_PAETH */
Guy Schalnate5a37791996-06-05 15:50:50 -05002489
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002490 v = *dp++ = (png_byte)(((int)*rp++ - p) & 0xff);
Guy Schalnate5a37791996-06-05 15:50:50 -05002491
2492 sum += (v < 128) ? v : 256 - v;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002493
2494 if (sum > lmins) /* We are already worse, don't continue. */
2495 break;
Guy Schalnate5a37791996-06-05 15:50:50 -05002496 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002497
2498#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2499 if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
2500 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002501 int j;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002502 png_uint_32 sumhi, sumlo;
2503 sumlo = sum & PNG_LOMASK;
2504 sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
2505
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002506 for (j = 0; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002507 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002508 if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_PAETH)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002509 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002510 sumlo = (sumlo * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002511 PNG_WEIGHT_SHIFT;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002512 sumhi = (sumhi * png_ptr->filter_weights[j]) >>
Andreas Dilger47a0c421997-05-16 02:46:07 -05002513 PNG_WEIGHT_SHIFT;
2514 }
2515 }
2516
2517 sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2518 PNG_COST_SHIFT;
2519 sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_PAETH]) >>
2520 PNG_COST_SHIFT;
2521
2522 if (sumhi > PNG_HIMASK)
2523 sum = PNG_MAXSUM;
2524 else
2525 sum = (sumhi << PNG_HISHIFT) + sumlo;
2526 }
2527#endif
2528
Guy Schalnate5a37791996-06-05 15:50:50 -05002529 if (sum < mins)
2530 {
2531 best_row = png_ptr->paeth_row;
2532 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002533 }
2534
Andreas Dilger47a0c421997-05-16 02:46:07 -05002535 /* Do the actual writing of the filtered row data from the chosen filter. */
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002536
Guy Schalnate5a37791996-06-05 15:50:50 -05002537 png_write_filtered_row(png_ptr, best_row);
Andreas Dilger47a0c421997-05-16 02:46:07 -05002538
2539#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2540 /* Save the type of filter we picked this time for future calculations */
2541 if (png_ptr->num_prev_filters > 0)
2542 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002543 int j;
2544 for (j = 1; j < num_p_filters; j++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002545 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002546 png_ptr->prev_filters[j] = png_ptr->prev_filters[j - 1];
Andreas Dilger47a0c421997-05-16 02:46:07 -05002547 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002548 png_ptr->prev_filters[j] = best_row[0];
Andreas Dilger47a0c421997-05-16 02:46:07 -05002549 }
2550#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002551}
2552
2553
Andreas Dilger47a0c421997-05-16 02:46:07 -05002554/* Do the actual writing of a previously filtered row. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002555void /* PRIVATE */
Guy Schalnate5a37791996-06-05 15:50:50 -05002556png_write_filtered_row(png_structp png_ptr, png_bytep filtered_row)
2557{
Andreas Dilger47a0c421997-05-16 02:46:07 -05002558 png_debug(1, "in png_write_filtered_row\n");
2559 png_debug1(2, "filter = %d\n", filtered_row[0]);
Guy Schalnate5a37791996-06-05 15:50:50 -05002560 /* set up the zlib input buffer */
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06002561
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002562 png_ptr->zstream.next_in = filtered_row;
2563 png_ptr->zstream.avail_in = (uInt)png_ptr->row_info.rowbytes + 1;
Guy Schalnate5a37791996-06-05 15:50:50 -05002564 /* repeat until we have compressed all the data */
2565 do
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002566 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002567 int ret; /* return of zlib */
Guy Schalnat0d580581995-07-20 02:43:20 -05002568
Guy Schalnate5a37791996-06-05 15:50:50 -05002569 /* compress the data */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002570 ret = deflate(&png_ptr->zstream, Z_NO_FLUSH);
Guy Schalnate5a37791996-06-05 15:50:50 -05002571 /* check for compression errors */
2572 if (ret != Z_OK)
2573 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05002574 if (png_ptr->zstream.msg != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002575 png_error(png_ptr, png_ptr->zstream.msg);
Guy Schalnate5a37791996-06-05 15:50:50 -05002576 else
2577 png_error(png_ptr, "zlib error");
2578 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002579
Guy Schalnate5a37791996-06-05 15:50:50 -05002580 /* see if it is time to write another IDAT */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002581 if (!(png_ptr->zstream.avail_out))
Guy Schalnate5a37791996-06-05 15:50:50 -05002582 {
2583 /* write the IDAT and reset the zlib output buffer */
2584 png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002585 png_ptr->zstream.next_out = png_ptr->zbuf;
2586 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
Guy Schalnate5a37791996-06-05 15:50:50 -05002587 }
2588 /* repeat until all data has been compressed */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002589 } while (png_ptr->zstream.avail_in);
Guy Schalnate5a37791996-06-05 15:50:50 -05002590
Guy Schalnatc21f90c1996-06-17 16:24:45 -05002591 /* swap the current and previous rows */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002592 if (png_ptr->prev_row != NULL)
Guy Schalnatc21f90c1996-06-17 16:24:45 -05002593 {
2594 png_bytep tptr;
2595
2596 tptr = png_ptr->prev_row;
2597 png_ptr->prev_row = png_ptr->row_buf;
2598 png_ptr->row_buf = tptr;
2599 }
2600
Guy Schalnate5a37791996-06-05 15:50:50 -05002601 /* finish row - updates counters and flushes zlib if last row */
2602 png_write_finish_row(png_ptr);
2603
2604#if defined(PNG_WRITE_FLUSH_SUPPORTED)
2605 png_ptr->flush_rows++;
2606
2607 if (png_ptr->flush_dist > 0 &&
2608 png_ptr->flush_rows >= png_ptr->flush_dist)
Guy Schalnat0d580581995-07-20 02:43:20 -05002609 {
Guy Schalnate5a37791996-06-05 15:50:50 -05002610 png_write_flush(png_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05002611 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002612#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002613}