pngwutil.c
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:85k
源码类别:

对话框与窗口

开发平台:

Visual C++

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