pngwutil.c
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:83k
源码类别:

打印编程

开发平台:

Visual C++

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