pngwutil.c
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:86k
源码类别:

界面编程

开发平台:

Visual C++

  1. /* pngwutil.c - utilities to write a PNG file
  2.  *
  3.  * Last changed in libpng 1.2.34 [December 18, 2008]
  4.  * For conditions of distribution and use, see copyright notice in png.h
  5.  * Copyright (c) 1998-2008 Glenn Randers-Pehrson
  6.  * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
  7.  * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
  8.  */
  9. #if ( ! defined _CRT_SECURE_NO_WARNINGS )
  10. #define _CRT_SECURE_NO_WARNINGS
  11. #endif
  12. #define PNG_INTERNAL
  13. #include "png.h"
  14. #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.
  18.  */
  19. void PNGAPI
  20. png_save_uint_32(png_bytep buf, png_uint_32 i)
  21. {
  22.    buf[0] = (png_byte)((i >> 24) & 0xff);
  23.    buf[1] = (png_byte)((i >> 16) & 0xff);
  24.    buf[2] = (png_byte)((i >> 8) & 0xff);
  25.    buf[3] = (png_byte)(i & 0xff);
  26. }
  27. /* The png_save_int_32 function assumes integers are stored in two's
  28.  * complement format.  If this isn't the case, then this routine needs to
  29.  * be modified to write data in two's complement format.
  30.  */
  31. void PNGAPI
  32. png_save_int_32(png_bytep buf, png_int_32 i)
  33. {
  34.    buf[0] = (png_byte)((i >> 24) & 0xff);
  35.    buf[1] = (png_byte)((i >> 16) & 0xff);
  36.    buf[2] = (png_byte)((i >> 8) & 0xff);
  37.    buf[3] = (png_byte)(i & 0xff);
  38. }
  39. /* Place a 16-bit number into a buffer in PNG byte order.
  40.  * The parameter is declared unsigned int, not png_uint_16,
  41.  * just to avoid potential problems on pre-ANSI C compilers.
  42.  */
  43. void PNGAPI
  44. png_save_uint_16(png_bytep buf, unsigned int i)
  45. {
  46.    buf[0] = (png_byte)((i >> 8) & 0xff);
  47.    buf[1] = (png_byte)(i & 0xff);
  48. }
  49. /* Simple function to write the signature.  If we have already written
  50.  * the magic bytes of the signature, or more likely, the PNG stream is
  51.  * being embedded into another stream and doesn't need its own signature,
  52.  * we should call png_set_sig_bytes() to tell libpng how many of the
  53.  * bytes have already been written.
  54.  */
  55. void /* PRIVATE */
  56. png_write_sig(png_structp png_ptr)
  57. {
  58.    png_byte png_signature[8] = {137, 80, 78, 71, 13, 10, 26, 10};
  59.    /* write the rest of the 8 byte signature */
  60.    png_write_data(png_ptr, &png_signature[png_ptr->sig_bytes],
  61.       (png_size_t)(8 - png_ptr->sig_bytes));
  62.    if (png_ptr->sig_bytes < 3)
  63.       png_ptr->mode |= PNG_HAVE_PNG_SIGNATURE;
  64. }
  65. /* Write a PNG chunk all at once.  The type is an array of ASCII characters
  66.  * representing the chunk name.  The array must be at least 4 bytes in
  67.  * length, and does not need to be null terminated.  To be safe, pass the
  68.  * pre-defined chunk names here, and if you need a new one, define it
  69.  * where the others are defined.  The length is the length of the data.
  70.  * All the data must be present.  If that is not possible, use the
  71.  * png_write_chunk_start(), png_write_chunk_data(), and png_write_chunk_end()
  72.  * functions instead.
  73.  */
  74. void PNGAPI
  75. png_write_chunk(png_structp png_ptr, png_bytep chunk_name,
  76.    png_bytep data, png_size_t length)
  77. {
  78.    if (png_ptr == NULL) return;
  79.    png_write_chunk_start(png_ptr, chunk_name, (png_uint_32)length);
  80.    png_write_chunk_data(png_ptr, data, (png_size_t)length);
  81.    png_write_chunk_end(png_ptr);
  82. }
  83. /* Write the start of a PNG chunk.  The type is the chunk type.
  84.  * The total_length is the sum of the lengths of all the data you will be
  85.  * passing in png_write_chunk_data().
  86.  */
  87. void PNGAPI
  88. png_write_chunk_start(png_structp png_ptr, png_bytep chunk_name,
  89.    png_uint_32 length)
  90. {
  91.    png_byte buf[8];
  92.    png_debug2(0, "Writing %s chunk, length = %lu", chunk_name,
  93.       (unsigned long)length);
  94.    if (png_ptr == NULL) return;
  95.    /* write the length and the chunk name */
  96.    png_save_uint_32(buf, length);
  97.    png_memcpy(buf + 4, chunk_name, 4);
  98.    png_write_data(png_ptr, buf, (png_size_t)8);
  99.    /* put the chunk name into png_ptr->chunk_name */
  100.    png_memcpy(png_ptr->chunk_name, chunk_name, 4);
  101.    /* reset the crc and run it over the chunk name */
  102.    png_reset_crc(png_ptr);
  103.    png_calculate_crc(png_ptr, chunk_name, (png_size_t)4);
  104. }
  105. /* Write the data of a PNG chunk started with png_write_chunk_start().
  106.  * Note that multiple calls to this function are allowed, and that the
  107.  * sum of the lengths from these calls *must* add up to the total_length
  108.  * given to png_write_chunk_start().
  109.  */
  110. void PNGAPI
  111. png_write_chunk_data(png_structp png_ptr, png_bytep data, png_size_t length)
  112. {
  113.    /* write the data, and run the CRC over it */
  114.    if (png_ptr == NULL) return;
  115.    if (data != NULL && length > 0)
  116.    {
  117.       png_write_data(png_ptr, data, length);
  118.       /* update the CRC after writing the data,
  119.        * in case that the user I/O routine alters it.
  120.        */
  121.       png_calculate_crc(png_ptr, data, length);
  122.    }
  123. }
  124. /* Finish a chunk started with png_write_chunk_start(). */
  125. void PNGAPI
  126. png_write_chunk_end(png_structp png_ptr)
  127. {
  128.    png_byte buf[4];
  129.    if (png_ptr == NULL) return;
  130.    /* write the crc in a single operation */
  131.    png_save_uint_32(buf, png_ptr->crc);
  132.    png_write_data(png_ptr, buf, (png_size_t)4);
  133. }
  134. #if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_iCCP_SUPPORTED)
  135. /*
  136.  * This pair of functions encapsulates the operation of (a) compressing a
  137.  * text string, and (b) issuing it later as a series of chunk data writes.
  138.  * The compression_state structure is shared context for these functions
  139.  * set up by the caller in order to make the whole mess thread-safe.
  140.  */
  141. typedef struct
  142. {
  143.     char *input;   /* the uncompressed input data */
  144.     int input_len;   /* its length */
  145.     int num_output_ptr; /* number of output pointers used */
  146.     int max_output_ptr; /* size of output_ptr */
  147.     png_charpp output_ptr; /* array of pointers to output */
  148. } compression_state;
  149. /* compress given text into storage in the png_ptr structure */
  150. static int /* PRIVATE */
  151. png_text_compress(png_structp png_ptr,
  152.         png_charp text, png_size_t text_len, int compression,
  153.         compression_state *comp)
  154. {
  155.    int ret;
  156.    comp->num_output_ptr = 0;
  157.    comp->max_output_ptr = 0;
  158.    comp->output_ptr = NULL;
  159.    comp->input = NULL;
  160.    comp->input_len = 0;
  161.    /* we may just want to pass the text right through */
  162.    if (compression == PNG_TEXT_COMPRESSION_NONE)
  163.    {
  164.        comp->input = text;
  165.        comp->input_len = (int)text_len;
  166.        return((int)text_len);
  167.    }
  168.    if (compression >= PNG_TEXT_COMPRESSION_LAST)
  169.    {
  170. #if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
  171.       char msg[50];
  172.       png_snprintf(msg, 50, "Unknown compression type %d", compression);
  173.       png_warning(png_ptr, msg);
  174. #else
  175.       png_warning(png_ptr, "Unknown compression type");
  176. #endif
  177.    }
  178.    /* We can't write the chunk until we find out how much data we have,
  179.     * which means we need to run the compressor first and save the
  180.     * output.  This shouldn't be a problem, as the vast majority of
  181.     * comments should be reasonable, but we will set up an array of
  182.     * malloc'd pointers to be sure.
  183.     *
  184.     * If we knew the application was well behaved, we could simplify this
  185.     * greatly by assuming we can always malloc an output buffer large
  186.     * enough to hold the compressed text ((1001 * text_len / 1000) + 12)
  187.     * and malloc this directly.  The only time this would be a bad idea is
  188.     * if we can't malloc more than 64K and we have 64K of random input
  189.     * data, or if the input string is incredibly large (although this
  190.     * wouldn't cause a failure, just a slowdown due to swapping).
  191.     */
  192.    /* set up the compression buffers */
  193.    png_ptr->zstream.avail_in = (uInt)text_len;
  194.    png_ptr->zstream.next_in = (Bytef *)text;
  195.    png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
  196.    png_ptr->zstream.next_out = (Bytef *)png_ptr->zbuf;
  197.    /* this is the same compression loop as in png_write_row() */
  198.    do
  199.    {
  200.       /* compress the data */
  201.       ret = deflate(&png_ptr->zstream, Z_NO_FLUSH);
  202.       if (ret != Z_OK)
  203.       {
  204.          /* error */
  205.          if (png_ptr->zstream.msg != NULL)
  206.             png_error(png_ptr, png_ptr->zstream.msg);
  207.          else
  208.             png_error(png_ptr, "zlib error");
  209.       }
  210.       /* check to see if we need more room */
  211.       if (!(png_ptr->zstream.avail_out))
  212.       {
  213.          /* make sure the output array has room */
  214.          if (comp->num_output_ptr >= comp->max_output_ptr)
  215.          {
  216.             int old_max;
  217.             old_max = comp->max_output_ptr;
  218.             comp->max_output_ptr = comp->num_output_ptr + 4;
  219.             if (comp->output_ptr != NULL)
  220.             {
  221.                png_charpp old_ptr;
  222.                old_ptr = comp->output_ptr;
  223.                comp->output_ptr = (png_charpp)png_malloc(png_ptr,
  224.                   (png_uint_32)
  225.                   (comp->max_output_ptr * png_sizeof(png_charpp)));
  226.                png_memcpy(comp->output_ptr, old_ptr, old_max
  227.                   * png_sizeof(png_charp));
  228.                png_free(png_ptr, old_ptr);
  229.             }
  230.             else
  231.                comp->output_ptr = (png_charpp)png_malloc(png_ptr,
  232.                   (png_uint_32)
  233.                   (comp->max_output_ptr * png_sizeof(png_charp)));
  234.          }
  235.          /* save the data */
  236.          comp->output_ptr[comp->num_output_ptr] =
  237.             (png_charp)png_malloc(png_ptr,
  238.             (png_uint_32)png_ptr->zbuf_size);
  239.          png_memcpy(comp->output_ptr[comp->num_output_ptr], png_ptr->zbuf,
  240.             png_ptr->zbuf_size);
  241.          comp->num_output_ptr++;
  242.          /* and reset the buffer */
  243.          png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
  244.          png_ptr->zstream.next_out = png_ptr->zbuf;
  245.       }
  246.    /* continue until we don't have any more to compress */
  247.    } while (png_ptr->zstream.avail_in);
  248.    /* finish the compression */
  249.    do
  250.    {
  251.       /* tell zlib we are finished */
  252.       ret = deflate(&png_ptr->zstream, Z_FINISH);
  253.       if (ret == Z_OK)
  254.       {
  255.          /* check to see if we need more room */
  256.          if (!(png_ptr->zstream.avail_out))
  257.          {
  258.             /* check to make sure our output array has room */
  259.             if (comp->num_output_ptr >= comp->max_output_ptr)
  260.             {
  261.                int old_max;
  262.                old_max = comp->max_output_ptr;
  263.                comp->max_output_ptr = comp->num_output_ptr + 4;
  264.                if (comp->output_ptr != NULL)
  265.                {
  266.                   png_charpp old_ptr;
  267.                   old_ptr = comp->output_ptr;
  268.                   /* This could be optimized to realloc() */
  269.                   comp->output_ptr = (png_charpp)png_malloc(png_ptr,
  270.                      (png_uint_32)(comp->max_output_ptr *
  271.                      png_sizeof(png_charp)));
  272.                   png_memcpy(comp->output_ptr, old_ptr,
  273.                      old_max * png_sizeof(png_charp));
  274.                   png_free(png_ptr, old_ptr);
  275.                }
  276.                else
  277.                   comp->output_ptr = (png_charpp)png_malloc(png_ptr,
  278.                      (png_uint_32)(comp->max_output_ptr *
  279.                      png_sizeof(png_charp)));
  280.             }
  281.             /* save off the data */
  282.             comp->output_ptr[comp->num_output_ptr] =
  283.                (png_charp)png_malloc(png_ptr,
  284.                (png_uint_32)png_ptr->zbuf_size);
  285.             png_memcpy(comp->output_ptr[comp->num_output_ptr], png_ptr->zbuf,
  286.                png_ptr->zbuf_size);
  287.             comp->num_output_ptr++;
  288.             /* and reset the buffer pointers */
  289.             png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
  290.             png_ptr->zstream.next_out = png_ptr->zbuf;
  291.          }
  292.       }
  293.       else if (ret != Z_STREAM_END)
  294.       {
  295.          /* we got an error */
  296.          if (png_ptr->zstream.msg != NULL)
  297.             png_error(png_ptr, png_ptr->zstream.msg);
  298.          else
  299.             png_error(png_ptr, "zlib error");
  300.       }
  301.    } while (ret != Z_STREAM_END);
  302.    /* text length is number of buffers plus last buffer */
  303.    text_len = png_ptr->zbuf_size * comp->num_output_ptr;
  304.    if (png_ptr->zstream.avail_out < png_ptr->zbuf_size)
  305.       text_len += png_ptr->zbuf_size - (png_size_t)png_ptr->zstream.avail_out;
  306.    return((int)text_len);
  307. }
  308. /* ship the compressed text out via chunk writes */
  309. static void /* PRIVATE */
  310. png_write_compressed_data_out(png_structp png_ptr, compression_state *comp)
  311. {
  312.    int i;
  313.    /* handle the no-compression case */
  314.    if (comp->input)
  315.    {
  316.        png_write_chunk_data(png_ptr, (png_bytep)comp->input,
  317.                             (png_size_t)comp->input_len);
  318.        return;
  319.    }
  320.    /* write saved output buffers, if any */
  321.    for (i = 0; i < comp->num_output_ptr; i++)
  322.    {
  323.       png_write_chunk_data(png_ptr, (png_bytep)comp->output_ptr[i],
  324.          (png_size_t)png_ptr->zbuf_size);
  325.       png_free(png_ptr, comp->output_ptr[i]);
  326.        comp->output_ptr[i]=NULL;
  327.    }
  328.    if (comp->max_output_ptr != 0)
  329.       png_free(png_ptr, comp->output_ptr);
  330.        comp->output_ptr=NULL;
  331.    /* write anything left in zbuf */
  332.    if (png_ptr->zstream.avail_out < (png_uint_32)png_ptr->zbuf_size)
  333.       png_write_chunk_data(png_ptr, png_ptr->zbuf,
  334.          (png_size_t)(png_ptr->zbuf_size - png_ptr->zstream.avail_out));
  335.    /* reset zlib for another zTXt/iTXt or image data */
  336.    deflateReset(&png_ptr->zstream);
  337.    png_ptr->zstream.data_type = Z_BINARY;
  338. }
  339. #endif
  340. /* Write the IHDR chunk, and update the png_struct with the necessary
  341.  * information.  Note that the rest of this code depends upon this
  342.  * information being correct.
  343.  */
  344. void /* PRIVATE */
  345. png_write_IHDR(png_structp png_ptr, png_uint_32 width, png_uint_32 height,
  346.    int bit_depth, int color_type, int compression_type, int filter_type,
  347.    int interlace_type)
  348. {
  349. #ifdef PNG_USE_LOCAL_ARRAYS
  350.    PNG_IHDR;
  351. #endif
  352.    int ret;
  353.    png_byte buf[13]; /* buffer to store the IHDR info */
  354.    png_debug(1, "in png_write_IHDR");
  355.    /* Check that we have valid input data from the application info */
  356.    switch (color_type)
  357.    {
  358.       case PNG_COLOR_TYPE_GRAY:
  359.          switch (bit_depth)
  360.          {
  361.             case 1:
  362.             case 2:
  363.             case 4:
  364.             case 8:
  365.             case 16: png_ptr->channels = 1; break;
  366.             default: png_error(png_ptr, "Invalid bit depth for grayscale image");
  367.          }
  368.          break;
  369.       case PNG_COLOR_TYPE_RGB:
  370.          if (bit_depth != 8 && bit_depth != 16)
  371.             png_error(png_ptr, "Invalid bit depth for RGB image");
  372.          png_ptr->channels = 3;
  373.          break;
  374.       case PNG_COLOR_TYPE_PALETTE:
  375.          switch (bit_depth)
  376.          {
  377.             case 1:
  378.             case 2:
  379.             case 4:
  380.             case 8: png_ptr->channels = 1; break;
  381.             default: png_error(png_ptr, "Invalid bit depth for paletted image");
  382.          }
  383.          break;
  384.       case PNG_COLOR_TYPE_GRAY_ALPHA:
  385.          if (bit_depth != 8 && bit_depth != 16)
  386.             png_error(png_ptr, "Invalid bit depth for grayscale+alpha image");
  387.          png_ptr->channels = 2;
  388.          break;
  389.       case PNG_COLOR_TYPE_RGB_ALPHA:
  390.          if (bit_depth != 8 && bit_depth != 16)
  391.             png_error(png_ptr, "Invalid bit depth for RGBA image");
  392.          png_ptr->channels = 4;
  393.          break;
  394.       default:
  395.          png_error(png_ptr, "Invalid image color type specified");
  396.    }
  397.    if (compression_type != PNG_COMPRESSION_TYPE_BASE)
  398.    {
  399.       png_warning(png_ptr, "Invalid compression type specified");
  400.       compression_type = PNG_COMPRESSION_TYPE_BASE;
  401.    }
  402.    /* Write filter_method 64 (intrapixel differencing) only if
  403.     * 1. Libpng was compiled with PNG_MNG_FEATURES_SUPPORTED and
  404.     * 2. Libpng did not write a PNG signature (this filter_method is only
  405.     *    used in PNG datastreams that are embedded in MNG datastreams) and
  406.     * 3. The application called png_permit_mng_features with a mask that
  407.     *    included PNG_FLAG_MNG_FILTER_64 and
  408.     * 4. The filter_method is 64 and
  409.     * 5. The color_type is RGB or RGBA
  410.     */
  411.    if (
  412. #if defined(PNG_MNG_FEATURES_SUPPORTED)
  413.       !((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
  414.       ((png_ptr->mode&PNG_HAVE_PNG_SIGNATURE) == 0) &&
  415.       (color_type == PNG_COLOR_TYPE_RGB ||
  416.        color_type == PNG_COLOR_TYPE_RGB_ALPHA) &&
  417.       (filter_type == PNG_INTRAPIXEL_DIFFERENCING)) &&
  418. #endif
  419.       filter_type != PNG_FILTER_TYPE_BASE)
  420.    {
  421.       png_warning(png_ptr, "Invalid filter type specified");
  422.       filter_type = PNG_FILTER_TYPE_BASE;
  423.    }
  424. #ifdef PNG_WRITE_INTERLACING_SUPPORTED
  425.    if (interlace_type != PNG_INTERLACE_NONE &&
  426.       interlace_type != PNG_INTERLACE_ADAM7)
  427.    {
  428.       png_warning(png_ptr, "Invalid interlace type specified");
  429.       interlace_type = PNG_INTERLACE_ADAM7;
  430.    }
  431. #else
  432.    interlace_type=PNG_INTERLACE_NONE;
  433. #endif
  434.    /* save off the relevent information */
  435.    png_ptr->bit_depth = (png_byte)bit_depth;
  436.    png_ptr->color_type = (png_byte)color_type;
  437.    png_ptr->interlaced = (png_byte)interlace_type;
  438. #if defined(PNG_MNG_FEATURES_SUPPORTED)
  439.    png_ptr->filter_type = (png_byte)filter_type;
  440. #endif
  441.    png_ptr->compression_type = (png_byte)compression_type;
  442.    png_ptr->width = width;
  443.    png_ptr->height = height;
  444.    png_ptr->pixel_depth = (png_byte)(bit_depth * png_ptr->channels);
  445.    png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth, width);
  446.    /* set the usr info, so any transformations can modify it */
  447.    png_ptr->usr_width = png_ptr->width;
  448.    png_ptr->usr_bit_depth = png_ptr->bit_depth;
  449.    png_ptr->usr_channels = png_ptr->channels;
  450.    /* pack the header information into the buffer */
  451.    png_save_uint_32(buf, width);
  452.    png_save_uint_32(buf + 4, height);
  453.    buf[8] = (png_byte)bit_depth;
  454.    buf[9] = (png_byte)color_type;
  455.    buf[10] = (png_byte)compression_type;
  456.    buf[11] = (png_byte)filter_type;
  457.    buf[12] = (png_byte)interlace_type;
  458.    /* write the chunk */
  459.    png_write_chunk(png_ptr, (png_bytep)png_IHDR, buf, (png_size_t)13);
  460.    /* initialize zlib with PNG info */
  461.    png_ptr->zstream.zalloc = png_zalloc;
  462.    png_ptr->zstream.zfree = png_zfree;
  463.    png_ptr->zstream.opaque = (voidpf)png_ptr;
  464.    if (!(png_ptr->do_filter))
  465.    {
  466.       if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE ||
  467.          png_ptr->bit_depth < 8)
  468.          png_ptr->do_filter = PNG_FILTER_NONE;
  469.       else
  470.          png_ptr->do_filter = PNG_ALL_FILTERS;
  471.    }
  472.    if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_STRATEGY))
  473.    {
  474.       if (png_ptr->do_filter != PNG_FILTER_NONE)
  475.          png_ptr->zlib_strategy = Z_FILTERED;
  476.       else
  477.          png_ptr->zlib_strategy = Z_DEFAULT_STRATEGY;
  478.    }
  479.    if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_LEVEL))
  480.       png_ptr->zlib_level = Z_DEFAULT_COMPRESSION;
  481.    if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL))
  482.       png_ptr->zlib_mem_level = 8;
  483.    if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS))
  484.       png_ptr->zlib_window_bits = 15;
  485.    if (!(png_ptr->flags & PNG_FLAG_ZLIB_CUSTOM_METHOD))
  486.       png_ptr->zlib_method = 8;
  487.    ret = deflateInit2(&png_ptr->zstream, png_ptr->zlib_level,
  488.          png_ptr->zlib_method, png_ptr->zlib_window_bits,
  489.          png_ptr->zlib_mem_level, png_ptr->zlib_strategy);
  490.    if (ret != Z_OK)
  491.    {
  492.       if (ret == Z_VERSION_ERROR) png_error(png_ptr,
  493.           "zlib failed to initialize compressor -- version error");
  494.       if (ret == Z_STREAM_ERROR) png_error(png_ptr,
  495.            "zlib failed to initialize compressor -- stream error");
  496.       if (ret == Z_MEM_ERROR) png_error(png_ptr,
  497.            "zlib failed to initialize compressor -- mem error");
  498.       png_error(png_ptr, "zlib failed to initialize compressor");
  499.    }
  500.    png_ptr->zstream.next_out = png_ptr->zbuf;
  501.    png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
  502.    /* libpng is not interested in zstream.data_type */
  503.    /* set it to a predefined value, to avoid its evaluation inside zlib */
  504.    png_ptr->zstream.data_type = Z_BINARY;
  505.    png_ptr->mode = PNG_HAVE_IHDR;
  506. }
  507. /* write the palette.  We are careful not to trust png_color to be in the
  508.  * correct order for PNG, so people can redefine it to any convenient
  509.  * structure.
  510.  */
  511. void /* PRIVATE */
  512. png_write_PLTE(png_structp png_ptr, png_colorp palette, png_uint_32 num_pal)
  513. {
  514. #ifdef PNG_USE_LOCAL_ARRAYS
  515.    PNG_PLTE;
  516. #endif
  517.    png_uint_32 i;
  518.    png_colorp pal_ptr;
  519.    png_byte buf[3];
  520.    png_debug(1, "in png_write_PLTE");
  521.    if ((
  522. #if defined(PNG_MNG_FEATURES_SUPPORTED)
  523.         !(png_ptr->mng_features_permitted & PNG_FLAG_MNG_EMPTY_PLTE) &&
  524. #endif
  525.         num_pal == 0) || num_pal > 256)
  526.    {
  527.      if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  528.      {
  529.         png_error(png_ptr, "Invalid number of colors in palette");
  530.      }
  531.      else
  532.      {
  533.         png_warning(png_ptr, "Invalid number of colors in palette");
  534.         return;
  535.      }
  536.    }
  537.    if (!(png_ptr->color_type&PNG_COLOR_MASK_COLOR))
  538.    {
  539.       png_warning(png_ptr,
  540.         "Ignoring request to write a PLTE chunk in grayscale PNG");
  541.       return;
  542.    }
  543.    png_ptr->num_palette = (png_uint_16)num_pal;
  544.    png_debug1(3, "num_palette = %d", png_ptr->num_palette);
  545.    png_write_chunk_start(png_ptr, (png_bytep)png_PLTE,
  546.      (png_uint_32)(num_pal * 3));
  547. #ifndef PNG_NO_POINTER_INDEXING
  548.    for (i = 0, pal_ptr = palette; i < num_pal; i++, pal_ptr++)
  549.    {
  550.       buf[0] = pal_ptr->red;
  551.       buf[1] = pal_ptr->green;
  552.       buf[2] = pal_ptr->blue;
  553.       png_write_chunk_data(png_ptr, buf, (png_size_t)3);
  554.    }
  555. #else
  556.    /* This is a little slower but some buggy compilers need to do this instead */
  557.    pal_ptr=palette;
  558.    for (i = 0; i < num_pal; i++)
  559.    {
  560.       buf[0] = pal_ptr[i].red;
  561.       buf[1] = pal_ptr[i].green;
  562.       buf[2] = pal_ptr[i].blue;
  563.       png_write_chunk_data(png_ptr, buf, (png_size_t)3);
  564.    }
  565. #endif
  566.    png_write_chunk_end(png_ptr);
  567.    png_ptr->mode |= PNG_HAVE_PLTE;
  568. }
  569. /* write an IDAT chunk */
  570. void /* PRIVATE */
  571. png_write_IDAT(png_structp png_ptr, png_bytep data, png_size_t length)
  572. {
  573. #ifdef PNG_USE_LOCAL_ARRAYS
  574.    PNG_IDAT;
  575. #endif
  576.    png_debug(1, "in png_write_IDAT");
  577.    /* Optimize the CMF field in the zlib stream. */
  578.    /* This hack of the zlib stream is compliant to the stream specification. */
  579.    if (!(png_ptr->mode & PNG_HAVE_IDAT) &&
  580.        png_ptr->compression_type == PNG_COMPRESSION_TYPE_BASE)
  581.    {
  582.       unsigned int z_cmf = data[0];  /* zlib compression method and flags */
  583.       if ((z_cmf & 0x0f) == 8 && (z_cmf & 0xf0) <= 0x70)
  584.       {
  585.          /* Avoid memory underflows and multiplication overflows. */
  586.          /* The conditions below are practically always satisfied;
  587.             however, they still must be checked. */
  588.          if (length >= 2 &&
  589.              png_ptr->height < 16384 && png_ptr->width < 16384)
  590.          {
  591.             png_uint_32 uncompressed_idat_size = png_ptr->height *
  592.                ((png_ptr->width *
  593.                png_ptr->channels * png_ptr->bit_depth + 15) >> 3);
  594.             unsigned int z_cinfo = z_cmf >> 4;
  595.             unsigned int half_z_window_size = 1 << (z_cinfo + 7);
  596.             while (uncompressed_idat_size <= half_z_window_size &&
  597.                    half_z_window_size >= 256)
  598.             {
  599.                z_cinfo--;
  600.                half_z_window_size >>= 1;
  601.             }
  602.             z_cmf = (z_cmf & 0x0f) | (z_cinfo << 4);
  603.             if (data[0] != (png_byte)z_cmf)
  604.             {
  605.                data[0] = (png_byte)z_cmf;
  606.                data[1] &= 0xe0;
  607.                data[1] += (png_byte)(0x1f - ((z_cmf << 8) + data[1]) % 0x1f);
  608.             }
  609.          }
  610.       }
  611.       else
  612.          png_error(png_ptr,
  613.             "Invalid zlib compression method or flags in IDAT");
  614.    }
  615.    png_write_chunk(png_ptr, (png_bytep)png_IDAT, data, length);
  616.    png_ptr->mode |= PNG_HAVE_IDAT;
  617. }
  618. /* write an IEND chunk */
  619. void /* PRIVATE */
  620. png_write_IEND(png_structp png_ptr)
  621. {
  622. #ifdef PNG_USE_LOCAL_ARRAYS
  623.    PNG_IEND;
  624. #endif
  625.    png_debug(1, "in png_write_IEND");
  626.    png_write_chunk(png_ptr, (png_bytep)png_IEND, png_bytep_NULL,
  627.      (png_size_t)0);
  628.    png_ptr->mode |= PNG_HAVE_IEND;
  629. }
  630. #if defined(PNG_WRITE_gAMA_SUPPORTED)
  631. /* write a gAMA chunk */
  632. #ifdef PNG_FLOATING_POINT_SUPPORTED
  633. void /* PRIVATE */
  634. png_write_gAMA(png_structp png_ptr, double file_gamma)
  635. {
  636. #ifdef PNG_USE_LOCAL_ARRAYS
  637.    PNG_gAMA;
  638. #endif
  639.    png_uint_32 igamma;
  640.    png_byte buf[4];
  641.    png_debug(1, "in png_write_gAMA");
  642.    /* file_gamma is saved in 1/100,000ths */
  643.    igamma = (png_uint_32)(file_gamma * 100000.0 + 0.5);
  644.    png_save_uint_32(buf, igamma);
  645.    png_write_chunk(png_ptr, (png_bytep)png_gAMA, buf, (png_size_t)4);
  646. }
  647. #endif
  648. #ifdef PNG_FIXED_POINT_SUPPORTED
  649. void /* PRIVATE */
  650. png_write_gAMA_fixed(png_structp png_ptr, png_fixed_point file_gamma)
  651. {
  652. #ifdef PNG_USE_LOCAL_ARRAYS
  653.    PNG_gAMA;
  654. #endif
  655.    png_byte buf[4];
  656.    png_debug(1, "in png_write_gAMA");
  657.    /* file_gamma is saved in 1/100,000ths */
  658.    png_save_uint_32(buf, (png_uint_32)file_gamma);
  659.    png_write_chunk(png_ptr, (png_bytep)png_gAMA, buf, (png_size_t)4);
  660. }
  661. #endif
  662. #endif
  663. #if defined(PNG_WRITE_sRGB_SUPPORTED)
  664. /* write a sRGB chunk */
  665. void /* PRIVATE */
  666. png_write_sRGB(png_structp png_ptr, int srgb_intent)
  667. {
  668. #ifdef PNG_USE_LOCAL_ARRAYS
  669.    PNG_sRGB;
  670. #endif
  671.    png_byte buf[1];
  672.    png_debug(1, "in png_write_sRGB");
  673.    if (srgb_intent >= PNG_sRGB_INTENT_LAST)
  674.          png_warning(png_ptr,
  675.             "Invalid sRGB rendering intent specified");
  676.    buf[0]=(png_byte)srgb_intent;
  677.    png_write_chunk(png_ptr, (png_bytep)png_sRGB, buf, (png_size_t)1);
  678. }
  679. #endif
  680. #if defined(PNG_WRITE_iCCP_SUPPORTED)
  681. /* write an iCCP chunk */
  682. void /* PRIVATE */
  683. png_write_iCCP(png_structp png_ptr, png_charp name, int compression_type,
  684.    png_charp profile, int profile_len)
  685. {
  686. #ifdef PNG_USE_LOCAL_ARRAYS
  687.    PNG_iCCP;
  688. #endif
  689.    png_size_t name_len;
  690.    png_charp new_name;
  691.    compression_state comp;
  692.    int embedded_profile_len = 0;
  693.    png_debug(1, "in png_write_iCCP");
  694.    comp.num_output_ptr = 0;
  695.    comp.max_output_ptr = 0;
  696.    comp.output_ptr = NULL;
  697.    comp.input = NULL;
  698.    comp.input_len = 0;
  699.    if ((name_len = png_check_keyword(png_ptr, name,
  700.       &new_name)) == 0)
  701.       return;
  702.    if (compression_type != PNG_COMPRESSION_TYPE_BASE)
  703.       png_warning(png_ptr, "Unknown compression type in iCCP chunk");
  704.    if (profile == NULL)
  705.       profile_len = 0;
  706.    if (profile_len > 3)
  707.       embedded_profile_len =
  708.           ((*( (png_bytep)profile    ))<<24) |
  709.           ((*( (png_bytep)profile + 1))<<16) |
  710.           ((*( (png_bytep)profile + 2))<< 8) |
  711.           ((*( (png_bytep)profile + 3))    );
  712.    if (profile_len < embedded_profile_len)
  713.    {
  714.       png_warning(png_ptr,
  715.         "Embedded profile length too large in iCCP chunk");
  716.       return;
  717.    }
  718.    if (profile_len > embedded_profile_len)
  719.    {
  720.       png_warning(png_ptr,
  721.         "Truncating profile to actual length in iCCP chunk");
  722.       profile_len = embedded_profile_len;
  723.    }
  724.    if (profile_len)
  725.       profile_len = png_text_compress(png_ptr, profile,
  726.         (png_size_t)profile_len, PNG_COMPRESSION_TYPE_BASE, &comp);
  727.    /* make sure we include the NULL after the name and the compression type */
  728.    png_write_chunk_start(png_ptr, (png_bytep)png_iCCP,
  729.           (png_uint_32)(name_len + profile_len + 2));
  730.    new_name[name_len + 1] = 0x00;
  731.    png_write_chunk_data(png_ptr, (png_bytep)new_name,
  732.      (png_size_t)(name_len + 2));
  733.    if (profile_len)
  734.       png_write_compressed_data_out(png_ptr, &comp);
  735.    png_write_chunk_end(png_ptr);
  736.    png_free(png_ptr, new_name);
  737. }
  738. #endif
  739. #if defined(PNG_WRITE_sPLT_SUPPORTED)
  740. /* write a sPLT chunk */
  741. void /* PRIVATE */
  742. png_write_sPLT(png_structp png_ptr, png_sPLT_tp spalette)
  743. {
  744. #ifdef PNG_USE_LOCAL_ARRAYS
  745.    PNG_sPLT;
  746. #endif
  747.    png_size_t name_len;
  748.    png_charp new_name;
  749.    png_byte entrybuf[10];
  750.    int entry_size = (spalette->depth == 8 ? 6 : 10);
  751.    int palette_size = entry_size * spalette->nentries;
  752.    png_sPLT_entryp ep;
  753. #ifdef PNG_NO_POINTER_INDEXING
  754.    int i;
  755. #endif
  756.    png_debug(1, "in png_write_sPLT");
  757.    if ((name_len = png_check_keyword(png_ptr,
  758.       spalette->name, &new_name))==0)
  759.      return;
  760.    /* make sure we include the NULL after the name */
  761.    png_write_chunk_start(png_ptr, (png_bytep)png_sPLT,
  762.      (png_uint_32)(name_len + 2 + palette_size));
  763.    png_write_chunk_data(png_ptr, (png_bytep)new_name,
  764.      (png_size_t)(name_len + 1));
  765.    png_write_chunk_data(png_ptr, (png_bytep)&spalette->depth, (png_size_t)1);
  766.    /* loop through each palette entry, writing appropriately */
  767. #ifndef PNG_NO_POINTER_INDEXING
  768.    for (ep = spalette->entries; ep<spalette->entries + spalette->nentries; ep++)
  769.    {
  770.       if (spalette->depth == 8)
  771.       {
  772.           entrybuf[0] = (png_byte)ep->red;
  773.           entrybuf[1] = (png_byte)ep->green;
  774.           entrybuf[2] = (png_byte)ep->blue;
  775.           entrybuf[3] = (png_byte)ep->alpha;
  776.           png_save_uint_16(entrybuf + 4, ep->frequency);
  777.       }
  778.       else
  779.       {
  780.           png_save_uint_16(entrybuf + 0, ep->red);
  781.           png_save_uint_16(entrybuf + 2, ep->green);
  782.           png_save_uint_16(entrybuf + 4, ep->blue);
  783.           png_save_uint_16(entrybuf + 6, ep->alpha);
  784.           png_save_uint_16(entrybuf + 8, ep->frequency);
  785.       }
  786.       png_write_chunk_data(png_ptr, entrybuf, (png_size_t)entry_size);
  787.    }
  788. #else
  789.    ep=spalette->entries;
  790.    for (i=0; i>spalette->nentries; i++)
  791.    {
  792.       if (spalette->depth == 8)
  793.       {
  794.           entrybuf[0] = (png_byte)ep[i].red;
  795.           entrybuf[1] = (png_byte)ep[i].green;
  796.           entrybuf[2] = (png_byte)ep[i].blue;
  797.           entrybuf[3] = (png_byte)ep[i].alpha;
  798.           png_save_uint_16(entrybuf + 4, ep[i].frequency);
  799.       }
  800.       else
  801.       {
  802.           png_save_uint_16(entrybuf + 0, ep[i].red);
  803.           png_save_uint_16(entrybuf + 2, ep[i].green);
  804.           png_save_uint_16(entrybuf + 4, ep[i].blue);
  805.           png_save_uint_16(entrybuf + 6, ep[i].alpha);
  806.           png_save_uint_16(entrybuf + 8, ep[i].frequency);
  807.       }
  808.       png_write_chunk_data(png_ptr, entrybuf, (png_size_t)entry_size);
  809.    }
  810. #endif
  811.    png_write_chunk_end(png_ptr);
  812.    png_free(png_ptr, new_name);
  813. }
  814. #endif
  815. #if defined(PNG_WRITE_sBIT_SUPPORTED)
  816. /* write the sBIT chunk */
  817. void /* PRIVATE */
  818. png_write_sBIT(png_structp png_ptr, png_color_8p sbit, int color_type)
  819. {
  820. #ifdef PNG_USE_LOCAL_ARRAYS
  821.    PNG_sBIT;
  822. #endif
  823.    png_byte buf[4];
  824.    png_size_t size;
  825.    png_debug(1, "in png_write_sBIT");
  826.    /* make sure we don't depend upon the order of PNG_COLOR_8 */
  827.    if (color_type & PNG_COLOR_MASK_COLOR)
  828.    {
  829.       png_byte maxbits;
  830.       maxbits = (png_byte)(color_type==PNG_COLOR_TYPE_PALETTE ? 8 :
  831.                 png_ptr->usr_bit_depth);
  832.       if (sbit->red == 0 || sbit->red > maxbits ||
  833.           sbit->green == 0 || sbit->green > maxbits ||
  834.           sbit->blue == 0 || sbit->blue > maxbits)
  835.       {
  836.          png_warning(png_ptr, "Invalid sBIT depth specified");
  837.          return;
  838.       }
  839.       buf[0] = sbit->red;
  840.       buf[1] = sbit->green;
  841.       buf[2] = sbit->blue;
  842.       size = 3;
  843.    }
  844.    else
  845.    {
  846.       if (sbit->gray == 0 || sbit->gray > png_ptr->usr_bit_depth)
  847.       {
  848.          png_warning(png_ptr, "Invalid sBIT depth specified");
  849.          return;
  850.       }
  851.       buf[0] = sbit->gray;
  852.       size = 1;
  853.    }
  854.    if (color_type & PNG_COLOR_MASK_ALPHA)
  855.    {
  856.       if (sbit->alpha == 0 || sbit->alpha > png_ptr->usr_bit_depth)
  857.       {
  858.          png_warning(png_ptr, "Invalid sBIT depth specified");
  859.          return;
  860.       }
  861.       buf[size++] = sbit->alpha;
  862.    }
  863.    png_write_chunk(png_ptr, (png_bytep)png_sBIT, buf, size);
  864. }
  865. #endif
  866. #if defined(PNG_WRITE_cHRM_SUPPORTED)
  867. /* write the cHRM chunk */
  868. #ifdef PNG_FLOATING_POINT_SUPPORTED
  869. void /* PRIVATE */
  870. png_write_cHRM(png_structp png_ptr, double white_x, double white_y,
  871.    double red_x, double red_y, double green_x, double green_y,
  872.    double blue_x, double blue_y)
  873. {
  874. #ifdef PNG_USE_LOCAL_ARRAYS
  875.    PNG_cHRM;
  876. #endif
  877.    png_byte buf[32];
  878.    png_fixed_point int_white_x, int_white_y, int_red_x, int_red_y,
  879.       int_green_x, int_green_y, int_blue_x, int_blue_y;
  880.    png_debug(1, "in png_write_cHRM");
  881.    int_white_x = (png_uint_32)(white_x * 100000.0 + 0.5);
  882.    int_white_y = (png_uint_32)(white_y * 100000.0 + 0.5);
  883.    int_red_x   = (png_uint_32)(red_x   * 100000.0 + 0.5);
  884.    int_red_y   = (png_uint_32)(red_y   * 100000.0 + 0.5);
  885.    int_green_x = (png_uint_32)(green_x * 100000.0 + 0.5);
  886.    int_green_y = (png_uint_32)(green_y * 100000.0 + 0.5);
  887.    int_blue_x  = (png_uint_32)(blue_x  * 100000.0 + 0.5);
  888.    int_blue_y  = (png_uint_32)(blue_y  * 100000.0 + 0.5);
  889. #if !defined(PNG_NO_CHECK_cHRM)
  890.    if (png_check_cHRM_fixed(png_ptr, int_white_x, int_white_y,
  891.       int_red_x, int_red_y, int_green_x, int_green_y, int_blue_x, int_blue_y))
  892. #endif
  893.    {
  894.      /* each value is saved in 1/100,000ths */
  895.    
  896.      png_save_uint_32(buf, int_white_x);
  897.      png_save_uint_32(buf + 4, int_white_y);
  898.      png_save_uint_32(buf + 8, int_red_x);
  899.      png_save_uint_32(buf + 12, int_red_y);
  900.      png_save_uint_32(buf + 16, int_green_x);
  901.      png_save_uint_32(buf + 20, int_green_y);
  902.      png_save_uint_32(buf + 24, int_blue_x);
  903.      png_save_uint_32(buf + 28, int_blue_y);
  904.      png_write_chunk(png_ptr, (png_bytep)png_cHRM, buf, (png_size_t)32);
  905.    }
  906. }
  907. #endif
  908. #ifdef PNG_FIXED_POINT_SUPPORTED
  909. void /* PRIVATE */
  910. png_write_cHRM_fixed(png_structp png_ptr, png_fixed_point white_x,
  911.    png_fixed_point white_y, png_fixed_point red_x, png_fixed_point red_y,
  912.    png_fixed_point green_x, png_fixed_point green_y, png_fixed_point blue_x,
  913.    png_fixed_point blue_y)
  914. {
  915. #ifdef PNG_USE_LOCAL_ARRAYS
  916.    PNG_cHRM;
  917. #endif
  918.    png_byte buf[32];
  919.    png_debug(1, "in png_write_cHRM");
  920.    /* each value is saved in 1/100,000ths */
  921. #if !defined(PNG_NO_CHECK_cHRM)
  922.    if (png_check_cHRM_fixed(png_ptr, white_x, white_y, red_x, red_y,
  923.       green_x, green_y, blue_x, blue_y))
  924. #endif
  925.    {
  926.    png_save_uint_32(buf, (png_uint_32)white_x);
  927.    png_save_uint_32(buf + 4, (png_uint_32)white_y);
  928.    png_save_uint_32(buf + 8, (png_uint_32)red_x);
  929.    png_save_uint_32(buf + 12, (png_uint_32)red_y);
  930.    png_save_uint_32(buf + 16, (png_uint_32)green_x);
  931.    png_save_uint_32(buf + 20, (png_uint_32)green_y);
  932.    png_save_uint_32(buf + 24, (png_uint_32)blue_x);
  933.    png_save_uint_32(buf + 28, (png_uint_32)blue_y);
  934.    png_write_chunk(png_ptr, (png_bytep)png_cHRM, buf, (png_size_t)32);
  935.    }
  936. }
  937. #endif
  938. #endif
  939. #if defined(PNG_WRITE_tRNS_SUPPORTED)
  940. /* write the tRNS chunk */
  941. void /* PRIVATE */
  942. png_write_tRNS(png_structp png_ptr, png_bytep trans, png_color_16p tran,
  943.    int num_trans, int color_type)
  944. {
  945. #ifdef PNG_USE_LOCAL_ARRAYS
  946.    PNG_tRNS;
  947. #endif
  948.    png_byte buf[6];
  949.    png_debug(1, "in png_write_tRNS");
  950.    if (color_type == PNG_COLOR_TYPE_PALETTE)
  951.    {
  952.       if (num_trans <= 0 || num_trans > (int)png_ptr->num_palette)
  953.       {
  954.          png_warning(png_ptr, "Invalid number of transparent colors specified");
  955.          return;
  956.       }
  957.       /* write the chunk out as it is */
  958.       png_write_chunk(png_ptr, (png_bytep)png_tRNS, trans,
  959.         (png_size_t)num_trans);
  960.    }
  961.    else if (color_type == PNG_COLOR_TYPE_GRAY)
  962.    {
  963.       /* one 16 bit value */
  964.       if (tran->gray >= (1 << png_ptr->bit_depth))
  965.       {
  966.          png_warning(png_ptr,
  967.            "Ignoring attempt to write tRNS chunk out-of-range for bit_depth");
  968.          return;
  969.       }
  970.       png_save_uint_16(buf, tran->gray);
  971.       png_write_chunk(png_ptr, (png_bytep)png_tRNS, buf, (png_size_t)2);
  972.    }
  973.    else if (color_type == PNG_COLOR_TYPE_RGB)
  974.    {
  975.       /* three 16 bit values */
  976.       png_save_uint_16(buf, tran->red);
  977.       png_save_uint_16(buf + 2, tran->green);
  978.       png_save_uint_16(buf + 4, tran->blue);
  979.       if (png_ptr->bit_depth == 8 && (buf[0] | buf[2] | buf[4]))
  980.       {
  981.          png_warning(png_ptr,
  982.            "Ignoring attempt to write 16-bit tRNS chunk when bit_depth is 8");
  983.          return;
  984.       }
  985.       png_write_chunk(png_ptr, (png_bytep)png_tRNS, buf, (png_size_t)6);
  986.    }
  987.    else
  988.    {
  989.       png_warning(png_ptr, "Can't write tRNS with an alpha channel");
  990.    }
  991. }
  992. #endif
  993. #if defined(PNG_WRITE_bKGD_SUPPORTED)
  994. /* write the background chunk */
  995. void /* PRIVATE */
  996. png_write_bKGD(png_structp png_ptr, png_color_16p back, int color_type)
  997. {
  998. #ifdef PNG_USE_LOCAL_ARRAYS
  999.    PNG_bKGD;
  1000. #endif
  1001.    png_byte buf[6];
  1002.    png_debug(1, "in png_write_bKGD");
  1003.    if (color_type == PNG_COLOR_TYPE_PALETTE)
  1004.    {
  1005.       if (
  1006. #if defined(PNG_MNG_FEATURES_SUPPORTED)
  1007.           (png_ptr->num_palette ||
  1008.           (!(png_ptr->mng_features_permitted & PNG_FLAG_MNG_EMPTY_PLTE))) &&
  1009. #endif
  1010.          back->index >= png_ptr->num_palette)
  1011.       {
  1012.          png_warning(png_ptr, "Invalid background palette index");
  1013.          return;
  1014.       }
  1015.       buf[0] = back->index;
  1016.       png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)1);
  1017.    }
  1018.    else if (color_type & PNG_COLOR_MASK_COLOR)
  1019.    {
  1020.       png_save_uint_16(buf, back->red);
  1021.       png_save_uint_16(buf + 2, back->green);
  1022.       png_save_uint_16(buf + 4, back->blue);
  1023.       if (png_ptr->bit_depth == 8 && (buf[0] | buf[2] | buf[4]))
  1024.       {
  1025.          png_warning(png_ptr,
  1026.            "Ignoring attempt to write 16-bit bKGD chunk when bit_depth is 8");
  1027.          return;
  1028.       }
  1029.       png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)6);
  1030.    }
  1031.    else
  1032.    {
  1033.       if (back->gray >= (1 << png_ptr->bit_depth))
  1034.       {
  1035.          png_warning(png_ptr,
  1036.            "Ignoring attempt to write bKGD chunk out-of-range for bit_depth");
  1037.          return;
  1038.       }
  1039.       png_save_uint_16(buf, back->gray);
  1040.       png_write_chunk(png_ptr, (png_bytep)png_bKGD, buf, (png_size_t)2);
  1041.    }
  1042. }
  1043. #endif
  1044. #if defined(PNG_WRITE_hIST_SUPPORTED)
  1045. /* write the histogram */
  1046. void /* PRIVATE */
  1047. png_write_hIST(png_structp png_ptr, png_uint_16p hist, int num_hist)
  1048. {
  1049. #ifdef PNG_USE_LOCAL_ARRAYS
  1050.    PNG_hIST;
  1051. #endif
  1052.    int i;
  1053.    png_byte buf[3];
  1054.    png_debug(1, "in png_write_hIST");
  1055.    if (num_hist > (int)png_ptr->num_palette)
  1056.    {
  1057.       png_debug2(3, "num_hist = %d, num_palette = %d", num_hist,
  1058.          png_ptr->num_palette);
  1059.       png_warning(png_ptr, "Invalid number of histogram entries specified");
  1060.       return;
  1061.    }
  1062.    png_write_chunk_start(png_ptr, (png_bytep)png_hIST,
  1063.      (png_uint_32)(num_hist * 2));
  1064.    for (i = 0; i < num_hist; i++)
  1065.    {
  1066.       png_save_uint_16(buf, hist[i]);
  1067.       png_write_chunk_data(png_ptr, buf, (png_size_t)2);
  1068.    }
  1069.    png_write_chunk_end(png_ptr);
  1070. }
  1071. #endif
  1072. #if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_pCAL_SUPPORTED) || 
  1073.     defined(PNG_WRITE_iCCP_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
  1074. /* Check that the tEXt or zTXt keyword is valid per PNG 1.0 specification,
  1075.  * and if invalid, correct the keyword rather than discarding the entire
  1076.  * chunk.  The PNG 1.0 specification requires keywords 1-79 characters in
  1077.  * length, forbids leading or trailing whitespace, multiple internal spaces,
  1078.  * and the non-break space (0x80) from ISO 8859-1.  Returns keyword length.
  1079.  *
  1080.  * The new_key is allocated to hold the corrected keyword and must be freed
  1081.  * by the calling routine.  This avoids problems with trying to write to
  1082.  * static keywords without having to have duplicate copies of the strings.
  1083.  */
  1084. png_size_t /* PRIVATE */
  1085. png_check_keyword(png_structp png_ptr, png_charp key, png_charpp new_key)
  1086. {
  1087.    png_size_t key_len;
  1088.    png_charp kp, dp;
  1089.    int kflag;
  1090.    int kwarn=0;
  1091.    png_debug(1, "in png_check_keyword");
  1092.    *new_key = NULL;
  1093.    if (key == NULL || (key_len = png_strlen(key)) == 0)
  1094.    {
  1095.       png_warning(png_ptr, "zero length keyword");
  1096.       return ((png_size_t)0);
  1097.    }
  1098.    png_debug1(2, "Keyword to be checked is '%s'", key);
  1099.    *new_key = (png_charp)png_malloc_warn(png_ptr, (png_uint_32)(key_len + 2));
  1100.    if (*new_key == NULL)
  1101.    {
  1102.       png_warning(png_ptr, "Out of memory while procesing keyword");
  1103.       return ((png_size_t)0);
  1104.    }
  1105.    /* Replace non-printing characters with a blank and print a warning */
  1106.    for (kp = key, dp = *new_key; *kp != ''; kp++, dp++)
  1107.    {
  1108.       if ((png_byte)*kp < 0x20 ||
  1109.          ((png_byte)*kp > 0x7E && (png_byte)*kp < 0xA1))
  1110.       {
  1111. #if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
  1112.          char msg[40];
  1113.          png_snprintf(msg, 40,
  1114.            "invalid keyword character 0x%02X", (png_byte)*kp);
  1115.          png_warning(png_ptr, msg);
  1116. #else
  1117.          png_warning(png_ptr, "invalid character in keyword");
  1118. #endif
  1119.          *dp = ' ';
  1120.       }
  1121.       else
  1122.       {
  1123.          *dp = *kp;
  1124.       }
  1125.    }
  1126.    *dp = '';
  1127.    /* Remove any trailing white space. */
  1128.    kp = *new_key + key_len - 1;
  1129.    if (*kp == ' ')
  1130.    {
  1131.       png_warning(png_ptr, "trailing spaces removed from keyword");
  1132.       while (*kp == ' ')
  1133.       {
  1134.         *(kp--) = '';
  1135.         key_len--;
  1136.       }
  1137.    }
  1138.    /* Remove any leading white space. */
  1139.    kp = *new_key;
  1140.    if (*kp == ' ')
  1141.    {
  1142.       png_warning(png_ptr, "leading spaces removed from keyword");
  1143.       while (*kp == ' ')
  1144.       {
  1145.         kp++;
  1146.         key_len--;
  1147.       }
  1148.    }
  1149.    png_debug1(2, "Checking for multiple internal spaces in '%s'", kp);
  1150.    /* Remove multiple internal spaces. */
  1151.    for (kflag = 0, dp = *new_key; *kp != ''; kp++)
  1152.    {
  1153.       if (*kp == ' ' && kflag == 0)
  1154.       {
  1155.          *(dp++) = *kp;
  1156.          kflag = 1;
  1157.       }
  1158.       else if (*kp == ' ')
  1159.       {
  1160.          key_len--;
  1161.          kwarn=1;
  1162.       }
  1163.       else
  1164.       {
  1165.          *(dp++) = *kp;
  1166.          kflag = 0;
  1167.       }
  1168.    }
  1169.    *dp = '';
  1170.    if (kwarn)
  1171.       png_warning(png_ptr, "extra interior spaces removed from keyword");
  1172.    if (key_len == 0)
  1173.    {
  1174.       png_free(png_ptr, *new_key);
  1175.        *new_key=NULL;
  1176.       png_warning(png_ptr, "Zero length keyword");
  1177.    }
  1178.    if (key_len > 79)
  1179.    {
  1180.       png_warning(png_ptr, "keyword length must be 1 - 79 characters");
  1181.       (*new_key)[79] = '';
  1182.       key_len = 79;
  1183.    }
  1184.    return (key_len);
  1185. }
  1186. #endif
  1187. #if defined(PNG_WRITE_tEXt_SUPPORTED)
  1188. /* write a tEXt chunk */
  1189. void /* PRIVATE */
  1190. png_write_tEXt(png_structp png_ptr, png_charp key, png_charp text,
  1191.    png_size_t text_len)
  1192. {
  1193. #ifdef PNG_USE_LOCAL_ARRAYS
  1194.    PNG_tEXt;
  1195. #endif
  1196.    png_size_t key_len;
  1197.    png_charp new_key;
  1198.    png_debug(1, "in png_write_tEXt");
  1199.    if ((key_len = png_check_keyword(png_ptr, key, &new_key))==0)
  1200.       return;
  1201.    if (text == NULL || *text == '')
  1202.       text_len = 0;
  1203.    else
  1204.       text_len = png_strlen(text);
  1205.    /* make sure we include the 0 after the key */
  1206.    png_write_chunk_start(png_ptr, (png_bytep)png_tEXt,
  1207.       (png_uint_32)(key_len + text_len + 1));
  1208.    /*
  1209.     * We leave it to the application to meet PNG-1.0 requirements on the
  1210.     * contents of the text.  PNG-1.0 through PNG-1.2 discourage the use of
  1211.     * any non-Latin-1 characters except for NEWLINE.  ISO PNG will forbid them.
  1212.     * The NUL character is forbidden by PNG-1.0 through PNG-1.2 and ISO PNG.
  1213.     */
  1214.    png_write_chunk_data(png_ptr, (png_bytep)new_key,
  1215.      (png_size_t)(key_len + 1));
  1216.    if (text_len)
  1217.       png_write_chunk_data(png_ptr, (png_bytep)text, (png_size_t)text_len);
  1218.    png_write_chunk_end(png_ptr);
  1219.    png_free(png_ptr, new_key);
  1220. }
  1221. #endif
  1222. #if defined(PNG_WRITE_zTXt_SUPPORTED)
  1223. /* write a compressed text chunk */
  1224. void /* PRIVATE */
  1225. png_write_zTXt(png_structp png_ptr, png_charp key, png_charp text,
  1226.    png_size_t text_len, int compression)
  1227. {
  1228. #ifdef PNG_USE_LOCAL_ARRAYS
  1229.    PNG_zTXt;
  1230. #endif
  1231.    png_size_t key_len;
  1232.    char buf[1];
  1233.    png_charp new_key;
  1234.    compression_state comp;
  1235.    png_debug(1, "in png_write_zTXt");
  1236.    comp.num_output_ptr = 0;
  1237.    comp.max_output_ptr = 0;
  1238.    comp.output_ptr = NULL;
  1239.    comp.input = NULL;
  1240.    comp.input_len = 0;
  1241.    if ((key_len = png_check_keyword(png_ptr, key, &new_key))==0)
  1242.    {
  1243.       png_free(png_ptr, new_key);
  1244.       return;
  1245.    }
  1246.    if (text == NULL || *text == '' || compression==PNG_TEXT_COMPRESSION_NONE)
  1247.    {
  1248.       png_write_tEXt(png_ptr, new_key, text, (png_size_t)0);
  1249.       png_free(png_ptr, new_key);
  1250.       return;
  1251.    }
  1252.    text_len = png_strlen(text);
  1253.    /* compute the compressed data; do it now for the length */
  1254.    text_len = png_text_compress(png_ptr, text, text_len, compression,
  1255.        &comp);
  1256.    /* write start of chunk */
  1257.    png_write_chunk_start(png_ptr, (png_bytep)png_zTXt,
  1258.      (png_uint_32)(key_len+text_len + 2));
  1259.    /* write key */
  1260.    png_write_chunk_data(png_ptr, (png_bytep)new_key,
  1261.      (png_size_t)(key_len + 1));
  1262.    png_free(png_ptr, new_key);
  1263.    buf[0] = (png_byte)compression;
  1264.    /* write compression */
  1265.    png_write_chunk_data(png_ptr, (png_bytep)buf, (png_size_t)1);
  1266.    /* write the compressed data */
  1267.    png_write_compressed_data_out(png_ptr, &comp);
  1268.    /* close the chunk */
  1269.    png_write_chunk_end(png_ptr);
  1270. }
  1271. #endif
  1272. #if defined(PNG_WRITE_iTXt_SUPPORTED)
  1273. /* write an iTXt chunk */
  1274. void /* PRIVATE */
  1275. png_write_iTXt(png_structp png_ptr, int compression, png_charp key,
  1276.     png_charp lang, png_charp lang_key, png_charp text)
  1277. {
  1278. #ifdef PNG_USE_LOCAL_ARRAYS
  1279.    PNG_iTXt;
  1280. #endif
  1281.    png_size_t lang_len, key_len, lang_key_len, text_len;
  1282.    png_charp new_lang;
  1283.    png_charp new_key = NULL;
  1284.    png_byte cbuf[2];
  1285.    compression_state comp;
  1286.    png_debug(1, "in png_write_iTXt");
  1287.    comp.num_output_ptr = 0;
  1288.    comp.max_output_ptr = 0;
  1289.    comp.output_ptr = NULL;
  1290.    comp.input = NULL;
  1291.    if ((key_len = png_check_keyword(png_ptr, key, &new_key))==0)
  1292.       return;
  1293.    if ((lang_len = png_check_keyword(png_ptr, lang, &new_lang))==0)
  1294.    {
  1295.       png_warning(png_ptr, "Empty language field in iTXt chunk");
  1296.       new_lang = NULL;
  1297.       lang_len = 0;
  1298.    }
  1299.    if (lang_key == NULL)
  1300.      lang_key_len = 0;
  1301.    else
  1302.      lang_key_len = png_strlen(lang_key);
  1303.    if (text == NULL)
  1304.       text_len = 0;
  1305.    else
  1306.      text_len = png_strlen(text);
  1307.    /* compute the compressed data; do it now for the length */
  1308.    text_len = png_text_compress(png_ptr, text, text_len, compression-2,
  1309.       &comp);
  1310.    /* make sure we include the compression flag, the compression byte,
  1311.     * and the NULs after the key, lang, and lang_key parts */
  1312.    png_write_chunk_start(png_ptr, (png_bytep)png_iTXt,
  1313.           (png_uint_32)(
  1314.         5 /* comp byte, comp flag, terminators for key, lang and lang_key */
  1315.         + key_len
  1316.         + lang_len
  1317.         + lang_key_len
  1318.         + text_len));
  1319.    /*
  1320.     * We leave it to the application to meet PNG-1.0 requirements on the
  1321.     * contents of the text.  PNG-1.0 through PNG-1.2 discourage the use of
  1322.     * any non-Latin-1 characters except for NEWLINE.  ISO PNG will forbid them.
  1323.     * The NUL character is forbidden by PNG-1.0 through PNG-1.2 and ISO PNG.
  1324.     */
  1325.    png_write_chunk_data(png_ptr, (png_bytep)new_key,
  1326.      (png_size_t)(key_len + 1));
  1327.    /* set the compression flag */
  1328.    if (compression == PNG_ITXT_COMPRESSION_NONE || 
  1329.        compression == PNG_TEXT_COMPRESSION_NONE)
  1330.        cbuf[0] = 0;
  1331.    else /* compression == PNG_ITXT_COMPRESSION_zTXt */
  1332.        cbuf[0] = 1;
  1333.    /* set the compression method */
  1334.    cbuf[1] = 0;
  1335.    png_write_chunk_data(png_ptr, cbuf, (png_size_t)2);
  1336.    cbuf[0] = 0;
  1337.    png_write_chunk_data(png_ptr, (new_lang ? (png_bytep)new_lang : cbuf),
  1338.      (png_size_t)(lang_len + 1));
  1339.    png_write_chunk_data(png_ptr, (lang_key ? (png_bytep)lang_key : cbuf),
  1340.      (png_size_t)(lang_key_len + 1));
  1341.    png_write_compressed_data_out(png_ptr, &comp);
  1342.    png_write_chunk_end(png_ptr);
  1343.    png_free(png_ptr, new_key);
  1344.    png_free(png_ptr, new_lang);
  1345. }
  1346. #endif
  1347. #if defined(PNG_WRITE_oFFs_SUPPORTED)
  1348. /* write the oFFs chunk */
  1349. void /* PRIVATE */
  1350. png_write_oFFs(png_structp png_ptr, png_int_32 x_offset, png_int_32 y_offset,
  1351.    int unit_type)
  1352. {
  1353. #ifdef PNG_USE_LOCAL_ARRAYS
  1354.    PNG_oFFs;
  1355. #endif
  1356.    png_byte buf[9];
  1357.    png_debug(1, "in png_write_oFFs");
  1358.    if (unit_type >= PNG_OFFSET_LAST)
  1359.       png_warning(png_ptr, "Unrecognized unit type for oFFs chunk");
  1360.    png_save_int_32(buf, x_offset);
  1361.    png_save_int_32(buf + 4, y_offset);
  1362.    buf[8] = (png_byte)unit_type;
  1363.    png_write_chunk(png_ptr, (png_bytep)png_oFFs, buf, (png_size_t)9);
  1364. }
  1365. #endif
  1366. #if defined(PNG_WRITE_pCAL_SUPPORTED)
  1367. /* write the pCAL chunk (described in the PNG extensions document) */
  1368. void /* PRIVATE */
  1369. png_write_pCAL(png_structp png_ptr, png_charp purpose, png_int_32 X0,
  1370.    png_int_32 X1, int type, int nparams, png_charp units, png_charpp params)
  1371. {
  1372. #ifdef PNG_USE_LOCAL_ARRAYS
  1373.    PNG_pCAL;
  1374. #endif
  1375.    png_size_t purpose_len, units_len, total_len;
  1376.    png_uint_32p params_len;
  1377.    png_byte buf[10];
  1378.    png_charp new_purpose;
  1379.    int i;
  1380.    png_debug1(1, "in png_write_pCAL (%d parameters)", nparams);
  1381.    if (type >= PNG_EQUATION_LAST)
  1382.       png_warning(png_ptr, "Unrecognized equation type for pCAL chunk");
  1383.    purpose_len = png_check_keyword(png_ptr, purpose, &new_purpose) + 1;
  1384.    png_debug1(3, "pCAL purpose length = %d", (int)purpose_len);
  1385.    units_len = png_strlen(units) + (nparams == 0 ? 0 : 1);
  1386.    png_debug1(3, "pCAL units length = %d", (int)units_len);
  1387.    total_len = purpose_len + units_len + 10;
  1388.    params_len = (png_uint_32p)png_malloc(png_ptr,
  1389.       (png_uint_32)(nparams * png_sizeof(png_uint_32)));
  1390.    /* Find the length of each parameter, making sure we don't count the
  1391.       null terminator for the last parameter. */
  1392.    for (i = 0; i < nparams; i++)
  1393.    {
  1394.       params_len[i] = (png_uint_32)png_strlen(params[i]) + (i == nparams - 1 ? 0 : 1);
  1395.       png_debug2(3, "pCAL parameter %d length = %lu", i,
  1396.         (unsigned long) params_len[i]);
  1397.       total_len += (png_size_t)params_len[i];
  1398.    }
  1399.    png_debug1(3, "pCAL total length = %d", (int)total_len);
  1400.    png_write_chunk_start(png_ptr, (png_bytep)png_pCAL, (png_uint_32)total_len);
  1401.    png_write_chunk_data(png_ptr, (png_bytep)new_purpose,
  1402.      (png_size_t)purpose_len);
  1403.    png_save_int_32(buf, X0);
  1404.    png_save_int_32(buf + 4, X1);
  1405.    buf[8] = (png_byte)type;
  1406.    buf[9] = (png_byte)nparams;
  1407.    png_write_chunk_data(png_ptr, buf, (png_size_t)10);
  1408.    png_write_chunk_data(png_ptr, (png_bytep)units, (png_size_t)units_len);
  1409.    png_free(png_ptr, new_purpose);
  1410.    for (i = 0; i < nparams; i++)
  1411.    {
  1412.       png_write_chunk_data(png_ptr, (png_bytep)params[i],
  1413.          (png_size_t)params_len[i]);
  1414.    }
  1415.    png_free(png_ptr, params_len);
  1416.    png_write_chunk_end(png_ptr);
  1417. }
  1418. #endif
  1419. #if defined(PNG_WRITE_sCAL_SUPPORTED)
  1420. /* write the sCAL chunk */
  1421. #if defined(PNG_FLOATING_POINT_SUPPORTED) && !defined(PNG_NO_STDIO)
  1422. void /* PRIVATE */
  1423. png_write_sCAL(png_structp png_ptr, int unit, double width, double height)
  1424. {
  1425. #ifdef PNG_USE_LOCAL_ARRAYS
  1426.    PNG_sCAL;
  1427. #endif
  1428.    char buf[64];
  1429.    png_size_t total_len;
  1430.    png_debug(1, "in png_write_sCAL");
  1431.    buf[0] = (char)unit;
  1432. #if defined(_WIN32_WCE)
  1433. /* sprintf() function is not supported on WindowsCE */
  1434.    {
  1435.       wchar_t wc_buf[32];
  1436.       size_t wc_len;
  1437.       swprintf(wc_buf, TEXT("%12.12e"), width);
  1438.       wc_len = wcslen(wc_buf);
  1439.       WideCharToMultiByte(CP_ACP, 0, wc_buf, -1, buf + 1, wc_len, NULL, NULL);
  1440.       total_len = wc_len + 2;
  1441.       swprintf(wc_buf, TEXT("%12.12e"), height);
  1442.       wc_len = wcslen(wc_buf);
  1443.       WideCharToMultiByte(CP_ACP, 0, wc_buf, -1, buf + total_len, wc_len,
  1444.          NULL, NULL);
  1445.       total_len += wc_len;
  1446.    }
  1447. #else
  1448.    png_snprintf(buf + 1, 63, "%12.12e", width);
  1449.    total_len = 1 + png_strlen(buf + 1) + 1;
  1450.    png_snprintf(buf + total_len, 64-total_len, "%12.12e", height);
  1451.    total_len += png_strlen(buf + total_len);
  1452. #endif
  1453.    png_debug1(3, "sCAL total length = %u", (unsigned int)total_len);
  1454.    png_write_chunk(png_ptr, (png_bytep)png_sCAL, (png_bytep)buf, total_len);
  1455. }
  1456. #else
  1457. #ifdef PNG_FIXED_POINT_SUPPORTED
  1458. void /* PRIVATE */
  1459. png_write_sCAL_s(png_structp png_ptr, int unit, png_charp width,
  1460.    png_charp height)
  1461. {
  1462. #ifdef PNG_USE_LOCAL_ARRAYS
  1463.    PNG_sCAL;
  1464. #endif
  1465.    png_byte buf[64];
  1466.    png_size_t wlen, hlen, total_len;
  1467.    png_debug(1, "in png_write_sCAL_s");
  1468.    wlen = png_strlen(width);
  1469.    hlen = png_strlen(height);
  1470.    total_len = wlen + hlen + 2;
  1471.    if (total_len > 64)
  1472.    {
  1473.       png_warning(png_ptr, "Can't write sCAL (buffer too small)");
  1474.       return;
  1475.    }
  1476.    buf[0] = (png_byte)unit;
  1477.    png_memcpy(buf + 1, width, wlen + 1);      /* append the '' here */
  1478.    png_memcpy(buf + wlen + 2, height, hlen);  /* do NOT append the '' here */
  1479.    png_debug1(3, "sCAL total length = %u", (unsigned int)total_len);
  1480.    png_write_chunk(png_ptr, (png_bytep)png_sCAL, buf, total_len);
  1481. }
  1482. #endif
  1483. #endif
  1484. #endif
  1485. #if defined(PNG_WRITE_pHYs_SUPPORTED)
  1486. /* write the pHYs chunk */
  1487. void /* PRIVATE */
  1488. png_write_pHYs(png_structp png_ptr, png_uint_32 x_pixels_per_unit,
  1489.    png_uint_32 y_pixels_per_unit,
  1490.    int unit_type)
  1491. {
  1492. #ifdef PNG_USE_LOCAL_ARRAYS
  1493.    PNG_pHYs;
  1494. #endif
  1495.    png_byte buf[9];
  1496.    png_debug(1, "in png_write_pHYs");
  1497.    if (unit_type >= PNG_RESOLUTION_LAST)
  1498.       png_warning(png_ptr, "Unrecognized unit type for pHYs chunk");
  1499.    png_save_uint_32(buf, x_pixels_per_unit);
  1500.    png_save_uint_32(buf + 4, y_pixels_per_unit);
  1501.    buf[8] = (png_byte)unit_type;
  1502.    png_write_chunk(png_ptr, (png_bytep)png_pHYs, buf, (png_size_t)9);
  1503. }
  1504. #endif
  1505. #if defined(PNG_WRITE_tIME_SUPPORTED)
  1506. /* Write the tIME chunk.  Use either png_convert_from_struct_tm()
  1507.  * or png_convert_from_time_t(), or fill in the structure yourself.
  1508.  */
  1509. void /* PRIVATE */
  1510. png_write_tIME(png_structp png_ptr, png_timep mod_time)
  1511. {
  1512. #ifdef PNG_USE_LOCAL_ARRAYS
  1513.    PNG_tIME;
  1514. #endif
  1515.    png_byte buf[7];
  1516.    png_debug(1, "in png_write_tIME");
  1517.    if (mod_time->month  > 12 || mod_time->month  < 1 ||
  1518.        mod_time->day    > 31 || mod_time->day    < 1 ||
  1519.        mod_time->hour   > 23 || mod_time->second > 60)
  1520.    {
  1521.       png_warning(png_ptr, "Invalid time specified for tIME chunk");
  1522.       return;
  1523.    }
  1524.    png_save_uint_16(buf, mod_time->year);
  1525.    buf[2] = mod_time->month;
  1526.    buf[3] = mod_time->day;
  1527.    buf[4] = mod_time->hour;
  1528.    buf[5] = mod_time->minute;
  1529.    buf[6] = mod_time->second;
  1530.    png_write_chunk(png_ptr, (png_bytep)png_tIME, buf, (png_size_t)7);
  1531. }
  1532. #endif
  1533. /* initializes the row writing capability of libpng */
  1534. void /* PRIVATE */
  1535. png_write_start_row(png_structp png_ptr)
  1536. {
  1537. #ifdef PNG_WRITE_INTERLACING_SUPPORTED
  1538. #ifdef PNG_USE_LOCAL_ARRAYS
  1539.    /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
  1540.    /* start of interlace block */
  1541.    int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
  1542.    /* offset to next interlace block */
  1543.    int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
  1544.    /* start of interlace block in the y direction */
  1545.    int png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
  1546.    /* offset to next interlace block in the y direction */
  1547.    int png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
  1548. #endif
  1549. #endif
  1550.    png_size_t buf_size;
  1551.    png_debug(1, "in png_write_start_row");
  1552.    buf_size = (png_size_t)(PNG_ROWBYTES(
  1553.       png_ptr->usr_channels*png_ptr->usr_bit_depth, png_ptr->width) + 1);
  1554.    /* set up row buffer */
  1555.    png_ptr->row_buf = (png_bytep)png_malloc(png_ptr,
  1556.      (png_uint_32)buf_size);
  1557.    png_ptr->row_buf[0] = PNG_FILTER_VALUE_NONE;
  1558. #ifndef PNG_NO_WRITE_FILTER
  1559.    /* set up filtering buffer, if using this filter */
  1560.    if (png_ptr->do_filter & PNG_FILTER_SUB)
  1561.    {
  1562.       png_ptr->sub_row = (png_bytep)png_malloc(png_ptr,
  1563.          (png_uint_32)(png_ptr->rowbytes + 1));
  1564.       png_ptr->sub_row[0] = PNG_FILTER_VALUE_SUB;
  1565.    }
  1566.    /* We only need to keep the previous row if we are using one of these. */
  1567.    if (png_ptr->do_filter & (PNG_FILTER_AVG | PNG_FILTER_UP | PNG_FILTER_PAETH))
  1568.    {
  1569.      /* set up previous row buffer */
  1570.       png_ptr->prev_row = (png_bytep)png_malloc(png_ptr,
  1571.         (png_uint_32)buf_size);
  1572.       png_memset(png_ptr->prev_row, 0, buf_size);
  1573.       if (png_ptr->do_filter & PNG_FILTER_UP)
  1574.       {
  1575.          png_ptr->up_row = (png_bytep)png_malloc(png_ptr,
  1576.            (png_uint_32)(png_ptr->rowbytes + 1));
  1577.          png_ptr->up_row[0] = PNG_FILTER_VALUE_UP;
  1578.       }
  1579.       if (png_ptr->do_filter & PNG_FILTER_AVG)
  1580.       {
  1581.          png_ptr->avg_row = (png_bytep)png_malloc(png_ptr,
  1582.            (png_uint_32)(png_ptr->rowbytes + 1));
  1583.          png_ptr->avg_row[0] = PNG_FILTER_VALUE_AVG;
  1584.       }
  1585.       if (png_ptr->do_filter & PNG_FILTER_PAETH)
  1586.       {
  1587.          png_ptr->paeth_row = (png_bytep)png_malloc(png_ptr,
  1588.            (png_uint_32)(png_ptr->rowbytes + 1));
  1589.          png_ptr->paeth_row[0] = PNG_FILTER_VALUE_PAETH;
  1590.       }
  1591.    }
  1592. #endif /* PNG_NO_WRITE_FILTER */
  1593. #ifdef PNG_WRITE_INTERLACING_SUPPORTED
  1594.    /* if interlaced, we need to set up width and height of pass */
  1595.    if (png_ptr->interlaced)
  1596.    {
  1597.       if (!(png_ptr->transformations & PNG_INTERLACE))
  1598.       {
  1599.          png_ptr->num_rows = (png_ptr->height + png_pass_yinc[0] - 1 -
  1600.             png_pass_ystart[0]) / png_pass_yinc[0];
  1601.          png_ptr->usr_width = (png_ptr->width + png_pass_inc[0] - 1 -
  1602.             png_pass_start[0]) / png_pass_inc[0];
  1603.       }
  1604.       else
  1605.       {
  1606.          png_ptr->num_rows = png_ptr->height;
  1607.          png_ptr->usr_width = png_ptr->width;
  1608.       }
  1609.    }
  1610.    else
  1611. #endif
  1612.    {
  1613.       png_ptr->num_rows = png_ptr->height;
  1614.       png_ptr->usr_width = png_ptr->width;
  1615.    }
  1616.    png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
  1617.    png_ptr->zstream.next_out = png_ptr->zbuf;
  1618. }
  1619. /* Internal use only.  Called when finished processing a row of data. */
  1620. void /* PRIVATE */
  1621. png_write_finish_row(png_structp png_ptr)
  1622. {
  1623. #ifdef PNG_WRITE_INTERLACING_SUPPORTED
  1624. #ifdef PNG_USE_LOCAL_ARRAYS
  1625.    /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
  1626.    /* start of interlace block */
  1627.    int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
  1628.    /* offset to next interlace block */
  1629.    int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
  1630.    /* start of interlace block in the y direction */
  1631.    int png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
  1632.    /* offset to next interlace block in the y direction */
  1633.    int png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
  1634. #endif
  1635. #endif
  1636.    int ret;
  1637.    png_debug(1, "in png_write_finish_row");
  1638.    /* next row */
  1639.    png_ptr->row_number++;
  1640.    /* see if we are done */
  1641.    if (png_ptr->row_number < png_ptr->num_rows)
  1642.       return;
  1643. #ifdef PNG_WRITE_INTERLACING_SUPPORTED
  1644.    /* if interlaced, go to next pass */
  1645.    if (png_ptr->interlaced)
  1646.    {
  1647.       png_ptr->row_number = 0;
  1648.       if (png_ptr->transformations & PNG_INTERLACE)
  1649.       {
  1650.          png_ptr->pass++;
  1651.       }
  1652.       else
  1653.       {
  1654.          /* loop until we find a non-zero width or height pass */
  1655.          do
  1656.          {
  1657.             png_ptr->pass++;
  1658.             if (png_ptr->pass >= 7)
  1659.                break;
  1660.             png_ptr->usr_width = (png_ptr->width +
  1661.                png_pass_inc[png_ptr->pass] - 1 -
  1662.                png_pass_start[png_ptr->pass]) /
  1663.                png_pass_inc[png_ptr->pass];
  1664.             png_ptr->num_rows = (png_ptr->height +
  1665.                png_pass_yinc[png_ptr->pass] - 1 -
  1666.                png_pass_ystart[png_ptr->pass]) /
  1667.                png_pass_yinc[png_ptr->pass];
  1668.             if (png_ptr->transformations & PNG_INTERLACE)
  1669.                break;
  1670.          } while (png_ptr->usr_width == 0 || png_ptr->num_rows == 0);
  1671.       }
  1672.       /* reset the row above the image for the next pass */
  1673.       if (png_ptr->pass < 7)
  1674.       {
  1675.          if (png_ptr->prev_row != NULL)
  1676.             png_memset(png_ptr->prev_row, 0,
  1677.                (png_size_t)(PNG_ROWBYTES(png_ptr->usr_channels*
  1678.                png_ptr->usr_bit_depth, png_ptr->width)) + 1);
  1679.          return;
  1680.       }
  1681.    }
  1682. #endif
  1683.    /* if we get here, we've just written the last row, so we need
  1684.       to flush the compressor */
  1685.    do
  1686.    {
  1687.       /* tell the compressor we are done */
  1688.       ret = deflate(&png_ptr->zstream, Z_FINISH);
  1689.       /* check for an error */
  1690.       if (ret == Z_OK)
  1691.       {
  1692.          /* check to see if we need more room */
  1693.          if (!(png_ptr->zstream.avail_out))
  1694.          {
  1695.             png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
  1696.             png_ptr->zstream.next_out = png_ptr->zbuf;
  1697.             png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
  1698.          }
  1699.       }
  1700.       else if (ret != Z_STREAM_END)
  1701.       {
  1702.          if (png_ptr->zstream.msg != NULL)
  1703.             png_error(png_ptr, png_ptr->zstream.msg);
  1704.          else
  1705.             png_error(png_ptr, "zlib error");
  1706.       }
  1707.    } while (ret != Z_STREAM_END);
  1708.    /* write any extra space */
  1709.    if (png_ptr->zstream.avail_out < png_ptr->zbuf_size)
  1710.    {
  1711.       png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size -
  1712.          png_ptr->zstream.avail_out);
  1713.    }
  1714.    deflateReset(&png_ptr->zstream);
  1715.    png_ptr->zstream.data_type = Z_BINARY;
  1716. }
  1717. #if defined(PNG_WRITE_INTERLACING_SUPPORTED)
  1718. /* Pick out the correct pixels for the interlace pass.
  1719.  * The basic idea here is to go through the row with a source
  1720.  * pointer and a destination pointer (sp and dp), and copy the
  1721.  * correct pixels for the pass.  As the row gets compacted,
  1722.  * sp will always be >= dp, so we should never overwrite anything.
  1723.  * See the default: case for the easiest code to understand.
  1724.  */
  1725. void /* PRIVATE */
  1726. png_do_write_interlace(png_row_infop row_info, png_bytep row, int pass)
  1727. {
  1728. #ifdef PNG_USE_LOCAL_ARRAYS
  1729.    /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
  1730.    /* start of interlace block */
  1731.    int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
  1732.    /* offset to next interlace block */
  1733.    int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
  1734. #endif
  1735.    png_debug(1, "in png_do_write_interlace");
  1736.    /* we don't have to do anything on the last pass (6) */
  1737. #if defined(PNG_USELESS_TESTS_SUPPORTED)
  1738.    if (row != NULL && row_info != NULL && pass < 6)
  1739. #else
  1740.    if (pass < 6)
  1741. #endif
  1742.    {
  1743.       /* each pixel depth is handled separately */
  1744.       switch (row_info->pixel_depth)
  1745.       {
  1746.          case 1:
  1747.          {
  1748.             png_bytep sp;
  1749.             png_bytep dp;
  1750.             int shift;
  1751.             int d;
  1752.             int value;
  1753.             png_uint_32 i;
  1754.             png_uint_32 row_width = row_info->width;
  1755.             dp = row;
  1756.             d = 0;
  1757.             shift = 7;
  1758.             for (i = png_pass_start[pass]; i < row_width;
  1759.                i += png_pass_inc[pass])
  1760.             {
  1761.                sp = row + (png_size_t)(i >> 3);
  1762.                value = (int)(*sp >> (7 - (int)(i & 0x07))) & 0x01;
  1763.                d |= (value << shift);
  1764.                if (shift == 0)
  1765.                {
  1766.                   shift = 7;
  1767.                   *dp++ = (png_byte)d;
  1768.                   d = 0;
  1769.                }
  1770.                else
  1771.                   shift--;
  1772.             }
  1773.             if (shift != 7)
  1774.                *dp = (png_byte)d;
  1775.             break;
  1776.          }
  1777.          case 2:
  1778.          {
  1779.             png_bytep sp;
  1780.             png_bytep dp;
  1781.             int shift;
  1782.             int d;
  1783.             int value;
  1784.             png_uint_32 i;
  1785.             png_uint_32 row_width = row_info->width;
  1786.             dp = row;
  1787.             shift = 6;
  1788.             d = 0;
  1789.             for (i = png_pass_start[pass]; i < row_width;
  1790.                i += png_pass_inc[pass])
  1791.             {
  1792.                sp = row + (png_size_t)(i >> 2);
  1793.                value = (*sp >> ((3 - (int)(i & 0x03)) << 1)) & 0x03;
  1794.                d |= (value << shift);
  1795.                if (shift == 0)
  1796.                {
  1797.                   shift = 6;
  1798.                   *dp++ = (png_byte)d;
  1799.                   d = 0;
  1800.                }
  1801.                else
  1802.                   shift -= 2;
  1803.             }
  1804.             if (shift != 6)
  1805.                    *dp = (png_byte)d;
  1806.             break;
  1807.          }
  1808.          case 4:
  1809.          {
  1810.             png_bytep sp;
  1811.             png_bytep dp;
  1812.             int shift;
  1813.             int d;
  1814.             int value;
  1815.             png_uint_32 i;
  1816.             png_uint_32 row_width = row_info->width;
  1817.             dp = row;
  1818.             shift = 4;
  1819.             d = 0;
  1820.             for (i = png_pass_start[pass]; i < row_width;
  1821.                i += png_pass_inc[pass])
  1822.             {
  1823.                sp = row + (png_size_t)(i >> 1);
  1824.                value = (*sp >> ((1 - (int)(i & 0x01)) << 2)) & 0x0f;
  1825.                d |= (value << shift);
  1826.                if (shift == 0)
  1827.                {
  1828.                   shift = 4;
  1829.                   *dp++ = (png_byte)d;
  1830.                   d = 0;
  1831.                }
  1832.                else
  1833.                   shift -= 4;
  1834.             }
  1835.             if (shift != 4)
  1836.                *dp = (png_byte)d;
  1837.             break;
  1838.          }
  1839.          default:
  1840.          {
  1841.             png_bytep sp;
  1842.             png_bytep dp;
  1843.             png_uint_32 i;
  1844.             png_uint_32 row_width = row_info->width;
  1845.             png_size_t pixel_bytes;
  1846.             /* start at the beginning */
  1847.             dp = row;
  1848.             /* find out how many bytes each pixel takes up */
  1849.             pixel_bytes = (row_info->pixel_depth >> 3);
  1850.             /* loop through the row, only looking at the pixels that
  1851.                matter */
  1852.             for (i = png_pass_start[pass]; i < row_width;
  1853.                i += png_pass_inc[pass])
  1854.             {
  1855.                /* find out where the original pixel is */
  1856.                sp = row + (png_size_t)i * pixel_bytes;
  1857.                /* move the pixel */
  1858.                if (dp != sp)
  1859.                   png_memcpy(dp, sp, pixel_bytes);
  1860.                /* next pixel */
  1861.                dp += pixel_bytes;
  1862.             }
  1863.             break;
  1864.          }
  1865.       }
  1866.       /* set new row width */
  1867.       row_info->width = (row_info->width +
  1868.          png_pass_inc[pass] - 1 -
  1869.          png_pass_start[pass]) /
  1870.          png_pass_inc[pass];
  1871.          row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth,
  1872.             row_info->width);
  1873.    }
  1874. }
  1875. #endif
  1876. /* This filters the row, chooses which filter to use, if it has not already
  1877.  * been specified by the application, and then writes the row out with the
  1878.  * chosen filter.
  1879.  */
  1880. #define PNG_MAXSUM (((png_uint_32)(-1)) >> 1)
  1881. #define PNG_HISHIFT 10
  1882. #define PNG_LOMASK ((png_uint_32)0xffffL)
  1883. #define PNG_HIMASK ((png_uint_32)(~PNG_LOMASK >> PNG_HISHIFT))
  1884. void /* PRIVATE */
  1885. png_write_find_filter(png_structp png_ptr, png_row_infop row_info)
  1886. {
  1887.    png_bytep best_row;
  1888. #ifndef PNG_NO_WRITE_FILTER
  1889.    png_bytep prev_row, row_buf;
  1890.    png_uint_32 mins, bpp;
  1891.    png_byte filter_to_do = png_ptr->do_filter;
  1892.    png_uint_32 row_bytes = row_info->rowbytes;
  1893. #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
  1894.    int num_p_filters = (int)png_ptr->num_prev_filters;
  1895. #endif
  1896.    png_debug(1, "in png_write_find_filter");
  1897.    /* find out how many bytes offset each pixel is */
  1898.    bpp = (row_info->pixel_depth + 7) >> 3;
  1899.    prev_row = png_ptr->prev_row;
  1900. #endif
  1901.    best_row = png_ptr->row_buf;
  1902. #ifndef PNG_NO_WRITE_FILTER
  1903.    row_buf = best_row;
  1904.    mins = PNG_MAXSUM;
  1905.    /* The prediction method we use is to find which method provides the
  1906.     * smallest value when summing the absolute values of the distances
  1907.     * from zero, using anything >= 128 as negative numbers.  This is known
  1908.     * as the "minimum sum of absolute differences" heuristic.  Other
  1909.     * heuristics are the "weighted minimum sum of absolute differences"
  1910.     * (experimental and can in theory improve compression), and the "zlib
  1911.     * predictive" method (not implemented yet), which does test compressions
  1912.     * of lines using different filter methods, and then chooses the
  1913.     * (series of) filter(s) that give minimum compressed data size (VERY
  1914.     * computationally expensive).
  1915.     *
  1916.     * GRR 980525:  consider also
  1917.     *   (1) minimum sum of absolute differences from running average (i.e.,
  1918.     *       keep running sum of non-absolute differences & count of bytes)
  1919.     *       [track dispersion, too?  restart average if dispersion too large?]
  1920.     *  (1b) minimum sum of absolute differences from sliding average, probably
  1921.     *       with window size <= deflate window (usually 32K)
  1922.     *   (2) minimum sum of squared differences from zero or running average
  1923.     *       (i.e., ~ root-mean-square approach)
  1924.     */
  1925.    /* We don't need to test the 'no filter' case if this is the only filter
  1926.     * that has been chosen, as it doesn't actually do anything to the data.
  1927.     */
  1928.    if ((filter_to_do & PNG_FILTER_NONE) &&
  1929.        filter_to_do != PNG_FILTER_NONE)
  1930.    {
  1931.       png_bytep rp;
  1932.       png_uint_32 sum = 0;
  1933.       png_uint_32 i;
  1934.       int v;
  1935.       for (i = 0, rp = row_buf + 1; i < row_bytes; i++, rp++)
  1936.       {
  1937.          v = *rp;
  1938.          sum += (v < 128) ? v : 256 - v;
  1939.       }
  1940. #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
  1941.       if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
  1942.       {
  1943.          png_uint_32 sumhi, sumlo;
  1944.          int j;
  1945.          sumlo = sum & PNG_LOMASK;
  1946.          sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK; /* Gives us some footroom */
  1947.          /* Reduce the sum if we match any of the previous rows */
  1948.          for (j = 0; j < num_p_filters; j++)
  1949.          {
  1950.             if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_NONE)
  1951.             {
  1952.                sumlo = (sumlo * png_ptr->filter_weights[j]) >>
  1953.                   PNG_WEIGHT_SHIFT;
  1954.                sumhi = (sumhi * png_ptr->filter_weights[j]) >>
  1955.                   PNG_WEIGHT_SHIFT;
  1956.             }
  1957.          }
  1958.          /* Factor in the cost of this filter (this is here for completeness,
  1959.           * but it makes no sense to have a "cost" for the NONE filter, as
  1960.           * it has the minimum possible computational cost - none).
  1961.           */
  1962.          sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_NONE]) >>
  1963.             PNG_COST_SHIFT;
  1964.          sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_NONE]) >>
  1965.             PNG_COST_SHIFT;
  1966.          if (sumhi > PNG_HIMASK)
  1967.             sum = PNG_MAXSUM;
  1968.          else
  1969.             sum = (sumhi << PNG_HISHIFT) + sumlo;
  1970.       }
  1971. #endif
  1972.       mins = sum;
  1973.    }
  1974.    /* sub filter */
  1975.    if (filter_to_do == PNG_FILTER_SUB)
  1976.    /* it's the only filter so no testing is needed */
  1977.    {
  1978.       png_bytep rp, lp, dp;
  1979.       png_uint_32 i;
  1980.       for (i = 0, rp = row_buf + 1, dp = png_ptr->sub_row + 1; i < bpp;
  1981.            i++, rp++, dp++)
  1982.       {
  1983.          *dp = *rp;
  1984.       }
  1985.       for (lp = row_buf + 1; i < row_bytes;
  1986.          i++, rp++, lp++, dp++)
  1987.       {
  1988.          *dp = (png_byte)(((int)*rp - (int)*lp) & 0xff);
  1989.       }
  1990.       best_row = png_ptr->sub_row;
  1991.    }
  1992.    else if (filter_to_do & PNG_FILTER_SUB)
  1993.    {
  1994.       png_bytep rp, dp, lp;
  1995.       png_uint_32 sum = 0, lmins = mins;
  1996.       png_uint_32 i;
  1997.       int v;
  1998. #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
  1999.       /* We temporarily increase the "minimum sum" by the factor we
  2000.        * would reduce the sum of this filter, so that we can do the
  2001.        * early exit comparison without scaling the sum each time.
  2002.        */
  2003.       if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
  2004.       {
  2005.          int j;
  2006.          png_uint_32 lmhi, lmlo;
  2007.          lmlo = lmins & PNG_LOMASK;
  2008.          lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
  2009.          for (j = 0; j < num_p_filters; j++)
  2010.          {
  2011.             if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_SUB)
  2012.             {
  2013.                lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
  2014.                   PNG_WEIGHT_SHIFT;
  2015.                lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
  2016.                   PNG_WEIGHT_SHIFT;
  2017.             }
  2018.          }
  2019.          lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
  2020.             PNG_COST_SHIFT;
  2021.          lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
  2022.             PNG_COST_SHIFT;
  2023.          if (lmhi > PNG_HIMASK)
  2024.             lmins = PNG_MAXSUM;
  2025.          else
  2026.             lmins = (lmhi << PNG_HISHIFT) + lmlo;
  2027.       }
  2028. #endif
  2029.       for (i = 0, rp = row_buf + 1, dp = png_ptr->sub_row + 1; i < bpp;
  2030.            i++, rp++, dp++)
  2031.       {
  2032.          v = *dp = *rp;
  2033.          sum += (v < 128) ? v : 256 - v;
  2034.       }
  2035.       for (lp = row_buf + 1; i < row_bytes;
  2036.          i++, rp++, lp++, dp++)
  2037.       {
  2038.          v = *dp = (png_byte)(((int)*rp - (int)*lp) & 0xff);
  2039.          sum += (v < 128) ? v : 256 - v;
  2040.          if (sum > lmins)  /* We are already worse, don't continue. */
  2041.             break;
  2042.       }
  2043. #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
  2044.       if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
  2045.       {
  2046.          int j;
  2047.          png_uint_32 sumhi, sumlo;
  2048.          sumlo = sum & PNG_LOMASK;
  2049.          sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
  2050.          for (j = 0; j < num_p_filters; j++)
  2051.          {
  2052.             if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_SUB)
  2053.             {
  2054.                sumlo = (sumlo * png_ptr->inv_filter_weights[j]) >>
  2055.                   PNG_WEIGHT_SHIFT;
  2056.                sumhi = (sumhi * png_ptr->inv_filter_weights[j]) >>
  2057.                   PNG_WEIGHT_SHIFT;
  2058.             }
  2059.          }
  2060.          sumlo = (sumlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
  2061.             PNG_COST_SHIFT;
  2062.          sumhi = (sumhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_SUB]) >>
  2063.             PNG_COST_SHIFT;
  2064.          if (sumhi > PNG_HIMASK)
  2065.             sum = PNG_MAXSUM;
  2066.          else
  2067.             sum = (sumhi << PNG_HISHIFT) + sumlo;
  2068.       }
  2069. #endif
  2070.       if (sum < mins)
  2071.       {
  2072.          mins = sum;
  2073.          best_row = png_ptr->sub_row;
  2074.       }
  2075.    }
  2076.    /* up filter */
  2077.    if (filter_to_do == PNG_FILTER_UP)
  2078.    {
  2079.       png_bytep rp, dp, pp;
  2080.       png_uint_32 i;
  2081.       for (i = 0, rp = row_buf + 1, dp = png_ptr->up_row + 1,
  2082.            pp = prev_row + 1; i < row_bytes;
  2083.            i++, rp++, pp++, dp++)
  2084.       {
  2085.          *dp = (png_byte)(((int)*rp - (int)*pp) & 0xff);
  2086.       }
  2087.       best_row = png_ptr->up_row;
  2088.    }
  2089.    else if (filter_to_do & PNG_FILTER_UP)
  2090.    {
  2091.       png_bytep rp, dp, pp;
  2092.       png_uint_32 sum = 0, lmins = mins;
  2093.       png_uint_32 i;
  2094.       int v;
  2095. #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
  2096.       if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
  2097.       {
  2098.          int j;
  2099.          png_uint_32 lmhi, lmlo;
  2100.          lmlo = lmins & PNG_LOMASK;
  2101.          lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
  2102.          for (j = 0; j < num_p_filters; j++)
  2103.          {
  2104.             if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_UP)
  2105.             {
  2106.                lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
  2107.                   PNG_WEIGHT_SHIFT;
  2108.                lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
  2109.                   PNG_WEIGHT_SHIFT;
  2110.             }
  2111.          }
  2112.          lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_UP]) >>
  2113.             PNG_COST_SHIFT;
  2114.          lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_UP]) >>
  2115.             PNG_COST_SHIFT;
  2116.          if (lmhi > PNG_HIMASK)
  2117.             lmins = PNG_MAXSUM;
  2118.          else
  2119.             lmins = (lmhi << PNG_HISHIFT) + lmlo;
  2120.       }
  2121. #endif
  2122.       for (i = 0, rp = row_buf + 1, dp = png_ptr->up_row + 1,
  2123.            pp = prev_row + 1; i < row_bytes; i++)
  2124.       {
  2125.          v = *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
  2126.          sum += (v < 128) ? v : 256 - v;
  2127.          if (sum > lmins)  /* We are already worse, don't continue. */
  2128.             break;
  2129.       }
  2130. #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
  2131.       if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
  2132.       {
  2133.          int j;
  2134.          png_uint_32 sumhi, sumlo;
  2135.          sumlo = sum & PNG_LOMASK;
  2136.          sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
  2137.          for (j = 0; j < num_p_filters; j++)
  2138.          {
  2139.             if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_UP)
  2140.             {
  2141.                sumlo = (sumlo * png_ptr->filter_weights[j]) >>
  2142.                   PNG_WEIGHT_SHIFT;
  2143.                sumhi = (sumhi * png_ptr->filter_weights[j]) >>
  2144.                   PNG_WEIGHT_SHIFT;
  2145.             }
  2146.          }
  2147.          sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_UP]) >>
  2148.             PNG_COST_SHIFT;
  2149.          sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_UP]) >>
  2150.             PNG_COST_SHIFT;
  2151.          if (sumhi > PNG_HIMASK)
  2152.             sum = PNG_MAXSUM;
  2153.          else
  2154.             sum = (sumhi << PNG_HISHIFT) + sumlo;
  2155.       }
  2156. #endif
  2157.       if (sum < mins)
  2158.       {
  2159.          mins = sum;
  2160.          best_row = png_ptr->up_row;
  2161.       }
  2162.    }
  2163.    /* avg filter */
  2164.    if (filter_to_do == PNG_FILTER_AVG)
  2165.    {
  2166.       png_bytep rp, dp, pp, lp;
  2167.       png_uint_32 i;
  2168.       for (i = 0, rp = row_buf + 1, dp = png_ptr->avg_row + 1,
  2169.            pp = prev_row + 1; i < bpp; i++)
  2170.       {
  2171.          *dp++ = (png_byte)(((int)*rp++ - ((int)*pp++ / 2)) & 0xff);
  2172.       }
  2173.       for (lp = row_buf + 1; i < row_bytes; i++)
  2174.       {
  2175.          *dp++ = (png_byte)(((int)*rp++ - (((int)*pp++ + (int)*lp++) / 2))
  2176.                  & 0xff);
  2177.       }
  2178.       best_row = png_ptr->avg_row;
  2179.    }
  2180.    else if (filter_to_do & PNG_FILTER_AVG)
  2181.    {
  2182.       png_bytep rp, dp, pp, lp;
  2183.       png_uint_32 sum = 0, lmins = mins;
  2184.       png_uint_32 i;
  2185.       int v;
  2186. #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
  2187.       if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
  2188.       {
  2189.          int j;
  2190.          png_uint_32 lmhi, lmlo;
  2191.          lmlo = lmins & PNG_LOMASK;
  2192.          lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
  2193.          for (j = 0; j < num_p_filters; j++)
  2194.          {
  2195.             if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_AVG)
  2196.             {
  2197.                lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
  2198.                   PNG_WEIGHT_SHIFT;
  2199.                lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
  2200.                   PNG_WEIGHT_SHIFT;
  2201.             }
  2202.          }
  2203.          lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_AVG]) >>
  2204.             PNG_COST_SHIFT;
  2205.          lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_AVG]) >>
  2206.             PNG_COST_SHIFT;
  2207.          if (lmhi > PNG_HIMASK)
  2208.             lmins = PNG_MAXSUM;
  2209.          else
  2210.             lmins = (lmhi << PNG_HISHIFT) + lmlo;
  2211.       }
  2212. #endif
  2213.       for (i = 0, rp = row_buf + 1, dp = png_ptr->avg_row + 1,
  2214.            pp = prev_row + 1; i < bpp; i++)
  2215.       {
  2216.          v = *dp++ = (png_byte)(((int)*rp++ - ((int)*pp++ / 2)) & 0xff);
  2217.          sum += (v < 128) ? v : 256 - v;
  2218.       }
  2219.       for (lp = row_buf + 1; i < row_bytes; i++)
  2220.       {
  2221.          v = *dp++ =
  2222.           (png_byte)(((int)*rp++ - (((int)*pp++ + (int)*lp++) / 2)) & 0xff);
  2223.          sum += (v < 128) ? v : 256 - v;
  2224.          if (sum > lmins)  /* We are already worse, don't continue. */
  2225.             break;
  2226.       }
  2227. #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
  2228.       if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
  2229.       {
  2230.          int j;
  2231.          png_uint_32 sumhi, sumlo;
  2232.          sumlo = sum & PNG_LOMASK;
  2233.          sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
  2234.          for (j = 0; j < num_p_filters; j++)
  2235.          {
  2236.             if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_NONE)
  2237.             {
  2238.                sumlo = (sumlo * png_ptr->filter_weights[j]) >>
  2239.                   PNG_WEIGHT_SHIFT;
  2240.                sumhi = (sumhi * png_ptr->filter_weights[j]) >>
  2241.                   PNG_WEIGHT_SHIFT;
  2242.             }
  2243.          }
  2244.          sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_AVG]) >>
  2245.             PNG_COST_SHIFT;
  2246.          sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_AVG]) >>
  2247.             PNG_COST_SHIFT;
  2248.          if (sumhi > PNG_HIMASK)
  2249.             sum = PNG_MAXSUM;
  2250.          else
  2251.             sum = (sumhi << PNG_HISHIFT) + sumlo;
  2252.       }
  2253. #endif
  2254.       if (sum < mins)
  2255.       {
  2256.          mins = sum;
  2257.          best_row = png_ptr->avg_row;
  2258.       }
  2259.    }
  2260.    /* Paeth filter */
  2261.    if (filter_to_do == PNG_FILTER_PAETH)
  2262.    {
  2263.       png_bytep rp, dp, pp, cp, lp;
  2264.       png_uint_32 i;
  2265.       for (i = 0, rp = row_buf + 1, dp = png_ptr->paeth_row + 1,
  2266.            pp = prev_row + 1; i < bpp; i++)
  2267.       {
  2268.          *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
  2269.       }
  2270.       for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
  2271.       {
  2272.          int a, b, c, pa, pb, pc, p;
  2273.          b = *pp++;
  2274.          c = *cp++;
  2275.          a = *lp++;
  2276.          p = b - c;
  2277.          pc = a - c;
  2278. #ifdef PNG_USE_ABS
  2279.          pa = abs(p);
  2280.          pb = abs(pc);
  2281.          pc = abs(p + pc);
  2282. #else
  2283.          pa = p < 0 ? -p : p;
  2284.          pb = pc < 0 ? -pc : pc;
  2285.          pc = (p + pc) < 0 ? -(p + pc) : p + pc;
  2286. #endif
  2287.          p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
  2288.          *dp++ = (png_byte)(((int)*rp++ - p) & 0xff);
  2289.       }
  2290.       best_row = png_ptr->paeth_row;
  2291.    }
  2292.    else if (filter_to_do & PNG_FILTER_PAETH)
  2293.    {
  2294.       png_bytep rp, dp, pp, cp, lp;
  2295.       png_uint_32 sum = 0, lmins = mins;
  2296.       png_uint_32 i;
  2297.       int v;
  2298. #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
  2299.       if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
  2300.       {
  2301.          int j;
  2302.          png_uint_32 lmhi, lmlo;
  2303.          lmlo = lmins & PNG_LOMASK;
  2304.          lmhi = (lmins >> PNG_HISHIFT) & PNG_HIMASK;
  2305.          for (j = 0; j < num_p_filters; j++)
  2306.          {
  2307.             if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_PAETH)
  2308.             {
  2309.                lmlo = (lmlo * png_ptr->inv_filter_weights[j]) >>
  2310.                   PNG_WEIGHT_SHIFT;
  2311.                lmhi = (lmhi * png_ptr->inv_filter_weights[j]) >>
  2312.                   PNG_WEIGHT_SHIFT;
  2313.             }
  2314.          }
  2315.          lmlo = (lmlo * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_PAETH]) >>
  2316.             PNG_COST_SHIFT;
  2317.          lmhi = (lmhi * png_ptr->inv_filter_costs[PNG_FILTER_VALUE_PAETH]) >>
  2318.             PNG_COST_SHIFT;
  2319.          if (lmhi > PNG_HIMASK)
  2320.             lmins = PNG_MAXSUM;
  2321.          else
  2322.             lmins = (lmhi << PNG_HISHIFT) + lmlo;
  2323.       }
  2324. #endif
  2325.       for (i = 0, rp = row_buf + 1, dp = png_ptr->paeth_row + 1,
  2326.            pp = prev_row + 1; i < bpp; i++)
  2327.       {
  2328.          v = *dp++ = (png_byte)(((int)*rp++ - (int)*pp++) & 0xff);
  2329.          sum += (v < 128) ? v : 256 - v;
  2330.       }
  2331.       for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
  2332.       {
  2333.          int a, b, c, pa, pb, pc, p;
  2334.          b = *pp++;
  2335.          c = *cp++;
  2336.          a = *lp++;
  2337. #ifndef PNG_SLOW_PAETH
  2338.          p = b - c;
  2339.          pc = a - c;
  2340. #ifdef PNG_USE_ABS
  2341.          pa = abs(p);
  2342.          pb = abs(pc);
  2343.          pc = abs(p + pc);
  2344. #else
  2345.          pa = p < 0 ? -p : p;
  2346.          pb = pc < 0 ? -pc : pc;
  2347.          pc = (p + pc) < 0 ? -(p + pc) : p + pc;
  2348. #endif
  2349.          p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
  2350. #else /* PNG_SLOW_PAETH */
  2351.          p = a + b - c;
  2352.          pa = abs(p - a);
  2353.          pb = abs(p - b);
  2354.          pc = abs(p - c);
  2355.          if (pa <= pb && pa <= pc)
  2356.             p = a;
  2357.          else if (pb <= pc)
  2358.             p = b;
  2359.          else
  2360.             p = c;
  2361. #endif /* PNG_SLOW_PAETH */
  2362.          v = *dp++ = (png_byte)(((int)*rp++ - p) & 0xff);
  2363.          sum += (v < 128) ? v : 256 - v;
  2364.          if (sum > lmins)  /* We are already worse, don't continue. */
  2365.             break;
  2366.       }
  2367. #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
  2368.       if (png_ptr->heuristic_method == PNG_FILTER_HEURISTIC_WEIGHTED)
  2369.       {
  2370.          int j;
  2371.          png_uint_32 sumhi, sumlo;
  2372.          sumlo = sum & PNG_LOMASK;
  2373.          sumhi = (sum >> PNG_HISHIFT) & PNG_HIMASK;
  2374.          for (j = 0; j < num_p_filters; j++)
  2375.          {
  2376.             if (png_ptr->prev_filters[j] == PNG_FILTER_VALUE_PAETH)
  2377.             {
  2378.                sumlo = (sumlo * png_ptr->filter_weights[j]) >>
  2379.                   PNG_WEIGHT_SHIFT;
  2380.                sumhi = (sumhi * png_ptr->filter_weights[j]) >>
  2381.                   PNG_WEIGHT_SHIFT;
  2382.             }
  2383.          }
  2384.          sumlo = (sumlo * png_ptr->filter_costs[PNG_FILTER_VALUE_PAETH]) >>
  2385.             PNG_COST_SHIFT;
  2386.          sumhi = (sumhi * png_ptr->filter_costs[PNG_FILTER_VALUE_PAETH]) >>
  2387.             PNG_COST_SHIFT;
  2388.          if (sumhi > PNG_HIMASK)
  2389.             sum = PNG_MAXSUM;
  2390.          else
  2391.             sum = (sumhi << PNG_HISHIFT) + sumlo;
  2392.       }
  2393. #endif
  2394.       if (sum < mins)
  2395.       {
  2396.          best_row = png_ptr->paeth_row;
  2397.       }
  2398.    }
  2399. #endif /* PNG_NO_WRITE_FILTER */
  2400.    /* Do the actual writing of the filtered row data from the chosen filter. */
  2401.    png_write_filtered_row(png_ptr, best_row);
  2402. #ifndef PNG_NO_WRITE_FILTER
  2403. #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
  2404.    /* Save the type of filter we picked this time for future calculations */
  2405.    if (png_ptr->num_prev_filters > 0)
  2406.    {
  2407.       int j;
  2408.       for (j = 1; j < num_p_filters; j++)
  2409.       {
  2410.          png_ptr->prev_filters[j] = png_ptr->prev_filters[j - 1];
  2411.       }
  2412.       png_ptr->prev_filters[j] = best_row[0];
  2413.    }
  2414. #endif
  2415. #endif /* PNG_NO_WRITE_FILTER */
  2416. }
  2417. /* Do the actual writing of a previously filtered row. */
  2418. void /* PRIVATE */
  2419. png_write_filtered_row(png_structp png_ptr, png_bytep filtered_row)
  2420. {
  2421.    png_debug(1, "in png_write_filtered_row");
  2422.    png_debug1(2, "filter = %d", filtered_row[0]);
  2423.    /* set up the zlib input buffer */
  2424.    png_ptr->zstream.next_in = filtered_row;
  2425.    png_ptr->zstream.avail_in = (uInt)png_ptr->row_info.rowbytes + 1;
  2426.    /* repeat until we have compressed all the data */
  2427.    do
  2428.    {
  2429.       int ret; /* return of zlib */
  2430.       /* compress the data */
  2431.       ret = deflate(&png_ptr->zstream, Z_NO_FLUSH);
  2432.       /* check for compression errors */
  2433.       if (ret != Z_OK)
  2434.       {
  2435.          if (png_ptr->zstream.msg != NULL)
  2436.             png_error(png_ptr, png_ptr->zstream.msg);
  2437.          else
  2438.             png_error(png_ptr, "zlib error");
  2439.       }
  2440.       /* see if it is time to write another IDAT */
  2441.       if (!(png_ptr->zstream.avail_out))
  2442.       {
  2443.          /* write the IDAT and reset the zlib output buffer */
  2444.          png_write_IDAT(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
  2445.          png_ptr->zstream.next_out = png_ptr->zbuf;
  2446.          png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
  2447.       }
  2448.    /* repeat until all data has been compressed */
  2449.    } while (png_ptr->zstream.avail_in);
  2450.    /* swap the current and previous rows */
  2451.    if (png_ptr->prev_row != NULL)
  2452.    {
  2453.       png_bytep tptr;
  2454.       tptr = png_ptr->prev_row;
  2455.       png_ptr->prev_row = png_ptr->row_buf;
  2456.       png_ptr->row_buf = tptr;
  2457.    }
  2458.    /* finish row - updates counters and flushes zlib if last row */
  2459.    png_write_finish_row(png_ptr);
  2460. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  2461.    png_ptr->flush_rows++;
  2462.    if (png_ptr->flush_dist > 0 &&
  2463.        png_ptr->flush_rows >= png_ptr->flush_dist)
  2464.    {
  2465.       png_write_flush(png_ptr);
  2466.    }
  2467. #endif
  2468. }
  2469. #endif /* PNG_WRITE_SUPPORTED */