2 /* pngwutil.c - utilities to write a PNG file
4 * libpng 1.0.10 - March 30, 2001
5 * For conditions of distribution and use, see copyright notice in png.h
6 * Copyright (c) 1998-2001 Glenn Randers-Pehrson
7 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
8 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
13 #ifdef PNG_WRITE_SUPPORTED
15 /* Place a 32-bit number into a buffer in PNG byte order. We work
16 * with unsigned numbers for convenience, although one supported
17 * ancillary chunk uses signed (two's complement) numbers.
20 png_save_uint_32(png_bytep buf
, png_uint_32 i
)
22 buf
[0] = (png_byte
)((i
>> 24) & 0xff);
23 buf
[1] = (png_byte
)((i
>> 16) & 0xff);
24 buf
[2] = (png_byte
)((i
>> 8) & 0xff);
25 buf
[3] = (png_byte
)(i
& 0xff);
28 #if defined(PNG_WRITE_pCAL_SUPPORTED)
29 /* The png_save_int_32 function assumes integers are stored in two's
30 * complement format. If this isn't the case, then this routine needs to
31 * be modified to write data in two's complement format.
34 png_save_int_32(png_bytep buf
, png_int_32 i
)
36 buf
[0] = (png_byte
)((i
>> 24) & 0xff);
37 buf
[1] = (png_byte
)((i
>> 16) & 0xff);
38 buf
[2] = (png_byte
)((i
>> 8) & 0xff);
39 buf
[3] = (png_byte
)(i
& 0xff);
43 /* Place a 16-bit number into a buffer in PNG byte order.
44 * The parameter is declared unsigned int, not png_uint_16,
45 * just to avoid potential problems on pre-ANSI C compilers.
48 png_save_uint_16(png_bytep buf
, unsigned int i
)
50 buf
[0] = (png_byte
)((i
>> 8) & 0xff);
51 buf
[1] = (png_byte
)(i
& 0xff);
54 /* Write a PNG chunk all at once. The type is an array of ASCII characters
55 * representing the chunk name. The array must be at least 4 bytes in
56 * length, and does not need to be null terminated. To be safe, pass the
57 * pre-defined chunk names here, and if you need a new one, define it
58 * where the others are defined. The length is the length of the data.
59 * All the data must be present. If that is not possible, use the
60 * png_write_chunk_start(), png_write_chunk_data(), and png_write_chunk_end()
64 png_write_chunk(png_structp png_ptr
, png_bytep chunk_name
,
65 png_bytep data
, png_size_t length
)
67 png_write_chunk_start(png_ptr
, chunk_name
, (png_uint_32
)length
);
68 png_write_chunk_data(png_ptr
, data
, length
);
69 png_write_chunk_end(png_ptr
);
72 /* Write the start of a PNG chunk. The type is the chunk type.
73 * The total_length is the sum of the lengths of all the data you will be
74 * passing in png_write_chunk_data().
77 png_write_chunk_start(png_structp png_ptr
, png_bytep chunk_name
,
81 png_debug2(0, "Writing %s chunk (%lu bytes)\n", chunk_name
, length
);
83 /* write the length */
84 png_save_uint_32(buf
, length
);
85 png_write_data(png_ptr
, buf
, (png_size_t
)4);
87 /* write the chunk name */
88 png_write_data(png_ptr
, chunk_name
, (png_size_t
)4);
89 /* reset the crc and run it over the chunk name */
90 png_reset_crc(png_ptr
);
91 png_calculate_crc(png_ptr
, chunk_name
, (png_size_t
)4);
94 /* Write the data of a PNG chunk started with png_write_chunk_start().
95 * Note that multiple calls to this function are allowed, and that the
96 * sum of the lengths from these calls *must* add up to the total_length
97 * given to png_write_chunk_start().
100 png_write_chunk_data(png_structp png_ptr
, png_bytep data
, png_size_t length
)
102 /* write the data, and run the CRC over it */
103 if (data
!= NULL
&& length
> 0)
105 png_calculate_crc(png_ptr
, data
, length
);
106 png_write_data(png_ptr
, data
, length
);
110 /* Finish a chunk started with png_write_chunk_start(). */
112 png_write_chunk_end(png_structp png_ptr
)
117 png_save_uint_32(buf
, png_ptr
->crc
);
119 png_write_data(png_ptr
, buf
, (png_size_t
)4);
122 /* Simple function to write the signature. If we have already written
123 * the magic bytes of the signature, or more likely, the PNG stream is
124 * being embedded into another stream and doesn't need its own signature,
125 * we should call png_set_sig_bytes() to tell libpng how many of the
126 * bytes have already been written.
129 png_write_sig(png_structp png_ptr
)
131 png_byte png_signature
[8] = {137, 80, 78, 71, 13, 10, 26, 10};
132 /* write the rest of the 8 byte signature */
133 png_write_data(png_ptr
, &png_signature
[png_ptr
->sig_bytes
],
134 (png_size_t
)8 - png_ptr
->sig_bytes
);
135 if(png_ptr
->sig_bytes
< 3)
136 png_ptr
->mode
|= PNG_HAVE_PNG_SIGNATURE
;
139 #if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_iCCP_SUPPORTED)
141 * This pair of functions encapsulates the operation of (a) compressing a
142 * text string, and (b) issuing it later as a series of chunk data writes.
143 * The compression_state structure is shared context for these functions
144 * set up by the caller in order to make the whole mess thread-safe.
149 char *input
; /* the uncompressed input data */
150 int input_len
; /* its length */
151 int num_output_ptr
; /* number of output pointers used */
152 int max_output_ptr
; /* size of output_ptr */
153 png_charpp output_ptr
; /* array of pointers to output */
156 /* compress given text into storage in the png_ptr structure */
157 static int /* PRIVATE */
158 png_text_compress(png_structp png_ptr
,
159 png_charp text
, png_size_t text_len
, int compression
,
160 compression_state
*comp
)
164 comp
->num_output_ptr
= comp
->max_output_ptr
= 0;
165 comp
->output_ptr
= NULL
;
168 /* we may just want to pass the text right through */
169 if (compression
== PNG_TEXT_COMPRESSION_NONE
)
172 comp
->input_len
= text_len
;
173 return((int)text_len
);
176 if (compression
>= PNG_TEXT_COMPRESSION_LAST
)
178 #if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
180 sprintf(msg
, "Unknown compression type %d", compression
);
181 png_warning(png_ptr
, msg
);
183 png_warning(png_ptr
, "Unknown compression type");
187 /* We can't write the chunk until we find out how much data we have,
188 * which means we need to run the compressor first and save the
189 * output. This shouldn't be a problem, as the vast majority of
190 * comments should be reasonable, but we will set up an array of
191 * malloc'd pointers to be sure.
193 * If we knew the application was well behaved, we could simplify this
194 * greatly by assuming we can always malloc an output buffer large
195 * enough to hold the compressed text ((1001 * text_len / 1000) + 12)
196 * and malloc this directly. The only time this would be a bad idea is
197 * if we can't malloc more than 64K and we have 64K of random input
198 * data, or if the input string is incredibly large (although this
199 * wouldn't cause a failure, just a slowdown due to swapping).
202 /* set up the compression buffers */
203 png_ptr
->zstream
.avail_in
= (uInt
)text_len
;
204 png_ptr
->zstream
.next_in
= (Bytef
*)text
;
205 png_ptr
->zstream
.avail_out
= (uInt
)png_ptr
->zbuf_size
;
206 png_ptr
->zstream
.next_out
= (Bytef
*)png_ptr
->zbuf
;
208 /* this is the same compression loop as in png_write_row() */
211 /* compress the data */
212 ret
= deflate(&png_ptr
->zstream
, Z_NO_FLUSH
);
216 if (png_ptr
->zstream
.msg
!= NULL
)
217 png_error(png_ptr
, png_ptr
->zstream
.msg
);
219 png_error(png_ptr
, "zlib error");
221 /* check to see if we need more room */
222 if (!png_ptr
->zstream
.avail_out
&& png_ptr
->zstream
.avail_in
)
224 /* make sure the output array has room */
225 if (comp
->num_output_ptr
>= comp
->max_output_ptr
)
229 old_max
= comp
->max_output_ptr
;
230 comp
->max_output_ptr
= comp
->num_output_ptr
+ 4;
231 if (comp
->output_ptr
!= NULL
)
235 old_ptr
= comp
->output_ptr
;
236 comp
->output_ptr
= (png_charpp
)png_malloc(png_ptr
,
237 (png_uint_32
)(comp
->max_output_ptr
* sizeof (png_charpp
)));
238 png_memcpy(comp
->output_ptr
, old_ptr
,
239 old_max
* sizeof (png_charp
));
240 png_free(png_ptr
, old_ptr
);
243 comp
->output_ptr
= (png_charpp
)png_malloc(png_ptr
,
244 (png_uint_32
)(comp
->max_output_ptr
* sizeof (png_charp
)));
248 comp
->output_ptr
[comp
->num_output_ptr
] = (png_charp
)png_malloc(png_ptr
,
249 (png_uint_32
)png_ptr
->zbuf_size
);
250 png_memcpy(comp
->output_ptr
[comp
->num_output_ptr
], png_ptr
->zbuf
,
252 comp
->num_output_ptr
++;
254 /* and reset the buffer */
255 png_ptr
->zstream
.avail_out
= (uInt
)png_ptr
->zbuf_size
;
256 png_ptr
->zstream
.next_out
= png_ptr
->zbuf
;
258 /* continue until we don't have any more to compress */
259 } while (png_ptr
->zstream
.avail_in
);
261 /* finish the compression */
264 /* tell zlib we are finished */
265 ret
= deflate(&png_ptr
->zstream
, Z_FINISH
);
269 /* check to see if we need more room */
270 if (!(png_ptr
->zstream
.avail_out
))
272 /* check to make sure our output array has room */
273 if (comp
->num_output_ptr
>= comp
->max_output_ptr
)
277 old_max
= comp
->max_output_ptr
;
278 comp
->max_output_ptr
= comp
->num_output_ptr
+ 4;
279 if (comp
->output_ptr
!= NULL
)
283 old_ptr
= comp
->output_ptr
;
284 /* This could be optimized to realloc() */
285 comp
->output_ptr
= (png_charpp
)png_malloc(png_ptr
,
286 (png_uint_32
)(comp
->max_output_ptr
* sizeof (png_charpp
)));
287 png_memcpy(comp
->output_ptr
, old_ptr
,
288 old_max
* sizeof (png_charp
));
289 png_free(png_ptr
, old_ptr
);
292 comp
->output_ptr
= (png_charpp
)png_malloc(png_ptr
,
293 (png_uint_32
)(comp
->max_output_ptr
* sizeof (png_charp
)));
296 /* save off the data */
297 comp
->output_ptr
[comp
->num_output_ptr
] =
298 (png_charp
)png_malloc(png_ptr
, (png_uint_32
)png_ptr
->zbuf_size
);
299 png_memcpy(comp
->output_ptr
[comp
->num_output_ptr
], png_ptr
->zbuf
,
301 comp
->num_output_ptr
++;
303 /* and reset the buffer pointers */
304 png_ptr
->zstream
.avail_out
= (uInt
)png_ptr
->zbuf_size
;
305 png_ptr
->zstream
.next_out
= png_ptr
->zbuf
;
308 else if (ret
!= Z_STREAM_END
)
310 /* we got an error */
311 if (png_ptr
->zstream
.msg
!= NULL
)
312 png_error(png_ptr
, png_ptr
->zstream
.msg
);
314 png_error(png_ptr
, "zlib error");
316 } while (ret
!= Z_STREAM_END
);
318 /* text length is number of buffers plus last buffer */
319 text_len
= png_ptr
->zbuf_size
* comp
->num_output_ptr
;
320 if (png_ptr
->zstream
.avail_out
< png_ptr
->zbuf_size
)
321 text_len
+= png_ptr
->zbuf_size
- (png_size_t
)png_ptr
->zstream
.avail_out
;
323 return((int)text_len
);
326 /* ship the compressed text out via chunk writes */
327 static void /* PRIVATE */
328 png_write_compressed_data_out(png_structp png_ptr
, compression_state
*comp
)
332 /* handle the no-compression case */
335 png_write_chunk_data(png_ptr
, (png_bytep
)comp
->input
, comp
->input_len
);
339 /* write saved output buffers, if any */
340 for (i
= 0; i
< comp
->num_output_ptr
; i
++)
342 png_write_chunk_data(png_ptr
,(png_bytep
)comp
->output_ptr
[i
],
344 png_free(png_ptr
, comp
->output_ptr
[i
]);
345 comp
->output_ptr
[i
]=NULL
;
347 if (comp
->max_output_ptr
!= 0)
348 png_free(png_ptr
, comp
->output_ptr
);
349 comp
->output_ptr
=NULL
;
350 /* write anything left in zbuf */
351 if (png_ptr
->zstream
.avail_out
< (png_uint_32
)png_ptr
->zbuf_size
)
352 png_write_chunk_data(png_ptr
, png_ptr
->zbuf
,
353 png_ptr
->zbuf_size
- png_ptr
->zstream
.avail_out
);
355 /* reset zlib for another zTXt/iTXt or the image data */
356 deflateReset(&png_ptr
->zstream
);
361 /* Write the IHDR chunk, and update the png_struct with the necessary
362 * information. Note that the rest of this code depends upon this
363 * information being correct.
366 png_write_IHDR(png_structp png_ptr
, png_uint_32 width
, png_uint_32 height
,
367 int bit_depth
, int color_type
, int compression_type
, int filter_type
,
370 #ifdef PNG_USE_LOCAL_ARRAYS
373 png_byte buf
[13]; /* buffer to store the IHDR info */
375 png_debug(1, "in png_write_IHDR\n");
376 /* Check that we have valid input data from the application info */
379 case PNG_COLOR_TYPE_GRAY
:
386 case 16: png_ptr
->channels
= 1; break;
387 default: png_error(png_ptr
,"Invalid bit depth for grayscale image");
390 case PNG_COLOR_TYPE_RGB
:
391 if (bit_depth
!= 8 && bit_depth
!= 16)
392 png_error(png_ptr
, "Invalid bit depth for RGB image");
393 png_ptr
->channels
= 3;
395 case PNG_COLOR_TYPE_PALETTE
:
401 case 8: png_ptr
->channels
= 1; break;
402 default: png_error(png_ptr
, "Invalid bit depth for paletted image");
405 case PNG_COLOR_TYPE_GRAY_ALPHA
:
406 if (bit_depth
!= 8 && bit_depth
!= 16)
407 png_error(png_ptr
, "Invalid bit depth for grayscale+alpha image");
408 png_ptr
->channels
= 2;
410 case PNG_COLOR_TYPE_RGB_ALPHA
:
411 if (bit_depth
!= 8 && bit_depth
!= 16)
412 png_error(png_ptr
, "Invalid bit depth for RGBA image");
413 png_ptr
->channels
= 4;
416 png_error(png_ptr
, "Invalid image color type specified");
419 if (compression_type
!= PNG_COMPRESSION_TYPE_BASE
)
421 png_warning(png_ptr
, "Invalid compression type specified");
422 compression_type
= PNG_COMPRESSION_TYPE_BASE
;
425 /* Write filter_method 64 (intrapixel differencing) only if
426 * 1. Libpng was compiled with PNG_MNG_FEATURES_SUPPORTED and
427 * 2. Libpng did not write a PNG signature (this filter_method is only
428 * used in PNG datastreams that are embedded in MNG datastreams) and
429 * 3. The application called png_permit_mng_features with a mask that
430 * included PNG_FLAG_MNG_FILTER_64 and
431 * 4. The filter_method is 64 and
432 * 5. The color_type is RGB or RGBA
435 #if defined(PNG_MNG_FEATURES_SUPPORTED)
436 !((png_ptr
->mng_features_permitted
& PNG_FLAG_MNG_FILTER_64
) &&
437 ((png_ptr
->mode
&PNG_HAVE_PNG_SIGNATURE
) == 0) &&
438 (color_type
== PNG_COLOR_TYPE_RGB
||
439 color_type
== PNG_COLOR_TYPE_RGB_ALPHA
) &&
440 (filter_type
== PNG_INTRAPIXEL_DIFFERENCING
)) &&
442 filter_type
!= PNG_FILTER_TYPE_BASE
)
444 png_warning(png_ptr
, "Invalid filter type specified");
445 filter_type
= PNG_FILTER_TYPE_BASE
;
448 #ifdef PNG_WRITE_INTERLACING_SUPPORTED
449 if (interlace_type
!= PNG_INTERLACE_NONE
&&
450 interlace_type
!= PNG_INTERLACE_ADAM7
)
452 png_warning(png_ptr
, "Invalid interlace type specified");
453 interlace_type
= PNG_INTERLACE_ADAM7
;
456 interlace_type
=PNG_INTERLACE_NONE
;
459 /* save off the relevent information */
460 png_ptr
->bit_depth
= (png_byte
)bit_depth
;
461 png_ptr
->color_type
= (png_byte
)color_type
;
462 png_ptr
->interlaced
= (png_byte
)interlace_type
;
463 png_ptr
->filter_type
= (png_byte
)filter_type
;
464 png_ptr
->width
= width
;
465 png_ptr
->height
= height
;
467 png_ptr
->pixel_depth
= (png_byte
)(bit_depth
* png_ptr
->channels
);
468 png_ptr
->rowbytes
= ((width
* (png_size_t
)png_ptr
->pixel_depth
+ 7) >> 3);
469 /* set the usr info, so any transformations can modify it */
470 png_ptr
->usr_width
= png_ptr
->width
;
471 png_ptr
->usr_bit_depth
= png_ptr
->bit_depth
;
472 png_ptr
->usr_channels
= png_ptr
->channels
;
474 /* pack the header information into the buffer */
475 png_save_uint_32(buf
, width
);
476 png_save_uint_32(buf
+ 4, height
);
477 buf
[8] = (png_byte
)bit_depth
;
478 buf
[9] = (png_byte
)color_type
;
479 buf
[10] = (png_byte
)compression_type
;
480 buf
[11] = (png_byte
)filter_type
;
481 buf
[12] = (png_byte
)interlace_type
;
483 /* write the chunk */
484 png_write_chunk(png_ptr
, (png_bytep
)png_IHDR
, buf
, (png_size_t
)13);
486 /* initialize zlib with PNG info */
487 png_ptr
->zstream
.zalloc
= png_zalloc
;
488 png_ptr
->zstream
.zfree
= png_zfree
;
489 png_ptr
->zstream
.opaque
= (voidpf
)png_ptr
;
490 if (!(png_ptr
->do_filter
))
492 if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
||
493 png_ptr
->bit_depth
< 8)
494 png_ptr
->do_filter
= PNG_FILTER_NONE
;
496 png_ptr
->do_filter
= PNG_ALL_FILTERS
;
498 if (!(png_ptr
->flags
& PNG_FLAG_ZLIB_CUSTOM_STRATEGY
))
500 if (png_ptr
->do_filter
!= PNG_FILTER_NONE
)
501 png_ptr
->zlib_strategy
= Z_FILTERED
;
503 png_ptr
->zlib_strategy
= Z_DEFAULT_STRATEGY
;
505 if (!(png_ptr
->flags
& PNG_FLAG_ZLIB_CUSTOM_LEVEL
))
506 png_ptr
->zlib_level
= Z_DEFAULT_COMPRESSION
;
507 if (!(png_ptr
->flags
& PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL
))
508 png_ptr
->zlib_mem_level
= 8;
509 if (!(png_ptr
->flags
& PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS
))
510 png_ptr
->zlib_window_bits
= 15;
511 if (!(png_ptr
->flags
& PNG_FLAG_ZLIB_CUSTOM_METHOD
))
512 png_ptr
->zlib_method
= 8;
513 deflateInit2(&png_ptr
->zstream
, png_ptr
->zlib_level
,
514 png_ptr
->zlib_method
, png_ptr
->zlib_window_bits
,
515 png_ptr
->zlib_mem_level
, png_ptr
->zlib_strategy
);
516 png_ptr
->zstream
.next_out
= png_ptr
->zbuf
;
517 png_ptr
->zstream
.avail_out
= (uInt
)png_ptr
->zbuf_size
;
519 png_ptr
->mode
= PNG_HAVE_IHDR
;
522 /* write the palette. We are careful not to trust png_color to be in the
523 * correct order for PNG, so people can redefine it to any convenient
527 png_write_PLTE(png_structp png_ptr
, png_colorp palette
, png_uint_32 num_pal
)
529 #ifdef PNG_USE_LOCAL_ARRAYS
536 png_debug(1, "in png_write_PLTE\n");
538 #if defined(PNG_MNG_FEATURES_SUPPORTED) || \
539 defined (PNG_WRITE_EMPTY_PLTE_SUPPORTED)
540 !(png_ptr
->mng_features_permitted
& PNG_FLAG_MNG_EMPTY_PLTE
) &&
542 num_pal
== 0) || num_pal
> 256)
544 if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
546 png_error(png_ptr
, "Invalid number of colors in palette");
550 png_warning(png_ptr
, "Invalid number of colors in palette");
555 png_ptr
->num_palette
= (png_uint_16
)num_pal
;
556 png_debug1(3, "num_palette = %d\n", png_ptr
->num_palette
);
558 png_write_chunk_start(png_ptr
, (png_bytep
)png_PLTE
, num_pal
* 3);
559 #ifndef PNG_NO_POINTER_INDEXING
560 for (i
= 0, pal_ptr
= palette
; i
< num_pal
; i
++, pal_ptr
++)
562 buf
[0] = pal_ptr
->red
;
563 buf
[1] = pal_ptr
->green
;
564 buf
[2] = pal_ptr
->blue
;
565 png_write_chunk_data(png_ptr
, buf
, (png_size_t
)3);
568 /* This is a little slower but some buggy compilers need to do this instead */
570 for (i
= 0; i
< num_pal
; i
++)
572 buf
[0] = pal_ptr
[i
].red
;
573 buf
[1] = pal_ptr
[i
].green
;
574 buf
[2] = pal_ptr
[i
].blue
;
575 png_write_chunk_data(png_ptr
, buf
, (png_size_t
)3);
578 png_write_chunk_end(png_ptr
);
579 png_ptr
->mode
|= PNG_HAVE_PLTE
;
582 /* write an IDAT chunk */
584 png_write_IDAT(png_structp png_ptr
, png_bytep data
, png_size_t length
)
586 #ifdef PNG_USE_LOCAL_ARRAYS
589 png_debug(1, "in png_write_IDAT\n");
590 png_write_chunk(png_ptr
, (png_bytep
)png_IDAT
, data
, length
);
591 png_ptr
->mode
|= PNG_HAVE_IDAT
;
594 /* write an IEND chunk */
596 png_write_IEND(png_structp png_ptr
)
598 #ifdef PNG_USE_LOCAL_ARRAYS
601 png_debug(1, "in png_write_IEND\n");
602 png_write_chunk(png_ptr
, (png_bytep
)png_IEND
, NULL
, (png_size_t
)0);
603 png_ptr
->mode
|= PNG_HAVE_IEND
;
606 #if defined(PNG_WRITE_gAMA_SUPPORTED)
607 /* write a gAMA chunk */
608 #ifdef PNG_FLOATING_POINT_SUPPORTED
610 png_write_gAMA(png_structp png_ptr
, double file_gamma
)
612 #ifdef PNG_USE_LOCAL_ARRAYS
618 png_debug(1, "in png_write_gAMA\n");
619 /* file_gamma is saved in 1/100,000ths */
620 igamma
= (png_uint_32
)(file_gamma
* 100000.0 + 0.5);
621 png_save_uint_32(buf
, igamma
);
622 png_write_chunk(png_ptr
, (png_bytep
)png_gAMA
, buf
, (png_size_t
)4);
625 #ifdef PNG_FIXED_POINT_SUPPORTED
627 png_write_gAMA_fixed(png_structp png_ptr
, png_fixed_point file_gamma
)
629 #ifdef PNG_USE_LOCAL_ARRAYS
634 png_debug(1, "in png_write_gAMA\n");
635 /* file_gamma is saved in 1/100,000ths */
636 png_save_uint_32(buf
, file_gamma
);
637 png_write_chunk(png_ptr
, (png_bytep
)png_gAMA
, buf
, (png_size_t
)4);
642 #if defined(PNG_WRITE_sRGB_SUPPORTED)
643 /* write a sRGB chunk */
645 png_write_sRGB(png_structp png_ptr
, int srgb_intent
)
647 #ifdef PNG_USE_LOCAL_ARRAYS
652 png_debug(1, "in png_write_sRGB\n");
653 if(srgb_intent
>= PNG_sRGB_INTENT_LAST
)
655 "Invalid sRGB rendering intent specified");
656 buf
[0]=(png_byte
)srgb_intent
;
657 png_write_chunk(png_ptr
, (png_bytep
)png_sRGB
, buf
, (png_size_t
)1);
661 #if defined(PNG_WRITE_iCCP_SUPPORTED)
662 /* write an iCCP chunk */
664 png_write_iCCP(png_structp png_ptr
, png_charp name
, int compression_type
,
665 png_charp profile
, int profile_len
)
667 #ifdef PNG_USE_LOCAL_ARRAYS
672 compression_state comp
;
674 png_debug(1, "in png_write_iCCP\n");
675 if (name
== NULL
|| (name_len
= png_check_keyword(png_ptr
, name
,
678 png_warning(png_ptr
, "Empty keyword in iCCP chunk");
682 if (compression_type
!= PNG_COMPRESSION_TYPE_BASE
)
683 png_warning(png_ptr
, "Unknown compression type in iCCP chunk");
689 profile_len
= png_text_compress(png_ptr
, profile
, (png_size_t
)profile_len
,
690 PNG_COMPRESSION_TYPE_BASE
, &comp
);
692 /* make sure we include the NULL after the name and the compression type */
693 png_write_chunk_start(png_ptr
, (png_bytep
)png_iCCP
,
694 (png_uint_32
)name_len
+profile_len
+2);
695 new_name
[name_len
+1]=0x00;
696 png_write_chunk_data(png_ptr
, (png_bytep
)new_name
, name_len
+ 2);
699 png_write_compressed_data_out(png_ptr
, &comp
);
701 png_write_chunk_end(png_ptr
);
702 png_free(png_ptr
, new_name
);
706 #if defined(PNG_WRITE_sPLT_SUPPORTED)
707 /* write a sPLT chunk */
709 png_write_sPLT(png_structp png_ptr
, png_sPLT_tp spalette
)
711 #ifdef PNG_USE_LOCAL_ARRAYS
716 png_byte entrybuf
[10];
717 int entry_size
= (spalette
->depth
== 8 ? 6 : 10);
718 int palette_size
= entry_size
* spalette
->nentries
;
720 #ifdef PNG_NO_POINTER_INDEXING
724 png_debug(1, "in png_write_sPLT\n");
725 if (spalette
->name
== NULL
|| (name_len
= png_check_keyword(png_ptr
,
726 spalette
->name
, &new_name
))==0)
728 png_warning(png_ptr
, "Empty keyword in sPLT chunk");
732 /* make sure we include the NULL after the name */
733 png_write_chunk_start(png_ptr
, (png_bytep
) png_sPLT
,
734 (png_uint_32
)(name_len
+ 2 + palette_size
));
735 png_write_chunk_data(png_ptr
, (png_bytep
)new_name
, name_len
+ 1);
736 png_write_chunk_data(png_ptr
, (png_bytep
)&spalette
->depth
, 1);
738 /* loop through each palette entry, writing appropriately */
739 #ifndef PNG_NO_POINTER_INDEXING
740 for (ep
= spalette
->entries
; ep
<spalette
->entries
+spalette
->nentries
; ep
++)
742 if (spalette
->depth
== 8)
744 entrybuf
[0] = (png_byte
)ep
->red
;
745 entrybuf
[1] = (png_byte
)ep
->green
;
746 entrybuf
[2] = (png_byte
)ep
->blue
;
747 entrybuf
[3] = (png_byte
)ep
->alpha
;
748 png_save_uint_16(entrybuf
+ 4, ep
->frequency
);
752 png_save_uint_16(entrybuf
+ 0, ep
->red
);
753 png_save_uint_16(entrybuf
+ 2, ep
->green
);
754 png_save_uint_16(entrybuf
+ 4, ep
->blue
);
755 png_save_uint_16(entrybuf
+ 6, ep
->alpha
);
756 png_save_uint_16(entrybuf
+ 8, ep
->frequency
);
758 png_write_chunk_data(png_ptr
, entrybuf
, entry_size
);
761 ep
=spalette
->entries
;
762 for (i
=0; i
>spalette
->nentries
; i
++)
764 if (spalette
->depth
== 8)
766 entrybuf
[0] = (png_byte
)ep
[i
].red
;
767 entrybuf
[1] = (png_byte
)ep
[i
].green
;
768 entrybuf
[2] = (png_byte
)ep
[i
].blue
;
769 entrybuf
[3] = (png_byte
)ep
[i
].alpha
;
770 png_save_uint_16(entrybuf
+ 4, ep
[i
].frequency
);
774 png_save_uint_16(entrybuf
+ 0, ep
[i
].red
);
775 png_save_uint_16(entrybuf
+ 2, ep
[i
].green
);
776 png_save_uint_16(entrybuf
+ 4, ep
[i
].blue
);
777 png_save_uint_16(entrybuf
+ 6, ep
[i
].alpha
);
778 png_save_uint_16(entrybuf
+ 8, ep
[i
].frequency
);
780 png_write_chunk_data(png_ptr
, entrybuf
, entry_size
);
784 png_write_chunk_end(png_ptr
);
785 png_free(png_ptr
, new_name
);
789 #if defined(PNG_WRITE_sBIT_SUPPORTED)
790 /* write the sBIT chunk */
792 png_write_sBIT(png_structp png_ptr
, png_color_8p sbit
, int color_type
)
794 #ifdef PNG_USE_LOCAL_ARRAYS
800 png_debug(1, "in png_write_sBIT\n");
801 /* make sure we don't depend upon the order of PNG_COLOR_8 */
802 if (color_type
& PNG_COLOR_MASK_COLOR
)
806 maxbits
= (png_byte
)(color_type
==PNG_COLOR_TYPE_PALETTE
? 8 :
807 png_ptr
->usr_bit_depth
);
808 if (sbit
->red
== 0 || sbit
->red
> maxbits
||
809 sbit
->green
== 0 || sbit
->green
> maxbits
||
810 sbit
->blue
== 0 || sbit
->blue
> maxbits
)
812 png_warning(png_ptr
, "Invalid sBIT depth specified");
816 buf
[1] = sbit
->green
;
822 if (sbit
->gray
== 0 || sbit
->gray
> png_ptr
->usr_bit_depth
)
824 png_warning(png_ptr
, "Invalid sBIT depth specified");
831 if (color_type
& PNG_COLOR_MASK_ALPHA
)
833 if (sbit
->alpha
== 0 || sbit
->alpha
> png_ptr
->usr_bit_depth
)
835 png_warning(png_ptr
, "Invalid sBIT depth specified");
838 buf
[size
++] = sbit
->alpha
;
841 png_write_chunk(png_ptr
, (png_bytep
)png_sBIT
, buf
, size
);
845 #if defined(PNG_WRITE_cHRM_SUPPORTED)
846 /* write the cHRM chunk */
847 #ifdef PNG_FLOATING_POINT_SUPPORTED
849 png_write_cHRM(png_structp png_ptr
, double white_x
, double white_y
,
850 double red_x
, double red_y
, double green_x
, double green_y
,
851 double blue_x
, double blue_y
)
853 #ifdef PNG_USE_LOCAL_ARRAYS
859 png_debug(1, "in png_write_cHRM\n");
860 /* each value is saved in 1/100,000ths */
861 if (white_x
< 0 || white_x
> 0.8 || white_y
< 0 || white_y
> 0.8 ||
862 white_x
+ white_y
> 1.0)
864 png_warning(png_ptr
, "Invalid cHRM white point specified");
865 #if !defined(PNG_NO_CONSOLE_IO)
866 fprintf(stderr
,"white_x=%f, white_y=%f\n",white_x
, white_y
);
870 itemp
= (png_uint_32
)(white_x
* 100000.0 + 0.5);
871 png_save_uint_32(buf
, itemp
);
872 itemp
= (png_uint_32
)(white_y
* 100000.0 + 0.5);
873 png_save_uint_32(buf
+ 4, itemp
);
875 if (red_x
< 0 || red_x
> 0.8 || red_y
< 0 || red_y
> 0.8 ||
878 png_warning(png_ptr
, "Invalid cHRM red point specified");
881 itemp
= (png_uint_32
)(red_x
* 100000.0 + 0.5);
882 png_save_uint_32(buf
+ 8, itemp
);
883 itemp
= (png_uint_32
)(red_y
* 100000.0 + 0.5);
884 png_save_uint_32(buf
+ 12, itemp
);
886 if (green_x
< 0 || green_x
> 0.8 || green_y
< 0 || green_y
> 0.8 ||
887 green_x
+ green_y
> 1.0)
889 png_warning(png_ptr
, "Invalid cHRM green point specified");
892 itemp
= (png_uint_32
)(green_x
* 100000.0 + 0.5);
893 png_save_uint_32(buf
+ 16, itemp
);
894 itemp
= (png_uint_32
)(green_y
* 100000.0 + 0.5);
895 png_save_uint_32(buf
+ 20, itemp
);
897 if (blue_x
< 0 || blue_x
> 0.8 || blue_y
< 0 || blue_y
> 0.8 ||
898 blue_x
+ blue_y
> 1.0)
900 png_warning(png_ptr
, "Invalid cHRM blue point specified");
903 itemp
= (png_uint_32
)(blue_x
* 100000.0 + 0.5);
904 png_save_uint_32(buf
+ 24, itemp
);
905 itemp
= (png_uint_32
)(blue_y
* 100000.0 + 0.5);
906 png_save_uint_32(buf
+ 28, itemp
);
908 png_write_chunk(png_ptr
, (png_bytep
)png_cHRM
, buf
, (png_size_t
)32);
911 #ifdef PNG_FIXED_POINT_SUPPORTED
913 png_write_cHRM_fixed(png_structp png_ptr
, png_fixed_point white_x
,
914 png_fixed_point white_y
, png_fixed_point red_x
, png_fixed_point red_y
,
915 png_fixed_point green_x
, png_fixed_point green_y
, png_fixed_point blue_x
,
916 png_fixed_point blue_y
)
918 #ifdef PNG_USE_LOCAL_ARRAYS
923 png_debug(1, "in png_write_cHRM\n");
924 /* each value is saved in 1/100,000ths */
925 if (white_x
> 80000L || white_y
> 80000L || white_x
+ white_y
> 100000L)
927 png_warning(png_ptr
, "Invalid fixed cHRM white point specified");
928 #if !defined(PNG_NO_CONSOLE_IO)
929 fprintf(stderr
,"white_x=%ld, white_y=%ld\n",white_x
, white_y
);
933 png_save_uint_32(buf
, white_x
);
934 png_save_uint_32(buf
+ 4, white_y
);
936 if (red_x
> 80000L || red_y
> 80000L || red_x
+ red_y
> 100000L)
938 png_warning(png_ptr
, "Invalid cHRM fixed red point specified");
941 png_save_uint_32(buf
+ 8, red_x
);
942 png_save_uint_32(buf
+ 12, red_y
);
944 if (green_x
> 80000L || green_y
> 80000L || green_x
+ green_y
> 100000L)
946 png_warning(png_ptr
, "Invalid fixed cHRM green point specified");
949 png_save_uint_32(buf
+ 16, green_x
);
950 png_save_uint_32(buf
+ 20, green_y
);
952 if (blue_x
> 80000L || blue_y
> 80000L || blue_x
+ blue_y
> 100000L)
954 png_warning(png_ptr
, "Invalid fixed cHRM blue point specified");
957 png_save_uint_32(buf
+ 24, blue_x
);
958 png_save_uint_32(buf
+ 28, blue_y
);
960 png_write_chunk(png_ptr
, (png_bytep
)png_cHRM
, buf
, (png_size_t
)32);
965 #if defined(PNG_WRITE_tRNS_SUPPORTED)
966 /* write the tRNS chunk */
968 png_write_tRNS(png_structp png_ptr
, png_bytep trans
, png_color_16p tran
,
969 int num_trans
, int color_type
)
971 #ifdef PNG_USE_LOCAL_ARRAYS
976 png_debug(1, "in png_write_tRNS\n");
977 if (color_type
== PNG_COLOR_TYPE_PALETTE
)
979 if (num_trans
<= 0 || num_trans
> (int)png_ptr
->num_palette
)
981 png_warning(png_ptr
,"Invalid number of transparent colors specified");
984 /* write the chunk out as it is */
985 png_write_chunk(png_ptr
, (png_bytep
)png_tRNS
, trans
, (png_size_t
)num_trans
);
987 else if (color_type
== PNG_COLOR_TYPE_GRAY
)
989 /* one 16 bit value */
990 png_save_uint_16(buf
, tran
->gray
);
991 png_write_chunk(png_ptr
, (png_bytep
)png_tRNS
, buf
, (png_size_t
)2);
993 else if (color_type
== PNG_COLOR_TYPE_RGB
)
995 /* three 16 bit values */
996 png_save_uint_16(buf
, tran
->red
);
997 png_save_uint_16(buf
+ 2, tran
->green
);
998 png_save_uint_16(buf
+ 4, tran
->blue
);
999 png_write_chunk(png_ptr
, (png_bytep
)png_tRNS
, buf
, (png_size_t
)6);
1003 png_warning(png_ptr
, "Can't write tRNS with an alpha channel");
1008 #if defined(PNG_WRITE_bKGD_SUPPORTED)
1009 /* write the background chunk */
1011 png_write_bKGD(png_structp png_ptr
, png_color_16p back
, int color_type
)
1013 #ifdef PNG_USE_LOCAL_ARRAYS
1018 png_debug(1, "in png_write_bKGD\n");
1019 if (color_type
== PNG_COLOR_TYPE_PALETTE
)
1022 #if defined(PNG_MNG_FEATURES_SUPPORTED) || \
1023 defined (PNG_WRITE_EMPTY_PLTE_SUPPORTED)
1024 (png_ptr
->num_palette
||
1025 (!(png_ptr
->mng_features_permitted
& PNG_FLAG_MNG_EMPTY_PLTE
))) &&
1027 back
->index
> png_ptr
->num_palette
)
1029 png_warning(png_ptr
, "Invalid background palette index");
1032 buf
[0] = back
->index
;
1033 png_write_chunk(png_ptr
, (png_bytep
)png_bKGD
, buf
, (png_size_t
)1);
1035 else if (color_type
& PNG_COLOR_MASK_COLOR
)
1037 png_save_uint_16(buf
, back
->red
);
1038 png_save_uint_16(buf
+ 2, back
->green
);
1039 png_save_uint_16(buf
+ 4, back
->blue
);
1040 png_write_chunk(png_ptr
, (png_bytep
)png_bKGD
, buf
, (png_size_t
)6);
1044 png_save_uint_16(buf
, back
->gray
);
1045 png_write_chunk(png_ptr
, (png_bytep
)png_bKGD
, buf
, (png_size_t
)2);
1050 #if defined(PNG_WRITE_hIST_SUPPORTED)
1051 /* write the histogram */
1053 png_write_hIST(png_structp png_ptr
, png_uint_16p hist
, int num_hist
)
1055 #ifdef PNG_USE_LOCAL_ARRAYS
1061 png_debug(1, "in png_write_hIST\n");
1062 if (num_hist
> (int)png_ptr
->num_palette
)
1064 png_debug2(3, "num_hist = %d, num_palette = %d\n", num_hist
,
1065 png_ptr
->num_palette
);
1066 png_warning(png_ptr
, "Invalid number of histogram entries specified");
1070 png_write_chunk_start(png_ptr
, (png_bytep
)png_hIST
, (png_uint_32
)(num_hist
* 2));
1071 for (i
= 0; i
< num_hist
; i
++)
1073 png_save_uint_16(buf
, hist
[i
]);
1074 png_write_chunk_data(png_ptr
, buf
, (png_size_t
)2);
1076 png_write_chunk_end(png_ptr
);
1080 #if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_pCAL_SUPPORTED) || \
1081 defined(PNG_WRITE_iCCP_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
1082 /* Check that the tEXt or zTXt keyword is valid per PNG 1.0 specification,
1083 * and if invalid, correct the keyword rather than discarding the entire
1084 * chunk. The PNG 1.0 specification requires keywords 1-79 characters in
1085 * length, forbids leading or trailing whitespace, multiple internal spaces,
1086 * and the non-break space (0x80) from ISO 8859-1. Returns keyword length.
1088 * The new_key is allocated to hold the corrected keyword and must be freed
1089 * by the calling routine. This avoids problems with trying to write to
1090 * static keywords without having to have duplicate copies of the strings.
1092 png_size_t
/* PRIVATE */
1093 png_check_keyword(png_structp png_ptr
, png_charp key
, png_charpp new_key
)
1100 png_debug(1, "in png_check_keyword\n");
1103 if (key
== NULL
|| (key_len
= png_strlen(key
)) == 0)
1105 png_warning(png_ptr
, "zero length keyword");
1106 return ((png_size_t
)0);
1109 png_debug1(2, "Keyword to be checked is '%s'\n", key
);
1111 *new_key
= (png_charp
)png_malloc(png_ptr
, (png_uint_32
)(key_len
+ 2));
1113 /* Replace non-printing characters with a blank and print a warning */
1114 for (kp
= key
, dp
= *new_key
; *kp
!= '\0'; kp
++, dp
++)
1116 if (*kp
< 0x20 || (*kp
> 0x7E && (png_byte
)*kp
< 0xA1))
1118 #if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
1121 sprintf(msg
, "invalid keyword character 0x%02X", *kp
);
1122 png_warning(png_ptr
, msg
);
1124 png_warning(png_ptr
, "invalid character in keyword");
1135 /* Remove any trailing white space. */
1136 kp
= *new_key
+ key_len
- 1;
1139 png_warning(png_ptr
, "trailing spaces removed from keyword");
1148 /* Remove any leading white space. */
1152 png_warning(png_ptr
, "leading spaces removed from keyword");
1161 png_debug1(2, "Checking for multiple internal spaces in '%s'\n", kp
);
1163 /* Remove multiple internal spaces. */
1164 for (kflag
= 0, dp
= *new_key
; *kp
!= '\0'; kp
++)
1166 if (*kp
== ' ' && kflag
== 0)
1171 else if (*kp
== ' ')
1184 png_warning(png_ptr
, "extra interior spaces removed from keyword");
1188 png_free(png_ptr
, *new_key
);
1190 png_warning(png_ptr
, "Zero length keyword");
1195 png_warning(png_ptr
, "keyword length must be 1 - 79 characters");
1204 #if defined(PNG_WRITE_tEXt_SUPPORTED)
1205 /* write a tEXt chunk */
1207 png_write_tEXt(png_structp png_ptr
, png_charp key
, png_charp text
,
1208 png_size_t text_len
)
1210 #ifdef PNG_USE_LOCAL_ARRAYS
1216 png_debug(1, "in png_write_tEXt\n");
1217 if (key
== NULL
|| (key_len
= png_check_keyword(png_ptr
, key
, &new_key
))==0)
1219 png_warning(png_ptr
, "Empty keyword in tEXt chunk");
1223 if (text
== NULL
|| *text
== '\0')
1226 text_len
= png_strlen(text
);
1228 /* make sure we include the 0 after the key */
1229 png_write_chunk_start(png_ptr
, (png_bytep
)png_tEXt
, (png_uint_32
)key_len
+text_len
+1);
1231 * We leave it to the application to meet PNG-1.0 requirements on the
1232 * contents of the text. PNG-1.0 through PNG-1.2 discourage the use of
1233 * any non-Latin-1 characters except for NEWLINE. ISO PNG will forbid them.
1234 * The NUL character is forbidden by PNG-1.0 through PNG-1.2 and ISO PNG.
1236 png_write_chunk_data(png_ptr
, (png_bytep
)new_key
, key_len
+ 1);
1238 png_write_chunk_data(png_ptr
, (png_bytep
)text
, text_len
);
1240 png_write_chunk_end(png_ptr
);
1241 png_free(png_ptr
, new_key
);
1245 #if defined(PNG_WRITE_zTXt_SUPPORTED)
1246 /* write a compressed text chunk */
1248 png_write_zTXt(png_structp png_ptr
, png_charp key
, png_charp text
,
1249 png_size_t text_len
, int compression
)
1251 #ifdef PNG_USE_LOCAL_ARRAYS
1257 compression_state comp
;
1259 png_debug(1, "in png_write_zTXt\n");
1261 if (key
== NULL
|| (key_len
= png_check_keyword(png_ptr
, key
, &new_key
))==0)
1263 png_warning(png_ptr
, "Empty keyword in zTXt chunk");
1267 if (text
== NULL
|| *text
== '\0' || compression
==PNG_TEXT_COMPRESSION_NONE
)
1269 png_write_tEXt(png_ptr
, new_key
, text
, (png_size_t
)0);
1270 png_free(png_ptr
, new_key
);
1274 text_len
= png_strlen(text
);
1276 png_free(png_ptr
, new_key
);
1278 /* compute the compressed data; do it now for the length */
1279 text_len
= png_text_compress(png_ptr
, text
, text_len
, compression
,
1282 /* write start of chunk */
1283 png_write_chunk_start(png_ptr
, (png_bytep
)png_zTXt
, (png_uint_32
)
1284 (key_len
+text_len
+2));
1286 png_write_chunk_data(png_ptr
, (png_bytep
)key
, key_len
+ 1);
1287 buf
[0] = (png_byte
)compression
;
1288 /* write compression */
1289 png_write_chunk_data(png_ptr
, (png_bytep
)buf
, (png_size_t
)1);
1290 /* write the compressed data */
1291 png_write_compressed_data_out(png_ptr
, &comp
);
1293 /* close the chunk */
1294 png_write_chunk_end(png_ptr
);
1298 #if defined(PNG_WRITE_iTXt_SUPPORTED)
1299 /* write an iTXt chunk */
1301 png_write_iTXt(png_structp png_ptr
, int compression
, png_charp key
,
1302 png_charp lang
, png_charp lang_key
, png_charp text
)
1304 #ifdef PNG_USE_LOCAL_ARRAYS
1307 png_size_t lang_len
, key_len
, lang_key_len
, text_len
;
1308 png_charp new_lang
, new_key
;
1310 compression_state comp
;
1312 png_debug(1, "in png_write_iTXt\n");
1314 if (key
== NULL
|| (key_len
= png_check_keyword(png_ptr
, key
, &new_key
))==0)
1316 png_warning(png_ptr
, "Empty keyword in iTXt chunk");
1319 if (lang
== NULL
|| (lang_len
= png_check_keyword(png_ptr
, lang
,
1322 png_warning(png_ptr
, "Empty language field in iTXt chunk");
1325 lang_key_len
= png_strlen(lang_key
);
1326 text_len
= png_strlen(text
);
1328 if (text
== NULL
|| *text
== '\0')
1331 /* compute the compressed data; do it now for the length */
1332 text_len
= png_text_compress(png_ptr
, text
, text_len
, compression
-2,
1335 /* make sure we include the compression flag, the compression byte,
1336 * and the NULs after the key, lang, and lang_key parts */
1338 png_write_chunk_start(png_ptr
, (png_bytep
)png_iTXt
,
1340 5 /* comp byte, comp flag, terminators for key, lang and lang_key */
1347 * We leave it to the application to meet PNG-1.0 requirements on the
1348 * contents of the text. PNG-1.0 through PNG-1.2 discourage the use of
1349 * any non-Latin-1 characters except for NEWLINE. ISO PNG will forbid them.
1350 * The NUL character is forbidden by PNG-1.0 through PNG-1.2 and ISO PNG.
1352 png_write_chunk_data(png_ptr
, (png_bytep
)new_key
, key_len
+ 1);
1354 /* set the compression flag */
1355 if (compression
== PNG_ITXT_COMPRESSION_NONE
|| \
1356 compression
== PNG_TEXT_COMPRESSION_NONE
)
1358 else /* compression == PNG_ITXT_COMPRESSION_zTXt */
1360 /* set the compression method */
1362 png_write_chunk_data(png_ptr
, cbuf
, 2);
1364 png_write_chunk_data(png_ptr
, (png_bytep
)new_lang
, lang_len
+ 1);
1365 png_write_chunk_data(png_ptr
, (png_bytep
)lang_key
, lang_key_len
+1);
1366 png_write_chunk_data(png_ptr
, '\0', 1);
1368 png_write_compressed_data_out(png_ptr
, &comp
);
1370 png_write_chunk_end(png_ptr
);
1371 png_free(png_ptr
, new_key
);
1372 png_free(png_ptr
, new_lang
);
1376 #if defined(PNG_WRITE_oFFs_SUPPORTED)
1377 /* write the oFFs chunk */
1379 png_write_oFFs(png_structp png_ptr
, png_uint_32 x_offset
,
1380 png_uint_32 y_offset
,
1383 #ifdef PNG_USE_LOCAL_ARRAYS
1388 png_debug(1, "in png_write_oFFs\n");
1389 if (unit_type
>= PNG_OFFSET_LAST
)
1390 png_warning(png_ptr
, "Unrecognized unit type for oFFs chunk");
1392 png_save_uint_32(buf
, x_offset
);
1393 png_save_uint_32(buf
+ 4, y_offset
);
1394 buf
[8] = (png_byte
)unit_type
;
1396 png_write_chunk(png_ptr
, (png_bytep
)png_oFFs
, buf
, (png_size_t
)9);
1400 #if defined(PNG_WRITE_pCAL_SUPPORTED)
1401 /* write the pCAL chunk (described in the PNG extensions document) */
1403 png_write_pCAL(png_structp png_ptr
, png_charp purpose
, png_int_32 X0
,
1404 png_int_32 X1
, int type
, int nparams
, png_charp units
, png_charpp params
)
1406 #ifdef PNG_USE_LOCAL_ARRAYS
1409 png_size_t purpose_len
, units_len
, total_len
;
1410 png_uint_32p params_len
;
1412 png_charp new_purpose
;
1415 png_debug1(1, "in png_write_pCAL (%d parameters)\n", nparams
);
1416 if (type
>= PNG_EQUATION_LAST
)
1417 png_warning(png_ptr
, "Unrecognized equation type for pCAL chunk");
1419 purpose_len
= png_check_keyword(png_ptr
, purpose
, &new_purpose
) + 1;
1420 png_debug1(3, "pCAL purpose length = %d\n", purpose_len
);
1421 units_len
= png_strlen(units
) + (nparams
== 0 ? 0 : 1);
1422 png_debug1(3, "pCAL units length = %d\n", units_len
);
1423 total_len
= purpose_len
+ units_len
+ 10;
1425 params_len
= (png_uint_32p
)png_malloc(png_ptr
, (png_uint_32
)(nparams
1426 *sizeof(png_uint_32
)));
1428 /* Find the length of each parameter, making sure we don't count the
1429 null terminator for the last parameter. */
1430 for (i
= 0; i
< nparams
; i
++)
1432 params_len
[i
] = png_strlen(params
[i
]) + (i
== nparams
- 1 ? 0 : 1);
1433 png_debug2(3, "pCAL parameter %d length = %lu\n", i
, params_len
[i
]);
1434 total_len
+= (png_size_t
)params_len
[i
];
1437 png_debug1(3, "pCAL total length = %d\n", total_len
);
1438 png_write_chunk_start(png_ptr
, (png_bytep
)png_pCAL
, (png_uint_32
)total_len
);
1439 png_write_chunk_data(png_ptr
, (png_bytep
)new_purpose
, purpose_len
);
1440 png_save_int_32(buf
, X0
);
1441 png_save_int_32(buf
+ 4, X1
);
1442 buf
[8] = (png_byte
)type
;
1443 buf
[9] = (png_byte
)nparams
;
1444 png_write_chunk_data(png_ptr
, buf
, (png_size_t
)10);
1445 png_write_chunk_data(png_ptr
, (png_bytep
)units
, (png_size_t
)units_len
);
1447 png_free(png_ptr
, new_purpose
);
1449 for (i
= 0; i
< nparams
; i
++)
1451 png_write_chunk_data(png_ptr
, (png_bytep
)params
[i
],
1452 (png_size_t
)params_len
[i
]);
1455 png_free(png_ptr
, params_len
);
1456 png_write_chunk_end(png_ptr
);
1460 #if defined(PNG_WRITE_sCAL_SUPPORTED)
1461 /* write the sCAL chunk */
1462 #if defined(PNG_FLOATING_POINT_SUPPORTED) && !defined(PNG_NO_STDIO)
1464 png_write_sCAL(png_structp png_ptr
, int unit
, double width
,double height
)
1466 #ifdef PNG_USE_LOCAL_ARRAYS
1469 png_size_t total_len
;
1470 char wbuf
[32], hbuf
[32];
1472 png_debug(1, "in png_write_sCAL\n");
1474 #if defined(_WIN32_WCE)
1475 /* sprintf() function is not supported on WindowsCE */
1478 swprintf(wc_buf
, TEXT("%12.12e"), width
);
1479 WideCharToMultiByte(CP_ACP
, 0, wc_buf
, -1, wbuf
, 32, NULL
, NULL
);
1480 swprintf(wc_buf
, TEXT("%12.12e"), height
);
1481 WideCharToMultiByte(CP_ACP
, 0, wc_buf
, -1, hbuf
, 32, NULL
, NULL
);
1484 sprintf(wbuf
, "%12.12e", width
);
1485 sprintf(hbuf
, "%12.12e", height
);
1487 total_len
= 1 + png_strlen(wbuf
)+1 + png_strlen(hbuf
);
1489 png_debug1(3, "sCAL total length = %d\n", total_len
);
1490 png_write_chunk_start(png_ptr
, (png_bytep
)png_sCAL
, (png_uint_32
)total_len
);
1491 png_write_chunk_data(png_ptr
, (png_bytep
)&unit
, 1);
1492 png_write_chunk_data(png_ptr
, (png_bytep
)wbuf
, png_strlen(wbuf
)+1);
1493 png_write_chunk_data(png_ptr
, (png_bytep
)hbuf
, png_strlen(hbuf
));
1495 png_write_chunk_end(png_ptr
);
1498 #ifdef PNG_FIXED_POINT_SUPPORTED
1500 png_write_sCAL_s(png_structp png_ptr
, int unit
, png_charp width
,
1503 #ifdef PNG_USE_LOCAL_ARRAYS
1506 png_size_t total_len
;
1507 char wbuf
[32], hbuf
[32];
1509 png_debug(1, "in png_write_sCAL_s\n");
1511 png_strcpy(wbuf
,(const char *)width
);
1512 png_strcpy(hbuf
,(const char *)height
);
1513 total_len
= 1 + png_strlen(wbuf
)+1 + png_strlen(hbuf
);
1515 png_debug1(3, "sCAL total length = %d\n", total_len
);
1516 png_write_chunk_start(png_ptr
, (png_bytep
)png_sCAL
, (png_uint_32
)total_len
);
1517 png_write_chunk_data(png_ptr
, (png_bytep
)&unit
, 1);
1518 png_write_chunk_data(png_ptr
, (png_bytep
)wbuf
, png_strlen(wbuf
)+1);
1519 png_write_chunk_data(png_ptr
, (png_bytep
)hbuf
, png_strlen(hbuf
));
1521 png_write_chunk_end(png_ptr
);
1527 #if defined(PNG_WRITE_pHYs_SUPPORTED)
1528 /* write the pHYs chunk */
1530 png_write_pHYs(png_structp png_ptr
, png_uint_32 x_pixels_per_unit
,
1531 png_uint_32 y_pixels_per_unit
,
1534 #ifdef PNG_USE_LOCAL_ARRAYS
1539 png_debug(1, "in png_write_pHYs\n");
1540 if (unit_type
>= PNG_RESOLUTION_LAST
)
1541 png_warning(png_ptr
, "Unrecognized unit type for pHYs chunk");
1543 png_save_uint_32(buf
, x_pixels_per_unit
);
1544 png_save_uint_32(buf
+ 4, y_pixels_per_unit
);
1545 buf
[8] = (png_byte
)unit_type
;
1547 png_write_chunk(png_ptr
, (png_bytep
)png_pHYs
, buf
, (png_size_t
)9);
1551 #if defined(PNG_WRITE_tIME_SUPPORTED)
1552 /* Write the tIME chunk. Use either png_convert_from_struct_tm()
1553 * or png_convert_from_time_t(), or fill in the structure yourself.
1556 png_write_tIME(png_structp png_ptr
, png_timep mod_time
)
1558 #ifdef PNG_USE_LOCAL_ARRAYS
1563 png_debug(1, "in png_write_tIME\n");
1564 if (mod_time
->month
> 12 || mod_time
->month
< 1 ||
1565 mod_time
->day
> 31 || mod_time
->day
< 1 ||
1566 mod_time
->hour
> 23 || mod_time
->second
> 60)
1568 png_warning(png_ptr
, "Invalid time specified for tIME chunk");
1572 png_save_uint_16(buf
, mod_time
->year
);
1573 buf
[2] = mod_time
->month
;
1574 buf
[3] = mod_time
->day
;
1575 buf
[4] = mod_time
->hour
;
1576 buf
[5] = mod_time
->minute
;
1577 buf
[6] = mod_time
->second
;
1579 png_write_chunk(png_ptr
, (png_bytep
)png_tIME
, buf
, (png_size_t
)7);
1583 /* initializes the row writing capability of libpng */
1585 png_write_start_row(png_structp png_ptr
)
1587 #ifdef PNG_USE_LOCAL_ARRAYS
1588 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
1590 /* start of interlace block */
1591 int png_pass_start
[7] = {0, 4, 0, 2, 0, 1, 0};
1593 /* offset to next interlace block */
1594 int png_pass_inc
[7] = {8, 8, 4, 4, 2, 2, 1};
1596 /* start of interlace block in the y direction */
1597 int png_pass_ystart
[7] = {0, 0, 4, 0, 2, 0, 1};
1599 /* offset to next interlace block in the y direction */
1600 int png_pass_yinc
[7] = {8, 8, 8, 4, 4, 2, 2};
1603 png_size_t buf_size
;
1605 png_debug(1, "in png_write_start_row\n");
1606 buf_size
= (png_size_t
)(((png_ptr
->width
* png_ptr
->usr_channels
*
1607 png_ptr
->usr_bit_depth
+ 7) >> 3) + 1);
1609 /* set up row buffer */
1610 png_ptr
->row_buf
= (png_bytep
)png_malloc(png_ptr
, (png_uint_32
)buf_size
);
1611 png_ptr
->row_buf
[0] = PNG_FILTER_VALUE_NONE
;
1613 /* set up filtering buffer, if using this filter */
1614 if (png_ptr
->do_filter
& PNG_FILTER_SUB
)
1616 png_ptr
->sub_row
= (png_bytep
)png_malloc(png_ptr
,
1617 (png_ptr
->rowbytes
+ 1));
1618 png_ptr
->sub_row
[0] = PNG_FILTER_VALUE_SUB
;
1621 /* We only need to keep the previous row if we are using one of these. */
1622 if (png_ptr
->do_filter
& (PNG_FILTER_AVG
| PNG_FILTER_UP
| PNG_FILTER_PAETH
))
1624 /* set up previous row buffer */
1625 png_ptr
->prev_row
= (png_bytep
)png_malloc(png_ptr
, (png_uint_32
)buf_size
);
1626 png_memset(png_ptr
->prev_row
, 0, buf_size
);
1628 if (png_ptr
->do_filter
& PNG_FILTER_UP
)
1630 png_ptr
->up_row
= (png_bytep
)png_malloc(png_ptr
,
1631 (png_ptr
->rowbytes
+ 1));
1632 png_ptr
->up_row
[0] = PNG_FILTER_VALUE_UP
;
1635 if (png_ptr
->do_filter
& PNG_FILTER_AVG
)
1637 png_ptr
->avg_row
= (png_bytep
)png_malloc(png_ptr
,
1638 (png_ptr
->rowbytes
+ 1));
1639 png_ptr
->avg_row
[0] = PNG_FILTER_VALUE_AVG
;
1642 if (png_ptr
->do_filter
& PNG_FILTER_PAETH
)
1644 png_ptr
->paeth_row
= (png_bytep
)png_malloc(png_ptr
,
1645 (png_ptr
->rowbytes
+ 1));
1646 png_ptr
->paeth_row
[0] = PNG_FILTER_VALUE_PAETH
;
1650 #ifdef PNG_WRITE_INTERLACING_SUPPORTED
1651 /* if interlaced, we need to set up width and height of pass */
1652 if (png_ptr
->interlaced
)
1654 if (!(png_ptr
->transformations
& PNG_INTERLACE
))
1656 png_ptr
->num_rows
= (png_ptr
->height
+ png_pass_yinc
[0] - 1 -
1657 png_pass_ystart
[0]) / png_pass_yinc
[0];
1658 png_ptr
->usr_width
= (png_ptr
->width
+ png_pass_inc
[0] - 1 -
1659 png_pass_start
[0]) / png_pass_inc
[0];
1663 png_ptr
->num_rows
= png_ptr
->height
;
1664 png_ptr
->usr_width
= png_ptr
->width
;
1670 png_ptr
->num_rows
= png_ptr
->height
;
1671 png_ptr
->usr_width
= png_ptr
->width
;
1673 png_ptr
->zstream
.avail_out
= (uInt
)png_ptr
->zbuf_size
;
1674 png_ptr
->zstream
.next_out
= png_ptr
->zbuf
;
1677 /* Internal use only. Called when finished processing a row of data. */
1679 png_write_finish_row(png_structp png_ptr
)
1681 #ifdef PNG_USE_LOCAL_ARRAYS
1682 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
1684 /* start of interlace block */
1685 int png_pass_start
[7] = {0, 4, 0, 2, 0, 1, 0};
1687 /* offset to next interlace block */
1688 int png_pass_inc
[7] = {8, 8, 4, 4, 2, 2, 1};
1690 /* start of interlace block in the y direction */
1691 int png_pass_ystart
[7] = {0, 0, 4, 0, 2, 0, 1};
1693 /* offset to next interlace block in the y direction */
1694 int png_pass_yinc
[7] = {8, 8, 8, 4, 4, 2, 2};
1699 png_debug(1, "in png_write_finish_row\n");
1701 png_ptr
->row_number
++;
1703 /* see if we are done */
1704 if (png_ptr
->row_number
< png_ptr
->num_rows
)
1707 #ifdef PNG_WRITE_INTERLACING_SUPPORTED
1708 /* if interlaced, go to next pass */
1709 if (png_ptr
->interlaced
)
1711 png_ptr
->row_number
= 0;
1712 if (png_ptr
->transformations
& PNG_INTERLACE
)
1718 /* loop until we find a non-zero width or height pass */
1722 if (png_ptr
->pass
>= 7)
1724 png_ptr
->usr_width
= (png_ptr
->width
+
1725 png_pass_inc
[png_ptr
->pass
] - 1 -
1726 png_pass_start
[png_ptr
->pass
]) /
1727 png_pass_inc
[png_ptr
->pass
];
1728 png_ptr
->num_rows
= (png_ptr
->height
+
1729 png_pass_yinc
[png_ptr
->pass
] - 1 -
1730 png_pass_ystart
[png_ptr
->pass
]) /
1731 png_pass_yinc
[png_ptr
->pass
];
1732 if (png_ptr
->transformations
& PNG_INTERLACE
)
1734 } while (png_ptr
->usr_width
== 0 || png_ptr
->num_rows
== 0);
1738 /* reset the row above the image for the next pass */
1739 if (png_ptr
->pass
< 7)
1741 if (png_ptr
->prev_row
!= NULL
)
1742 png_memset(png_ptr
->prev_row
, 0,
1743 (png_size_t
) (((png_uint_32
)png_ptr
->usr_channels
*
1744 (png_uint_32
)png_ptr
->usr_bit_depth
*
1745 png_ptr
->width
+ 7) >> 3) + 1);
1751 /* if we get here, we've just written the last row, so we need
1752 to flush the compressor */
1755 /* tell the compressor we are done */
1756 ret
= deflate(&png_ptr
->zstream
, Z_FINISH
);
1757 /* check for an error */
1760 /* check to see if we need more room */
1761 if (!(png_ptr
->zstream
.avail_out
))
1763 png_write_IDAT(png_ptr
, png_ptr
->zbuf
, png_ptr
->zbuf_size
);
1764 png_ptr
->zstream
.next_out
= png_ptr
->zbuf
;
1765 png_ptr
->zstream
.avail_out
= (uInt
)png_ptr
->zbuf_size
;
1768 else if (ret
!= Z_STREAM_END
)
1770 if (png_ptr
->zstream
.msg
!= NULL
)
1771 png_error(png_ptr
, png_ptr
->zstream
.msg
);
1773 png_error(png_ptr
, "zlib error");
1775 } while (ret
!= Z_STREAM_END
);
1777 /* write any extra space */
1778 if (png_ptr
->zstream
.avail_out
< png_ptr
->zbuf_size
)
1780 png_write_IDAT(png_ptr
, png_ptr
->zbuf
, png_ptr
->zbuf_size
-
1781 png_ptr
->zstream
.avail_out
);
1784 deflateReset(&png_ptr
->zstream
);
1787 #if defined(PNG_WRITE_INTERLACING_SUPPORTED)
1788 /* Pick out the correct pixels for the interlace pass.
1789 * The basic idea here is to go through the row with a source
1790 * pointer and a destination pointer (sp and dp), and copy the
1791 * correct pixels for the pass. As the row gets compacted,
1792 * sp will always be >= dp, so we should never overwrite anything.
1793 * See the default: case for the easiest code to understand.
1796 png_do_write_interlace(png_row_infop row_info
, png_bytep row
, int pass
)
1798 #ifdef PNG_USE_LOCAL_ARRAYS
1799 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
1801 /* start of interlace block */
1802 int png_pass_start
[7] = {0, 4, 0, 2, 0, 1, 0};
1804 /* offset to next interlace block */
1805 int png_pass_inc
[7] = {8, 8, 4, 4, 2, 2, 1};
1808 png_debug(1, "in png_do_write_interlace\n");
1809 /* we don't have to do anything on the last pass (6) */
1810 #if defined(PNG_USELESS_TESTS_SUPPORTED)
1811 if (row
!= NULL
&& row_info
!= NULL
&& pass
< 6)
1816 /* each pixel depth is handled separately */
1817 switch (row_info
->pixel_depth
)
1827 png_uint_32 row_width
= row_info
->width
;
1832 for (i
= png_pass_start
[pass
]; i
< row_width
;
1833 i
+= png_pass_inc
[pass
])
1835 sp
= row
+ (png_size_t
)(i
>> 3);
1836 value
= (int)(*sp
>> (7 - (int)(i
& 0x07))) & 0x01;
1837 d
|= (value
<< shift
);
1842 *dp
++ = (png_byte
)d
;
1861 png_uint_32 row_width
= row_info
->width
;
1866 for (i
= png_pass_start
[pass
]; i
< row_width
;
1867 i
+= png_pass_inc
[pass
])
1869 sp
= row
+ (png_size_t
)(i
>> 2);
1870 value
= (*sp
>> ((3 - (int)(i
& 0x03)) << 1)) & 0x03;
1871 d
|= (value
<< shift
);
1876 *dp
++ = (png_byte
)d
;
1894 png_uint_32 row_width
= row_info
->width
;
1899 for (i
= png_pass_start
[pass
]; i
< row_width
;
1900 i
+= png_pass_inc
[pass
])
1902 sp
= row
+ (png_size_t
)(i
>> 1);
1903 value
= (*sp
>> ((1 - (int)(i
& 0x01)) << 2)) & 0x0f;
1904 d
|= (value
<< shift
);
1909 *dp
++ = (png_byte
)d
;
1924 png_uint_32 row_width
= row_info
->width
;
1925 png_size_t pixel_bytes
;
1927 /* start at the beginning */
1929 /* find out how many bytes each pixel takes up */
1930 pixel_bytes
= (row_info
->pixel_depth
>> 3);
1931 /* loop through the row, only looking at the pixels that
1933 for (i
= png_pass_start
[pass
]; i
< row_width
;
1934 i
+= png_pass_inc
[pass
])
1936 /* find out where the original pixel is */
1937 sp
= row
+ (png_size_t
)i
* pixel_bytes
;
1938 /* move the pixel */
1940 png_memcpy(dp
, sp
, pixel_bytes
);
1947 /* set new row width */
1948 row_info
->width
= (row_info
->width
+
1949 png_pass_inc
[pass
] - 1 -
1950 png_pass_start
[pass
]) /
1952 row_info
->rowbytes
= ((row_info
->width
*
1953 row_info
->pixel_depth
+ 7) >> 3);
1958 /* This filters the row, chooses which filter to use, if it has not already
1959 * been specified by the application, and then writes the row out with the
1962 #define PNG_MAXSUM (~((png_uint_32)0) >> 1)
1963 #define PNG_HISHIFT 10
1964 #define PNG_LOMASK ((png_uint_32)0xffffL)
1965 #define PNG_HIMASK ((png_uint_32)(~PNG_LOMASK >> PNG_HISHIFT))
1967 png_write_find_filter(png_structp png_ptr
, png_row_infop row_info
)
1969 png_bytep prev_row
, best_row
, row_buf
;
1970 png_uint_32 mins
, bpp
;
1971 png_byte filter_to_do
= png_ptr
->do_filter
;
1972 png_uint_32 row_bytes
= row_info
->rowbytes
;
1973 #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1974 int num_p_filters
= (int)png_ptr
->num_prev_filters
;
1977 png_debug(1, "in png_write_find_filter\n");
1978 /* find out how many bytes offset each pixel is */
1979 bpp
= (row_info
->pixel_depth
+ 7) / 8;
1981 prev_row
= png_ptr
->prev_row
;
1982 best_row
= row_buf
= png_ptr
->row_buf
;
1985 /* The prediction method we use is to find which method provides the
1986 * smallest value when summing the absolute values of the distances
1987 * from zero, using anything >= 128 as negative numbers. This is known
1988 * as the "minimum sum of absolute differences" heuristic. Other
1989 * heuristics are the "weighted minimum sum of absolute differences"
1990 * (experimental and can in theory improve compression), and the "zlib
1991 * predictive" method (not implemented yet), which does test compressions
1992 * of lines using different filter methods, and then chooses the
1993 * (series of) filter(s) that give minimum compressed data size (VERY
1994 * computationally expensive).
1996 * GRR 980525: consider also
1997 * (1) minimum sum of absolute differences from running average (i.e.,
1998 * keep running sum of non-absolute differences & count of bytes)
1999 * [track dispersion, too? restart average if dispersion too large?]
2000 * (1b) minimum sum of absolute differences from sliding average, probably
2001 * with window size <= deflate window (usually 32K)
2002 * (2) minimum sum of squared differences from zero or running average
2003 * (i.e., ~ root-mean-square approach)
2007 /* We don't need to test the 'no filter' case if this is the only filter
2008 * that has been chosen, as it doesn't actually do anything to the data.
2010 if ((filter_to_do
& PNG_FILTER_NONE
) &&
2011 filter_to_do
!= PNG_FILTER_NONE
)
2014 png_uint_32 sum
= 0;
2018 for (i
= 0, rp
= row_buf
+ 1; i
< row_bytes
; i
++, rp
++)
2021 sum
+= (v
< 128) ? v
: 256 - v
;
2024 #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2025 if (png_ptr
->heuristic_method
== PNG_FILTER_HEURISTIC_WEIGHTED
)
2027 png_uint_32 sumhi
, sumlo
;
2029 sumlo
= sum
& PNG_LOMASK
;
2030 sumhi
= (sum
>> PNG_HISHIFT
) & PNG_HIMASK
; /* Gives us some footroom */
2032 /* Reduce the sum if we match any of the previous rows */
2033 for (j
= 0; j
< num_p_filters
; j
++)
2035 if (png_ptr
->prev_filters
[j
] == PNG_FILTER_VALUE_NONE
)
2037 sumlo
= (sumlo
* png_ptr
->filter_weights
[j
]) >>
2039 sumhi
= (sumhi
* png_ptr
->filter_weights
[j
]) >>
2044 /* Factor in the cost of this filter (this is here for completeness,
2045 * but it makes no sense to have a "cost" for the NONE filter, as
2046 * it has the minimum possible computational cost - none).
2048 sumlo
= (sumlo
* png_ptr
->filter_costs
[PNG_FILTER_VALUE_NONE
]) >>
2050 sumhi
= (sumhi
* png_ptr
->filter_costs
[PNG_FILTER_VALUE_NONE
]) >>
2053 if (sumhi
> PNG_HIMASK
)
2056 sum
= (sumhi
<< PNG_HISHIFT
) + sumlo
;
2063 if (filter_to_do
== PNG_FILTER_SUB
)
2064 /* it's the only filter so no testing is needed */
2066 png_bytep rp
, lp
, dp
;
2068 for (i
= 0, rp
= row_buf
+ 1, dp
= png_ptr
->sub_row
+ 1; i
< bpp
;
2073 for (lp
= row_buf
+ 1; i
< row_bytes
;
2074 i
++, rp
++, lp
++, dp
++)
2076 *dp
= (png_byte
)(((int)*rp
- (int)*lp
) & 0xff);
2078 best_row
= png_ptr
->sub_row
;
2081 else if (filter_to_do
& PNG_FILTER_SUB
)
2083 png_bytep rp
, dp
, lp
;
2084 png_uint_32 sum
= 0, lmins
= mins
;
2088 #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2089 /* We temporarily increase the "minimum sum" by the factor we
2090 * would reduce the sum of this filter, so that we can do the
2091 * early exit comparison without scaling the sum each time.
2093 if (png_ptr
->heuristic_method
== PNG_FILTER_HEURISTIC_WEIGHTED
)
2096 png_uint_32 lmhi
, lmlo
;
2097 lmlo
= lmins
& PNG_LOMASK
;
2098 lmhi
= (lmins
>> PNG_HISHIFT
) & PNG_HIMASK
;
2100 for (j
= 0; j
< num_p_filters
; j
++)
2102 if (png_ptr
->prev_filters
[j
] == PNG_FILTER_VALUE_SUB
)
2104 lmlo
= (lmlo
* png_ptr
->inv_filter_weights
[j
]) >>
2106 lmhi
= (lmhi
* png_ptr
->inv_filter_weights
[j
]) >>
2111 lmlo
= (lmlo
* png_ptr
->inv_filter_costs
[PNG_FILTER_VALUE_SUB
]) >>
2113 lmhi
= (lmhi
* png_ptr
->inv_filter_costs
[PNG_FILTER_VALUE_SUB
]) >>
2116 if (lmhi
> PNG_HIMASK
)
2119 lmins
= (lmhi
<< PNG_HISHIFT
) + lmlo
;
2123 for (i
= 0, rp
= row_buf
+ 1, dp
= png_ptr
->sub_row
+ 1; i
< bpp
;
2128 sum
+= (v
< 128) ? v
: 256 - v
;
2130 for (lp
= row_buf
+ 1; i
< row_info
->rowbytes
;
2131 i
++, rp
++, lp
++, dp
++)
2133 v
= *dp
= (png_byte
)(((int)*rp
- (int)*lp
) & 0xff);
2135 sum
+= (v
< 128) ? v
: 256 - v
;
2137 if (sum
> lmins
) /* We are already worse, don't continue. */
2141 #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2142 if (png_ptr
->heuristic_method
== PNG_FILTER_HEURISTIC_WEIGHTED
)
2145 png_uint_32 sumhi
, sumlo
;
2146 sumlo
= sum
& PNG_LOMASK
;
2147 sumhi
= (sum
>> PNG_HISHIFT
) & PNG_HIMASK
;
2149 for (j
= 0; j
< num_p_filters
; j
++)
2151 if (png_ptr
->prev_filters
[j
] == PNG_FILTER_VALUE_SUB
)
2153 sumlo
= (sumlo
* png_ptr
->inv_filter_weights
[j
]) >>
2155 sumhi
= (sumhi
* png_ptr
->inv_filter_weights
[j
]) >>
2160 sumlo
= (sumlo
* png_ptr
->inv_filter_costs
[PNG_FILTER_VALUE_SUB
]) >>
2162 sumhi
= (sumhi
* png_ptr
->inv_filter_costs
[PNG_FILTER_VALUE_SUB
]) >>
2165 if (sumhi
> PNG_HIMASK
)
2168 sum
= (sumhi
<< PNG_HISHIFT
) + sumlo
;
2175 best_row
= png_ptr
->sub_row
;
2180 if (filter_to_do
== PNG_FILTER_UP
)
2182 png_bytep rp
, dp
, pp
;
2185 for (i
= 0, rp
= row_buf
+ 1, dp
= png_ptr
->up_row
+ 1,
2186 pp
= prev_row
+ 1; i
< row_bytes
;
2187 i
++, rp
++, pp
++, dp
++)
2189 *dp
= (png_byte
)(((int)*rp
- (int)*pp
) & 0xff);
2191 best_row
= png_ptr
->up_row
;
2194 else if (filter_to_do
& PNG_FILTER_UP
)
2196 png_bytep rp
, dp
, pp
;
2197 png_uint_32 sum
= 0, lmins
= mins
;
2202 #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2203 if (png_ptr
->heuristic_method
== PNG_FILTER_HEURISTIC_WEIGHTED
)
2206 png_uint_32 lmhi
, lmlo
;
2207 lmlo
= lmins
& PNG_LOMASK
;
2208 lmhi
= (lmins
>> PNG_HISHIFT
) & PNG_HIMASK
;
2210 for (j
= 0; j
< num_p_filters
; j
++)
2212 if (png_ptr
->prev_filters
[j
] == PNG_FILTER_VALUE_UP
)
2214 lmlo
= (lmlo
* png_ptr
->inv_filter_weights
[j
]) >>
2216 lmhi
= (lmhi
* png_ptr
->inv_filter_weights
[j
]) >>
2221 lmlo
= (lmlo
* png_ptr
->inv_filter_costs
[PNG_FILTER_VALUE_UP
]) >>
2223 lmhi
= (lmhi
* png_ptr
->inv_filter_costs
[PNG_FILTER_VALUE_UP
]) >>
2226 if (lmhi
> PNG_HIMASK
)
2229 lmins
= (lmhi
<< PNG_HISHIFT
) + lmlo
;
2233 for (i
= 0, rp
= row_buf
+ 1, dp
= png_ptr
->up_row
+ 1,
2234 pp
= prev_row
+ 1; i
< row_bytes
; i
++)
2236 v
= *dp
++ = (png_byte
)(((int)*rp
++ - (int)*pp
++) & 0xff);
2238 sum
+= (v
< 128) ? v
: 256 - v
;
2240 if (sum
> lmins
) /* We are already worse, don't continue. */
2244 #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2245 if (png_ptr
->heuristic_method
== PNG_FILTER_HEURISTIC_WEIGHTED
)
2248 png_uint_32 sumhi
, sumlo
;
2249 sumlo
= sum
& PNG_LOMASK
;
2250 sumhi
= (sum
>> PNG_HISHIFT
) & PNG_HIMASK
;
2252 for (j
= 0; j
< num_p_filters
; j
++)
2254 if (png_ptr
->prev_filters
[j
] == PNG_FILTER_VALUE_UP
)
2256 sumlo
= (sumlo
* png_ptr
->filter_weights
[j
]) >>
2258 sumhi
= (sumhi
* png_ptr
->filter_weights
[j
]) >>
2263 sumlo
= (sumlo
* png_ptr
->filter_costs
[PNG_FILTER_VALUE_UP
]) >>
2265 sumhi
= (sumhi
* png_ptr
->filter_costs
[PNG_FILTER_VALUE_UP
]) >>
2268 if (sumhi
> PNG_HIMASK
)
2271 sum
= (sumhi
<< PNG_HISHIFT
) + sumlo
;
2278 best_row
= png_ptr
->up_row
;
2283 if (filter_to_do
== PNG_FILTER_AVG
)
2285 png_bytep rp
, dp
, pp
, lp
;
2287 for (i
= 0, rp
= row_buf
+ 1, dp
= png_ptr
->avg_row
+ 1,
2288 pp
= prev_row
+ 1; i
< bpp
; i
++)
2290 *dp
++ = (png_byte
)(((int)*rp
++ - ((int)*pp
++ / 2)) & 0xff);
2292 for (lp
= row_buf
+ 1; i
< row_bytes
; i
++)
2294 *dp
++ = (png_byte
)(((int)*rp
++ - (((int)*pp
++ + (int)*lp
++) / 2))
2297 best_row
= png_ptr
->avg_row
;
2300 else if (filter_to_do
& PNG_FILTER_AVG
)
2302 png_bytep rp
, dp
, pp
, lp
;
2303 png_uint_32 sum
= 0, lmins
= mins
;
2307 #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2308 if (png_ptr
->heuristic_method
== PNG_FILTER_HEURISTIC_WEIGHTED
)
2311 png_uint_32 lmhi
, lmlo
;
2312 lmlo
= lmins
& PNG_LOMASK
;
2313 lmhi
= (lmins
>> PNG_HISHIFT
) & PNG_HIMASK
;
2315 for (j
= 0; j
< num_p_filters
; j
++)
2317 if (png_ptr
->prev_filters
[j
] == PNG_FILTER_VALUE_AVG
)
2319 lmlo
= (lmlo
* png_ptr
->inv_filter_weights
[j
]) >>
2321 lmhi
= (lmhi
* png_ptr
->inv_filter_weights
[j
]) >>
2326 lmlo
= (lmlo
* png_ptr
->inv_filter_costs
[PNG_FILTER_VALUE_AVG
]) >>
2328 lmhi
= (lmhi
* png_ptr
->inv_filter_costs
[PNG_FILTER_VALUE_AVG
]) >>
2331 if (lmhi
> PNG_HIMASK
)
2334 lmins
= (lmhi
<< PNG_HISHIFT
) + lmlo
;
2338 for (i
= 0, rp
= row_buf
+ 1, dp
= png_ptr
->avg_row
+ 1,
2339 pp
= prev_row
+ 1; i
< bpp
; i
++)
2341 v
= *dp
++ = (png_byte
)(((int)*rp
++ - ((int)*pp
++ / 2)) & 0xff);
2343 sum
+= (v
< 128) ? v
: 256 - v
;
2345 for (lp
= row_buf
+ 1; i
< row_bytes
; i
++)
2348 (png_byte
)(((int)*rp
++ - (((int)*pp
++ + (int)*lp
++) / 2)) & 0xff);
2350 sum
+= (v
< 128) ? v
: 256 - v
;
2352 if (sum
> lmins
) /* We are already worse, don't continue. */
2356 #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2357 if (png_ptr
->heuristic_method
== PNG_FILTER_HEURISTIC_WEIGHTED
)
2360 png_uint_32 sumhi
, sumlo
;
2361 sumlo
= sum
& PNG_LOMASK
;
2362 sumhi
= (sum
>> PNG_HISHIFT
) & PNG_HIMASK
;
2364 for (j
= 0; j
< num_p_filters
; j
++)
2366 if (png_ptr
->prev_filters
[j
] == PNG_FILTER_VALUE_NONE
)
2368 sumlo
= (sumlo
* png_ptr
->filter_weights
[j
]) >>
2370 sumhi
= (sumhi
* png_ptr
->filter_weights
[j
]) >>
2375 sumlo
= (sumlo
* png_ptr
->filter_costs
[PNG_FILTER_VALUE_AVG
]) >>
2377 sumhi
= (sumhi
* png_ptr
->filter_costs
[PNG_FILTER_VALUE_AVG
]) >>
2380 if (sumhi
> PNG_HIMASK
)
2383 sum
= (sumhi
<< PNG_HISHIFT
) + sumlo
;
2390 best_row
= png_ptr
->avg_row
;
2395 if (filter_to_do
== PNG_FILTER_PAETH
)
2397 png_bytep rp
, dp
, pp
, cp
, lp
;
2399 for (i
= 0, rp
= row_buf
+ 1, dp
= png_ptr
->paeth_row
+ 1,
2400 pp
= prev_row
+ 1; i
< bpp
; i
++)
2402 *dp
++ = (png_byte
)(((int)*rp
++ - (int)*pp
++) & 0xff);
2405 for (lp
= row_buf
+ 1, cp
= prev_row
+ 1; i
< row_bytes
; i
++)
2407 int a
, b
, c
, pa
, pb
, pc
, p
;
2421 pa
= p
< 0 ? -p
: p
;
2422 pb
= pc
< 0 ? -pc
: pc
;
2423 pc
= (p
+ pc
) < 0 ? -(p
+ pc
) : p
+ pc
;
2426 p
= (pa
<= pb
&& pa
<=pc
) ? a
: (pb
<= pc
) ? b
: c
;
2428 *dp
++ = (png_byte
)(((int)*rp
++ - p
) & 0xff);
2430 best_row
= png_ptr
->paeth_row
;
2433 else if (filter_to_do
& PNG_FILTER_PAETH
)
2435 png_bytep rp
, dp
, pp
, cp
, lp
;
2436 png_uint_32 sum
= 0, lmins
= mins
;
2440 #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2441 if (png_ptr
->heuristic_method
== PNG_FILTER_HEURISTIC_WEIGHTED
)
2444 png_uint_32 lmhi
, lmlo
;
2445 lmlo
= lmins
& PNG_LOMASK
;
2446 lmhi
= (lmins
>> PNG_HISHIFT
) & PNG_HIMASK
;
2448 for (j
= 0; j
< num_p_filters
; j
++)
2450 if (png_ptr
->prev_filters
[j
] == PNG_FILTER_VALUE_PAETH
)
2452 lmlo
= (lmlo
* png_ptr
->inv_filter_weights
[j
]) >>
2454 lmhi
= (lmhi
* png_ptr
->inv_filter_weights
[j
]) >>
2459 lmlo
= (lmlo
* png_ptr
->inv_filter_costs
[PNG_FILTER_VALUE_PAETH
]) >>
2461 lmhi
= (lmhi
* png_ptr
->inv_filter_costs
[PNG_FILTER_VALUE_PAETH
]) >>
2464 if (lmhi
> PNG_HIMASK
)
2467 lmins
= (lmhi
<< PNG_HISHIFT
) + lmlo
;
2471 for (i
= 0, rp
= row_buf
+ 1, dp
= png_ptr
->paeth_row
+ 1,
2472 pp
= prev_row
+ 1; i
< bpp
; i
++)
2474 v
= *dp
++ = (png_byte
)(((int)*rp
++ - (int)*pp
++) & 0xff);
2476 sum
+= (v
< 128) ? v
: 256 - v
;
2479 for (lp
= row_buf
+ 1, cp
= prev_row
+ 1; i
< row_bytes
; i
++)
2481 int a
, b
, c
, pa
, pb
, pc
, p
;
2487 #ifndef PNG_SLOW_PAETH
2495 pa
= p
< 0 ? -p
: p
;
2496 pb
= pc
< 0 ? -pc
: pc
;
2497 pc
= (p
+ pc
) < 0 ? -(p
+ pc
) : p
+ pc
;
2499 p
= (pa
<= pb
&& pa
<=pc
) ? a
: (pb
<= pc
) ? b
: c
;
2500 #else /* PNG_SLOW_PAETH */
2505 if (pa
<= pb
&& pa
<= pc
)
2511 #endif /* PNG_SLOW_PAETH */
2513 v
= *dp
++ = (png_byte
)(((int)*rp
++ - p
) & 0xff);
2515 sum
+= (v
< 128) ? v
: 256 - v
;
2517 if (sum
> lmins
) /* We are already worse, don't continue. */
2521 #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2522 if (png_ptr
->heuristic_method
== PNG_FILTER_HEURISTIC_WEIGHTED
)
2525 png_uint_32 sumhi
, sumlo
;
2526 sumlo
= sum
& PNG_LOMASK
;
2527 sumhi
= (sum
>> PNG_HISHIFT
) & PNG_HIMASK
;
2529 for (j
= 0; j
< num_p_filters
; j
++)
2531 if (png_ptr
->prev_filters
[j
] == PNG_FILTER_VALUE_PAETH
)
2533 sumlo
= (sumlo
* png_ptr
->filter_weights
[j
]) >>
2535 sumhi
= (sumhi
* png_ptr
->filter_weights
[j
]) >>
2540 sumlo
= (sumlo
* png_ptr
->filter_costs
[PNG_FILTER_VALUE_PAETH
]) >>
2542 sumhi
= (sumhi
* png_ptr
->filter_costs
[PNG_FILTER_VALUE_PAETH
]) >>
2545 if (sumhi
> PNG_HIMASK
)
2548 sum
= (sumhi
<< PNG_HISHIFT
) + sumlo
;
2554 best_row
= png_ptr
->paeth_row
;
2558 /* Do the actual writing of the filtered row data from the chosen filter. */
2560 png_write_filtered_row(png_ptr
, best_row
);
2562 #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
2563 /* Save the type of filter we picked this time for future calculations */
2564 if (png_ptr
->num_prev_filters
> 0)
2567 for (j
= 1; j
< num_p_filters
; j
++)
2569 png_ptr
->prev_filters
[j
] = png_ptr
->prev_filters
[j
- 1];
2571 png_ptr
->prev_filters
[j
] = best_row
[0];
2577 /* Do the actual writing of a previously filtered row. */
2579 png_write_filtered_row(png_structp png_ptr
, png_bytep filtered_row
)
2581 png_debug(1, "in png_write_filtered_row\n");
2582 png_debug1(2, "filter = %d\n", filtered_row
[0]);
2583 /* set up the zlib input buffer */
2585 png_ptr
->zstream
.next_in
= filtered_row
;
2586 png_ptr
->zstream
.avail_in
= (uInt
)png_ptr
->row_info
.rowbytes
+ 1;
2587 /* repeat until we have compressed all the data */
2590 int ret
; /* return of zlib */
2592 /* compress the data */
2593 ret
= deflate(&png_ptr
->zstream
, Z_NO_FLUSH
);
2594 /* check for compression errors */
2597 if (png_ptr
->zstream
.msg
!= NULL
)
2598 png_error(png_ptr
, png_ptr
->zstream
.msg
);
2600 png_error(png_ptr
, "zlib error");
2603 /* see if it is time to write another IDAT */
2604 if (!(png_ptr
->zstream
.avail_out
))
2606 /* write the IDAT and reset the zlib output buffer */
2607 png_write_IDAT(png_ptr
, png_ptr
->zbuf
, png_ptr
->zbuf_size
);
2608 png_ptr
->zstream
.next_out
= png_ptr
->zbuf
;
2609 png_ptr
->zstream
.avail_out
= (uInt
)png_ptr
->zbuf_size
;
2611 /* repeat until all data has been compressed */
2612 } while (png_ptr
->zstream
.avail_in
);
2614 /* swap the current and previous rows */
2615 if (png_ptr
->prev_row
!= NULL
)
2619 tptr
= png_ptr
->prev_row
;
2620 png_ptr
->prev_row
= png_ptr
->row_buf
;
2621 png_ptr
->row_buf
= tptr
;
2624 /* finish row - updates counters and flushes zlib if last row */
2625 png_write_finish_row(png_ptr
);
2627 #if defined(PNG_WRITE_FLUSH_SUPPORTED)
2628 png_ptr
->flush_rows
++;
2630 if (png_ptr
->flush_dist
> 0 &&
2631 png_ptr
->flush_rows
>= png_ptr
->flush_dist
)
2633 png_write_flush(png_ptr
);
2637 #endif /* PNG_WRITE_SUPPORTED */