PNGRUTIL.C
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:40k
源码类别:

图片显示

开发平台:

Visual C++

  1. /* pngrutil.c - utilities to read a png file
  2.    libpng 1.0 beta 3 - version 0.89
  3.    For conditions of distribution and use, see copyright notice in png.h
  4.    Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
  5.    May 25, 1996
  6.    */
  7. #define PNG_INTERNAL
  8. #include "png.h"
  9. /* grab an uint 32 from a buffer */
  10. png_uint_32
  11. png_get_uint_32(png_bytep buf)
  12. {
  13.    png_uint_32 i;
  14.    i = ((png_uint_32)(*buf) << 24) +
  15.       ((png_uint_32)(*(buf + 1)) << 16) +
  16.       ((png_uint_32)(*(buf + 2)) << 8) +
  17.       (png_uint_32)(*(buf + 3));
  18.    return i;
  19. }
  20. /* grab an uint 16 from a buffer */
  21. png_uint_16
  22. png_get_uint_16(png_bytep buf)
  23. {
  24.    png_uint_16 i;
  25.    i = (png_uint_16)(((png_uint_16)(*buf) << 8) +
  26.       (png_uint_16)(*(buf + 1)));
  27.    return i;
  28. }
  29. /* read data, and run it through the crc */
  30. void
  31. png_crc_read(png_structp png_ptr, png_bytep buf, png_uint_32 length)
  32. {
  33.    png_read_data(png_ptr, buf, length);
  34.    png_calculate_crc(png_ptr, buf, length);
  35. }
  36. /* skip data, but calcuate the crc anyway */
  37. void
  38. png_crc_skip(png_structp png_ptr, png_uint_32 length)
  39. {
  40.    png_uint_32 i;
  41.    for (i = length; i > png_ptr->zbuf_size; i -= png_ptr->zbuf_size)
  42.    {
  43.       png_read_data(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
  44.       png_calculate_crc(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
  45.    }
  46.    if (i)
  47.    {
  48.       png_read_data(png_ptr, png_ptr->zbuf, i);
  49.       png_calculate_crc(png_ptr, png_ptr->zbuf, i);
  50.    }
  51. }
  52. /* read and check the IDHR chunk */
  53. void
  54. png_handle_IHDR(png_structp png_ptr, png_infop info, png_uint_32 length)
  55. {
  56.    png_byte buf[13];
  57.    png_uint_32 width, height;
  58.    int bit_depth, color_type, compression_type, filter_type;
  59.    int interlace_type;
  60.    if (png_ptr->mode != PNG_BEFORE_IHDR)
  61.       png_error(png_ptr, "Out of place IHDR");
  62.    /* check the length */
  63.    if (length != 13)
  64.       png_error(png_ptr, "Invalid IHDR chunk");
  65.    png_crc_read(png_ptr, buf, 13);
  66.    width = png_get_uint_32(buf);
  67.    height = png_get_uint_32(buf + 4);
  68.    bit_depth = buf[8];
  69.    color_type = buf[9];
  70.    compression_type = buf[10];
  71.    filter_type = buf[11];
  72.    interlace_type = buf[12];
  73.    /* check for width and height valid values */
  74.    if (width == 0 || height == 0)
  75.       png_error(png_ptr, "Invalid image size in IHDR");
  76.    /* check other values */
  77.    if (bit_depth != 1 && bit_depth != 2 &&
  78.       bit_depth != 4 && bit_depth != 8 &&
  79.       bit_depth != 16)
  80.       png_error(png_ptr, "Invalid bit depth in IHDR");
  81.    if (color_type < 0 || color_type == 1 ||
  82.       color_type == 5 || color_type > 6)
  83.       png_error(png_ptr, "Invalid color type in IHDR");
  84.    if (color_type == PNG_COLOR_TYPE_PALETTE &&
  85.       bit_depth == 16)
  86.       png_error(png_ptr, "Invalid color type and bit depth combination in IHDR");
  87.    if ((color_type == PNG_COLOR_TYPE_RGB ||
  88.       color_type == PNG_COLOR_TYPE_GRAY_ALPHA ||
  89.       color_type == PNG_COLOR_TYPE_RGB_ALPHA) &&
  90.       bit_depth < 8)
  91.       png_error(png_ptr, "Invalid color type and bit depth in IHDR");
  92.    if (interlace_type > 1)
  93.       png_error(png_ptr, "Invalid interlace method in IHDR");
  94.    if (compression_type > 0)
  95.       png_error(png_ptr, "Invalid compression method in IHDR");
  96.    if (filter_type > 0)
  97.       png_error(png_ptr, "Invalid filter method in IHDR");
  98.    /* set internal variables */
  99.    png_ptr->width = width;
  100.    png_ptr->height = height;
  101.    png_ptr->bit_depth = (png_byte)bit_depth;
  102.    png_ptr->interlaced = (png_byte)interlace_type;
  103.    png_ptr->color_type = (png_byte)color_type;
  104.    /* find number of channels */
  105.    switch (png_ptr->color_type)
  106.    {
  107.       case 0:
  108.       case 3:
  109.          png_ptr->channels = 1;
  110.          break;
  111.       case 2:
  112.          png_ptr->channels = 3;
  113.          break;
  114.       case 4:
  115.          png_ptr->channels = 2;
  116.          break;
  117.       case 6:
  118.          png_ptr->channels = 4;
  119.          break;
  120.    }
  121.    /* set up other useful info */
  122.    png_ptr->pixel_depth = (png_byte)(png_ptr->bit_depth *
  123.       png_ptr->channels);
  124.    png_ptr->rowbytes = ((png_ptr->width *
  125.       (png_uint_32)png_ptr->pixel_depth + 7) >> 3);
  126.    /* call the IHDR callback (which should just set up info) */
  127.    png_read_IHDR(png_ptr, info, width, height, bit_depth,
  128.       color_type, compression_type, filter_type, interlace_type);
  129.    png_ptr->mode |= PNG_HAVE_IHDR;
  130. }
  131. /* read and check the palette */
  132. void
  133. png_handle_PLTE(png_structp png_ptr, png_infop info, png_uint_32 length)
  134. {
  135.    int num, i;
  136.    png_colorp palette;
  137.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  138.       png_error(png_ptr, "Missing IHDR before PLTE");
  139.    else if (png_ptr->mode & PNG_HAVE_PLTE)
  140.       png_error(png_ptr, "Multiple PLTE");
  141. #if !defined(PNG_READ_OPT_PLTE_SUPPORTED)
  142.    if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
  143.    {
  144.       png_crc_skip(png_ptr, length);
  145.       return;
  146.    }
  147. #endif
  148.    if (length % 3)
  149.    {
  150.       if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
  151.       {
  152.          png_warning(png_ptr, "Invalid palette chunk");
  153.          png_crc_skip(png_ptr, length);
  154.          return;
  155.       }
  156.       else
  157.       {
  158.          png_error(png_ptr, "Invalid palette chunk");
  159.       }
  160.    }
  161.    num = (int)length / 3;
  162.    palette = (png_colorp)png_large_malloc(png_ptr, num * sizeof (png_color));
  163.    png_ptr->do_free |= PNG_FREE_PALETTE;
  164.    for (i = 0; i < num; i++)
  165.    {
  166.       png_byte buf[3];
  167.       png_crc_read(png_ptr, buf, 3);
  168.       /* don't depend upon png_color being any order */
  169.       palette[i].red = buf[0];
  170.       palette[i].green = buf[1];
  171.       palette[i].blue = buf[2];
  172.    }
  173.    png_ptr->palette = palette;
  174.    png_ptr->num_palette = (png_uint_16)num;
  175.    png_read_PLTE(png_ptr, info, palette, num);
  176.    png_ptr->mode |= PNG_HAVE_PLTE;
  177. }
  178. #if defined(PNG_READ_gAMA_SUPPORTED)
  179. void
  180. png_handle_gAMA(png_structp png_ptr, png_infop info, png_uint_32 length)
  181. {
  182.    png_uint_32 igamma;
  183.    float gamma;
  184.    png_byte buf[4];
  185.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  186.       png_error(png_ptr, "Missing IHDR before gAMA");
  187.    else if (png_ptr->mode & PNG_HAVE_PLTE)
  188.       /* Should be an error, but we can cope with it */
  189.       png_warning(png_ptr, "Out of place gAMA chunk");
  190.    if (length != 4)
  191.    {
  192.       png_warning(png_ptr, "Incorrect gAMA chunk length");
  193.       png_crc_skip(png_ptr, length);
  194.       return;
  195.    }
  196.    png_crc_read(png_ptr, buf, 4);
  197.    igamma = png_get_uint_32(buf);
  198.    /* check for zero gamma */
  199.    if (!igamma)
  200.       return;
  201.    gamma = (float)igamma / (float)100000.0;
  202.    png_read_gAMA(png_ptr, info, gamma);
  203.    png_ptr->gamma = gamma;
  204. }
  205. #endif
  206. #if defined(PNG_READ_sBIT_SUPPORTED)
  207. void
  208. png_handle_sBIT(png_structp png_ptr, png_infop info, png_uint_32 length)
  209. {
  210.    int slen;
  211.    png_byte buf[4];
  212.    buf[0] = buf[1] = buf[2] = buf[3] = 0;
  213.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  214.       png_error(png_ptr, "Missing IHDR before sBIT");
  215.    else if (png_ptr->mode & PNG_HAVE_PLTE)
  216.       /* Should be an error, but we can cope with it */
  217.       png_warning(png_ptr, "Out of place sBIT chunk");
  218.    if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  219.       slen = 3;
  220.    else
  221.       slen = png_ptr->channels;
  222.    if (length != (png_uint_32)slen)
  223.    {
  224.       png_warning(png_ptr, "Incorrect sBIT chunk length");
  225.       png_crc_skip(png_ptr, length);
  226.       return;
  227.    }
  228.    png_crc_read(png_ptr, buf, length);
  229.    if (png_ptr->color_type & PNG_COLOR_MASK_COLOR)
  230.    {
  231.       png_ptr->sig_bit.red = buf[0];
  232.       png_ptr->sig_bit.green = buf[1];
  233.       png_ptr->sig_bit.blue = buf[2];
  234.       png_ptr->sig_bit.alpha = buf[3];
  235.    }
  236.    else
  237.    {
  238.       png_ptr->sig_bit.gray = buf[0];
  239.       png_ptr->sig_bit.alpha = buf[1];
  240.    }
  241.    png_read_sBIT(png_ptr, info, &(png_ptr->sig_bit));
  242. }
  243. #endif
  244. #if defined(PNG_READ_cHRM_SUPPORTED)
  245. void
  246. png_handle_cHRM(png_structp png_ptr, png_infop info, png_uint_32 length)
  247. {
  248.    png_byte buf[4];
  249.    png_uint_32 v;
  250.    float white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y;
  251.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  252.       png_error(png_ptr, "Missing IHDR before sBIT");
  253.    else if (png_ptr->mode & PNG_HAVE_PLTE)
  254.       /* Should be an error, but we can cope with it */
  255.       png_warning(png_ptr, "Missing PLTE before cHRM");
  256.    if (length != 32)
  257.    {
  258.       png_warning(png_ptr, "Incorrect cHRM chunk length");
  259.       png_crc_skip(png_ptr, length);
  260.       return;
  261.    }
  262.    png_crc_read(png_ptr, buf, 4);
  263.    v = png_get_uint_32(buf);
  264.    white_x = (float)v / (float)100000.0;
  265.    png_crc_read(png_ptr, buf, 4);
  266.    v = png_get_uint_32(buf);
  267.    white_y = (float)v / (float)100000.0;
  268.    png_crc_read(png_ptr, buf, 4);
  269.    v = png_get_uint_32(buf);
  270.    red_x = (float)v / (float)100000.0;
  271.    png_crc_read(png_ptr, buf, 4);
  272.    v = png_get_uint_32(buf);
  273.    red_y = (float)v / (float)100000.0;
  274.    png_crc_read(png_ptr, buf, 4);
  275.    v = png_get_uint_32(buf);
  276.    green_x = (float)v / (float)100000.0;
  277.    png_crc_read(png_ptr, buf, 4);
  278.    v = png_get_uint_32(buf);
  279.    green_y = (float)v / (float)100000.0;
  280.    png_crc_read(png_ptr, buf, 4);
  281.    v = png_get_uint_32(buf);
  282.    blue_x = (float)v / (float)100000.0;
  283.    png_crc_read(png_ptr, buf, 4);
  284.    v = png_get_uint_32(buf);
  285.    blue_y = (float)v / (float)100000.0;
  286.    png_read_cHRM(png_ptr, info,
  287.       white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y);
  288. }
  289. #endif
  290. #if defined(PNG_READ_tRNS_SUPPORTED)
  291. void
  292. png_handle_tRNS(png_structp png_ptr, png_infop info, png_uint_32 length)
  293. {
  294.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  295.       png_error(png_ptr, "Missing IHDR before tRNS");
  296.    if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  297.    {
  298.       if (!(png_ptr->mode & PNG_HAVE_PLTE))
  299.       {
  300.          /* Should be an error, but we can cope with it */
  301.          png_warning(png_ptr, "Missing PLTE before tRNS");
  302.       }
  303.       else if (length > png_ptr->num_palette)
  304.       {
  305.          png_warning(png_ptr, "Incorrect tRNS chunk length");
  306.          png_crc_skip(png_ptr, length);
  307.          return;
  308.       }
  309.       png_ptr->trans = (png_bytep)png_large_malloc(png_ptr, length);
  310.       png_ptr->do_free |= PNG_FREE_TRANS;
  311.       png_crc_read(png_ptr, png_ptr->trans, length);
  312.       png_ptr->num_trans = (png_uint_16)length;
  313.    }
  314.    else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB)
  315.    {
  316.       png_byte buf[6];
  317.       if (length != 6)
  318.       {
  319.          png_warning(png_ptr, "Incorrect tRNS chunk length");
  320.          png_crc_skip(png_ptr, length);
  321.          return;
  322.       }
  323.       png_crc_read(png_ptr, buf, length);
  324.       png_ptr->num_trans = 3;
  325.       png_ptr->trans_values.red = png_get_uint_16(buf);
  326.       png_ptr->trans_values.green = png_get_uint_16(buf + 2);
  327.       png_ptr->trans_values.blue = png_get_uint_16(buf + 4);
  328.    }
  329.    else if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY)
  330.    {
  331.       png_byte buf[6];
  332.       if (length != 2)
  333.       {
  334.          png_warning(png_ptr, "Incorrect tRNS chunk length");
  335.          png_crc_skip(png_ptr, length);
  336.          return;
  337.       }
  338.       png_crc_read(png_ptr, buf, 2);
  339.       png_ptr->num_trans = 1;
  340.       png_ptr->trans_values.gray = png_get_uint_16(buf);
  341.    }
  342.    else
  343.    {
  344.       png_warning(png_ptr, "tRNS chunk not allowed with alpha channel");
  345.       png_crc_skip(png_ptr, length);
  346.       return;
  347.    }
  348.    png_read_tRNS(png_ptr, info, png_ptr->trans, png_ptr->num_trans,
  349.       &(png_ptr->trans_values));
  350. }
  351. #endif
  352. #if defined(PNG_READ_bKGD_SUPPORTED)
  353. void
  354. png_handle_bKGD(png_structp png_ptr, png_infop info, png_uint_32 length)
  355. {
  356.    int truelen;
  357.    png_byte buf[6];
  358.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  359.       png_error(png_ptr, "Missing IHDR before bKGD");
  360.    else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE &&
  361.             !(png_ptr->mode & PNG_HAVE_PLTE))
  362.    {
  363.       png_warning(png_ptr, "Missing PLTE before bKGD");
  364.       png_crc_skip(png_ptr, length);
  365.       return;
  366.    }
  367.    if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  368.       truelen = 1;
  369.    else if (png_ptr->color_type & PNG_COLOR_MASK_COLOR)
  370.       truelen = 6;
  371.    else
  372.       truelen = 2;
  373.    if (length != (png_uint_32)truelen)
  374.    {
  375.       png_warning(png_ptr, "Incorrect bKGD chunk length");
  376.       png_crc_skip(png_ptr, length);
  377.       return;
  378.    }
  379.    png_crc_read(png_ptr, buf, length);
  380.    /* We convert the index value into RGB components so that we can allow
  381.     * arbitrary RGB values for background when we have transparency, and
  382.     * so it is easy to determine the RGB values of the background color
  383.     * from the info_ptr. */
  384.    if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  385.    {
  386.       png_ptr->background.index = buf[0];
  387.       png_ptr->background.red = (png_uint_16)png_ptr->palette[buf[0]].red;
  388.       png_ptr->background.green = (png_uint_16)png_ptr->palette[buf[0]].green;
  389.       png_ptr->background.blue = (png_uint_16)png_ptr->palette[buf[0]].blue;
  390.    }
  391.    else if (!(png_ptr->color_type & PNG_COLOR_MASK_COLOR))
  392.    {
  393.       png_ptr->background.red =
  394.       png_ptr->background.green =
  395.       png_ptr->background.blue =
  396.       png_ptr->background.gray = png_get_uint_16(buf);
  397.    }
  398.    else
  399.    {
  400.       png_ptr->background.red = png_get_uint_16(buf);
  401.       png_ptr->background.green = png_get_uint_16(buf + 2);
  402.       png_ptr->background.blue = png_get_uint_16(buf + 4);
  403.    }
  404.    png_read_bKGD(png_ptr, info, &(png_ptr->background));
  405. }
  406. #endif
  407. #if defined(PNG_READ_hIST_SUPPORTED)
  408. void
  409. png_handle_hIST(png_structp png_ptr, png_infop info, png_uint_32 length)
  410. {
  411.    int num, i;
  412.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  413.       png_error(png_ptr, "Missing IHDR before hIST");
  414.    else if (!(png_ptr->mode & PNG_HAVE_PLTE))
  415.    {
  416.       png_warning(png_ptr, "Missing PLTE before hIST");
  417.       png_crc_skip(png_ptr, length);
  418.       return;
  419.    }
  420.    if (length != 2 * png_ptr->num_palette)
  421.    {
  422.       png_warning(png_ptr, "Incorrect hIST chunk length");
  423.       png_crc_skip(png_ptr, length);
  424.       return;
  425.    }
  426.    num = (int)length / 2;
  427.    png_ptr->hist = (png_uint_16p)png_large_malloc(png_ptr,
  428.       num * sizeof (png_uint_16));
  429.    png_ptr->do_free |= PNG_FREE_HIST;
  430.    for (i = 0; i < num; i++)
  431.    {
  432.       png_byte buf[2];
  433.       png_crc_read(png_ptr, buf, 2);
  434.       png_ptr->hist[i] = png_get_uint_16(buf);
  435.    }
  436.    png_read_hIST(png_ptr, info, png_ptr->hist);
  437. }
  438. #endif
  439. #if defined(PNG_READ_pHYs_SUPPORTED)
  440. void
  441. png_handle_pHYs(png_structp png_ptr, png_infop info, png_uint_32 length)
  442. {
  443.    png_byte buf[9];
  444.    png_uint_32 res_x, res_y;
  445.    int unit_type;
  446.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  447.       png_error(png_ptr, "Missing IHDR before pHYS");
  448.    if (length != 9)
  449.    {
  450.       png_warning(png_ptr, "Incorrect pHYs chunk length");
  451.       png_crc_skip(png_ptr, length);
  452.       return;
  453.    }
  454.    png_crc_read(png_ptr, buf, 9);
  455.    res_x = png_get_uint_32(buf);
  456.    res_y = png_get_uint_32(buf + 4);
  457.    unit_type = buf[8];
  458.    png_read_pHYs(png_ptr, info, res_x, res_y, unit_type);
  459. }
  460. #endif
  461. #if defined(PNG_READ_oFFs_SUPPORTED)
  462. void
  463. png_handle_oFFs(png_structp png_ptr, png_infop info, png_uint_32 length)
  464. {
  465.    png_byte buf[9];
  466.    png_uint_32 offset_x, offset_y;
  467.    int unit_type;
  468.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  469.       png_error(png_ptr, "Missing IHDR before oFFs");
  470.    if (length != 9)
  471.    {
  472.       png_warning(png_ptr, "Incorrect oFFs chunk length");
  473.       png_crc_skip(png_ptr, length);
  474.       return;
  475.    }
  476.    png_crc_read(png_ptr, buf, 9);
  477.    offset_x = png_get_uint_32(buf);
  478.    offset_y = png_get_uint_32(buf + 4);
  479.    unit_type = buf[8];
  480.    png_read_oFFs(png_ptr, info, offset_x, offset_y, unit_type);
  481. }
  482. #endif
  483. #if defined(PNG_READ_tIME_SUPPORTED)
  484. void
  485. png_handle_tIME(png_structp png_ptr, png_infop info, png_uint_32 length)
  486. {
  487.    png_byte buf[7];
  488.    png_time mod_time;
  489.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  490.       png_error(png_ptr, "Missing IHDR before tIME");
  491.    if (length != 7)
  492.    {
  493.       png_warning(png_ptr, "Incorrect tIME chunk length");
  494.       png_crc_skip(png_ptr, length);
  495.       return;
  496.    }
  497.    png_crc_read(png_ptr, buf, 7);
  498.    mod_time.second = buf[6];
  499.    mod_time.minute = buf[5];
  500.    mod_time.hour = buf[4];
  501.    mod_time.day = buf[3];
  502.    mod_time.month = buf[2];
  503.    mod_time.year = png_get_uint_16(buf);
  504.    png_read_tIME(png_ptr, info, &mod_time);
  505. }
  506. #endif
  507. #if defined(PNG_READ_tEXt_SUPPORTED)
  508. /* note: this does not correctly handle chunks that are > 64K */
  509. void
  510. png_handle_tEXt(png_structp png_ptr, png_infop info, png_uint_32 length)
  511. {
  512.    png_charp key;
  513.    png_charp text;
  514.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  515.       png_error(png_ptr, "Missing IHDR before tEXt");
  516.    key = (png_charp )png_large_malloc(png_ptr, length + 1);
  517.    png_crc_read(png_ptr, (png_bytep )key, length);
  518.    key[(png_size_t)length] = '';
  519.    for (text = key; *text; text++)
  520.       /* empty loop to check key length */ ;
  521.    if (text != key + (png_size_t)length)
  522.       text++;
  523.    png_read_tEXt(png_ptr, info, key, text, length - (text - key));
  524. }
  525. #endif
  526. #if defined(PNG_READ_zTXt_SUPPORTED)
  527. /* note: this does not correctly handle chunks that are > 64K compressed
  528.    on those systems that can't malloc more than 64KB at a time. */
  529. void
  530. png_handle_zTXt(png_structp png_ptr, png_infop info, png_uint_32 length)
  531. {
  532.    static char msg[] = "Error decoding zTXt chunk";
  533.    png_charp key;
  534.    png_charp text;
  535.    png_uint_32 text_size, key_size;
  536.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  537.       png_error(png_ptr, "Missing IHDR before zTXt");
  538.    key = png_large_malloc(png_ptr, length + 1);
  539.    png_crc_read(png_ptr, (png_bytep )key, length);
  540.    key[(png_size_t)length] = '';
  541.    for (text = key; *text; text++)
  542.       /* empty loop */ ;
  543.    /* zTXt can't have zero text */
  544.    if (text == key + (png_size_t)length)
  545.    {
  546.       png_warning(png_ptr, "Zero length zTXt chunk");
  547.       text_size = 0;
  548.    }
  549.    else if (*(++text)) /* check compression type byte */
  550.    {
  551.       png_warning(png_ptr, "Unknown zTXt compression type");
  552.       /* Copy what we can of the error message into the text chunk */
  553.       text_size = length - (text - key) - 1;
  554.       text_size = sizeof(msg) > text_size ? text_size : sizeof(msg);
  555.       png_memcpy(text, msg, (png_size_t)(text_size + 1));
  556.    }
  557.    else
  558.    {
  559.       text++;
  560.       png_ptr->zstream->next_in = (png_bytep )text;
  561.       png_ptr->zstream->avail_in = (uInt)(length - (text - key));
  562.       png_ptr->zstream->next_out = png_ptr->zbuf;
  563.       png_ptr->zstream->avail_out = (png_size_t)png_ptr->zbuf_size;
  564.       key_size = text - key;
  565.       text_size = 0;
  566.       text = NULL;
  567.       while (png_ptr->zstream->avail_in)
  568.       {
  569.          int ret;
  570.          ret = inflate(png_ptr->zstream, Z_PARTIAL_FLUSH);
  571.          if (ret != Z_OK && ret != Z_STREAM_END)
  572.          {
  573.             if (png_ptr->zstream->msg)
  574.                png_warning(png_ptr, png_ptr->zstream->msg);
  575.             else
  576.                png_warning(png_ptr, "zTXt decompression error");
  577.             inflateReset(png_ptr->zstream);
  578.             png_ptr->zstream->avail_in = 0;
  579.             if (!text)
  580.             {
  581.                text_size = key_size + sizeof(msg) + 1;
  582.                text = (png_charp)png_large_malloc(png_ptr, text_size);
  583.                png_memcpy(text, key, (png_size_t)key_size);
  584.             }
  585.             text[text_size - 1] = '';
  586.             /* Copy what we can of the error message into the text chunk */
  587.             text_size = length - (text - key) - 1;
  588.             text_size = sizeof(msg) > text_size ? text_size : sizeof(msg);
  589.             png_memcpy(text + key_size, msg, (png_size_t)(text_size + 1));
  590.             break;
  591.          }
  592.          if (!png_ptr->zstream->avail_out || ret == Z_STREAM_END)
  593.          {
  594.             if (!text)
  595.             {
  596.                text = (png_charp)png_large_malloc(png_ptr,
  597.                   png_ptr->zbuf_size - png_ptr->zstream->avail_out +
  598.                      key_size + 1);
  599.                png_memcpy(text + (png_size_t)key_size, png_ptr->zbuf,
  600.                   (png_size_t)(png_ptr->zbuf_size - png_ptr->zstream->avail_out));
  601.                png_memcpy(text, key, (png_size_t)key_size);
  602.                text_size = key_size + (png_size_t)png_ptr->zbuf_size -
  603.                   png_ptr->zstream->avail_out;
  604.                *(text + (png_size_t)text_size) = '';
  605.             }
  606.             else
  607.             {
  608.                png_charp tmp;
  609.                tmp = text;
  610.                text = png_large_malloc(png_ptr, text_size +
  611.                   png_ptr->zbuf_size - png_ptr->zstream->avail_out + 1);
  612.                png_memcpy(text, tmp, (png_size_t)text_size);
  613.                png_large_free(png_ptr, tmp);
  614.                png_memcpy(text + (png_size_t)text_size, png_ptr->zbuf,
  615.                   (png_size_t)(png_ptr->zbuf_size - png_ptr->zstream->avail_out));
  616.                text_size += png_ptr->zbuf_size - png_ptr->zstream->avail_out;
  617.                *(text + (png_size_t)text_size) = '';
  618.             }
  619.             if (ret != Z_STREAM_END)
  620.             {
  621.                png_ptr->zstream->next_out = png_ptr->zbuf;
  622.                png_ptr->zstream->avail_out = (uInt)png_ptr->zbuf_size;
  623.             }
  624.             else
  625.             {
  626.                break;
  627.             }
  628.          }
  629.       }
  630.       inflateReset(png_ptr->zstream);
  631.       png_ptr->zstream->avail_in = 0;
  632.       png_large_free(png_ptr, key);
  633.       key = text;
  634.       text += (png_size_t)key_size;
  635.       text_size -= key_size;
  636.    }
  637.    png_read_zTXt(png_ptr, info, key, text, text_size, 0);
  638. }
  639. #endif
  640. /* Combines the row recently read in with the previous row.
  641.    This routine takes care of alpha and transparency if requested.
  642.    This routine also handles the two methods of progressive display
  643.    of interlaced images, depending on the mask value.
  644.    The mask value describes which pixels are to be combined with
  645.    the row.  The pattern always repeats every 8 pixels, so just 8
  646.    bits are needed.  A one indicates the pixels is to be combined,
  647.    a zero indicates the pixel is to be skipped.  This is in addition
  648.    to any alpha or transparency value associated with the pixel.  If
  649.    you want all pixels to be combined, pass 0xff (255) in mask.
  650. */
  651. void
  652. png_combine_row(png_structp png_ptr, png_bytep row,
  653.    int mask)
  654. {
  655.    if (mask == 0xff)
  656.    {
  657.       png_memcpy(row, png_ptr->row_buf + 1,
  658.          (png_size_t)((png_ptr->width *
  659.          png_ptr->row_info.pixel_depth + 7) >> 3));
  660.    }
  661.    else
  662.    {
  663.       switch (png_ptr->row_info.pixel_depth)
  664.       {
  665.          case 1:
  666.          {
  667.             png_bytep sp;
  668.             png_bytep dp;
  669.             int m;
  670.             int shift;
  671.             png_uint_32 i;
  672.             int value;
  673.             sp = png_ptr->row_buf + 1;
  674.             dp = row;
  675.             shift = 7;
  676.             m = 0x80;
  677.             for (i = 0; i < png_ptr->width; i++)
  678.             {
  679.                if (m & mask)
  680.                {
  681.                   value = (*sp >> shift) & 0x1;
  682.                   *dp &= (png_byte)((0x7f7f >> (7 - shift)) & 0xff);
  683.                   *dp |= (png_byte)(value << shift);
  684.                }
  685.                if (shift == 0)
  686.                {
  687.                   shift = 7;
  688.                   sp++;
  689.                   dp++;
  690.                }
  691.                else
  692.                   shift--;
  693.                if (m == 1)
  694.                   m = 0x80;
  695.                else
  696.                   m >>= 1;
  697.             }
  698.             break;
  699.          }
  700.          case 2:
  701.          {
  702.             png_bytep sp;
  703.             png_bytep dp;
  704.             int m;
  705.             int shift;
  706.             png_uint_32 i;
  707.             int value;
  708.             sp = png_ptr->row_buf + 1;
  709.             dp = row;
  710.             shift = 6;
  711.             m = 0x80;
  712.             for (i = 0; i < png_ptr->width; i++)
  713.             {
  714.                if (m & mask)
  715.                {
  716.                   value = (*sp >> shift) & 0x3;
  717.                   *dp &= (png_byte)((0x3f3f >> (6 - shift)) & 0xff);
  718.                   *dp |= (png_byte)(value << shift);
  719.                }
  720.                if (shift == 0)
  721.                {
  722.                   shift = 6;
  723.                   sp++;
  724.                   dp++;
  725.                }
  726.                else
  727.                   shift -= 2;
  728.                if (m == 1)
  729.                   m = 0x80;
  730.                else
  731.                   m >>= 1;
  732.             }
  733.             break;
  734.          }
  735.          case 4:
  736.          {
  737.             png_bytep sp;
  738.             png_bytep dp;
  739.             int m;
  740.             int shift;
  741.             png_uint_32 i;
  742.             int value;
  743.             sp = png_ptr->row_buf + 1;
  744.             dp = row;
  745.             shift = 4;
  746.             m = 0x80;
  747.             for (i = 0; i < png_ptr->width; i++)
  748.             {
  749.                if (m & mask)
  750.                {
  751.                   value = (*sp >> shift) & 0xf;
  752.                   *dp &= (png_byte)((0xf0f >> (4 - shift)) & 0xff);
  753.                   *dp |= (png_byte)(value << shift);
  754.                }
  755.                if (shift == 0)
  756.                {
  757.                   shift = 4;
  758.                   sp++;
  759.                   dp++;
  760.                }
  761.                else
  762.                   shift -= 4;
  763.                if (m == 1)
  764.                   m = 0x80;
  765.                else
  766.                   m >>= 1;
  767.             }
  768.             break;
  769.          }
  770.          default:
  771.          {
  772.             png_bytep sp;
  773.             png_bytep dp;
  774.             png_uint_32 i;
  775.             int pixel_bytes, m;
  776.             pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
  777.             sp = png_ptr->row_buf + 1;
  778.             dp = row;
  779.             m = 0x80;
  780.             for (i = 0; i < png_ptr->width; i++)
  781.             {
  782.                if (m & mask)
  783.                {
  784.                   png_memcpy(dp, sp, pixel_bytes);
  785.                }
  786.                sp += pixel_bytes;
  787.                dp += pixel_bytes;
  788.                if (m == 1)
  789.                   m = 0x80;
  790.                else
  791.                   m >>= 1;
  792.             }
  793.             break;
  794.          }
  795.       }
  796.    }
  797. }
  798. #if defined(PNG_READ_INTERLACING_SUPPORTED)
  799. void
  800. png_do_read_interlace(png_row_infop row_info, png_bytep row, int pass)
  801. {
  802.    if (row && row_info)
  803.    {
  804.       png_uint_32 final_width;
  805.       final_width = row_info->width * png_pass_inc[pass];
  806.       switch (row_info->pixel_depth)
  807.       {
  808.          case 1:
  809.          {
  810.             png_bytep sp, dp;
  811.             int sshift, dshift;
  812.             png_byte v;
  813.             png_uint_32 i;
  814.             int j;
  815.             sp = row + (png_size_t)((row_info->width - 1) >> 3);
  816.             sshift = 7 - (int)((row_info->width + 7) & 7);
  817.             dp = row + (png_size_t)((final_width - 1) >> 3);
  818.             dshift = 7 - (int)((final_width + 7) & 7);
  819.             for (i = row_info->width; i; i--)
  820.             {
  821.                v = (png_byte)((*sp >> sshift) & 0x1);
  822.                for (j = 0; j < png_pass_inc[pass]; j++)
  823.                {
  824.                   *dp &= (png_byte)((0x7f7f >> (7 - dshift)) & 0xff);
  825.                   *dp |= (png_byte)(v << dshift);
  826.                   if (dshift == 7)
  827.                   {
  828.                      dshift = 0;
  829.                      dp--;
  830.                   }
  831.                   else
  832.                      dshift++;
  833.                }
  834.                if (sshift == 7)
  835.                {
  836.                   sshift = 0;
  837.                   sp--;
  838.                }
  839.                else
  840.                   sshift++;
  841.             }
  842.             break;
  843.          }
  844.          case 2:
  845.          {
  846.             png_bytep sp, dp;
  847.             int sshift, dshift;
  848.             png_byte v;
  849.             png_uint_32 i, j;
  850.             sp = row + (png_size_t)((row_info->width - 1) >> 2);
  851.             sshift = (png_size_t)((3 - ((row_info->width + 3) & 3)) << 1);
  852.             dp = row + (png_size_t)((final_width - 1) >> 2);
  853.             dshift = (png_size_t)((3 - ((final_width + 3) & 3)) << 1);
  854.             for (i = row_info->width; i; i--)
  855.             {
  856.                v = (png_byte)((*sp >> sshift) & 0x3);
  857.                for (j = 0; j < png_pass_inc[pass]; j++)
  858.                {
  859.                   *dp &= (png_byte)((0x3f3f >> (6 - dshift)) & 0xff);
  860.                   *dp |= (png_byte)(v << dshift);
  861.                   if (dshift == 6)
  862.                   {
  863.                      dshift = 0;
  864.                      dp--;
  865.                   }
  866.                   else
  867.                      dshift += 2;
  868.                }
  869.                if (sshift == 6)
  870.                {
  871.                   sshift = 0;
  872.                   sp--;
  873.                }
  874.                else
  875.                   sshift += 2;
  876.             }
  877.             break;
  878.          }
  879.          case 4:
  880.          {
  881.             png_bytep sp, dp;
  882.             int sshift, dshift;
  883.             png_byte v;
  884.             png_uint_32 i;
  885.             int j;
  886.             sp = row + (png_size_t)((row_info->width - 1) >> 1);
  887.             sshift = (png_size_t)((1 - ((row_info->width + 1) & 1)) << 2);
  888.             dp = row + (png_size_t)((final_width - 1) >> 1);
  889.             dshift = (png_size_t)((1 - ((final_width + 1) & 1)) << 2);
  890.             for (i = row_info->width; i; i--)
  891.             {
  892.                v = (png_byte)((*sp >> sshift) & 0xf);
  893.                for (j = 0; j < png_pass_inc[pass]; j++)
  894.                {
  895.                   *dp &= (png_byte)((0xf0f >> (4 - dshift)) & 0xff);
  896.                   *dp |= (png_byte)(v << dshift);
  897.                   if (dshift == 4)
  898.                   {
  899.                      dshift = 0;
  900.                      dp--;
  901.                   }
  902.                   else
  903.                      dshift = 4;
  904.                }
  905.                if (sshift == 4)
  906.                {
  907.                   sshift = 0;
  908.                   sp--;
  909.                }
  910.                else
  911.                   sshift = 4;
  912.             }
  913.             break;
  914.          }
  915.          default:
  916.          {
  917.             png_bytep sp, dp;
  918.             png_byte v[8];
  919.             png_uint_32 i;
  920.             int j;
  921.             int pixel_bytes;
  922.             pixel_bytes = (row_info->pixel_depth >> 3);
  923.             sp = row + (png_size_t)((row_info->width - 1) * pixel_bytes);
  924.             dp = row + (png_size_t)((final_width - 1) * pixel_bytes);
  925.             for (i = row_info->width; i; i--)
  926.             {
  927.                png_memcpy(v, sp, pixel_bytes);
  928.                for (j = 0; j < png_pass_inc[pass]; j++)
  929.                {
  930.                   png_memcpy(dp, v, pixel_bytes);
  931.                   dp -= pixel_bytes;
  932.                }
  933.                sp -= pixel_bytes;
  934.             }
  935.             break;
  936.          }
  937.       }
  938.       row_info->width = final_width;
  939.       row_info->rowbytes = ((final_width *
  940.          (png_uint_32)row_info->pixel_depth + 7) >> 3);
  941.    }
  942. }
  943. #endif
  944. void
  945. png_read_filter_row(png_structp png_ptr, png_row_infop row_info, png_bytep row,
  946.    png_bytep prev_row, int filter)
  947. {
  948.    switch (filter)
  949.    {
  950.       case 0:
  951.          break;
  952.       case 1:
  953.       {
  954.          png_uint_32 i;
  955.          int bpp;
  956.          png_bytep rp;
  957.          png_bytep lp;
  958.          bpp = (row_info->pixel_depth + 7) / 8;
  959.          for (i = (png_uint_32)bpp, rp = row + bpp, lp = row;
  960.             i < row_info->rowbytes; i++, rp++, lp++)
  961.          {
  962.             *rp = (png_byte)(((int)(*rp) + (int)(*lp)) & 0xff);
  963.          }
  964.          break;
  965.       }
  966.       case 2:
  967.       {
  968.          png_uint_32 i;
  969.          png_bytep rp;
  970.          png_bytep pp;
  971.          for (i = 0, rp = row, pp = prev_row;
  972.             i < row_info->rowbytes; i++, rp++, pp++)
  973.          {
  974.             *rp = (png_byte)(((int)(*rp) + (int)(*pp)) & 0xff);
  975.          }
  976.          break;
  977.       }
  978.       case 3:
  979.       {
  980.          png_uint_32 i;
  981.          int bpp;
  982.          png_bytep rp;
  983.          png_bytep pp;
  984.          png_bytep lp;
  985.          bpp = (row_info->pixel_depth + 7) / 8;
  986.          for (i = 0, rp = row, pp = prev_row;
  987.             i < (png_uint_32)bpp; i++, rp++, pp++)
  988.          {
  989.             *rp = (png_byte)(((int)(*rp) +
  990.                ((int)(*pp) / 2)) & 0xff);
  991.          }
  992.          for (lp = row; i < row_info->rowbytes; i++, rp++, lp++, pp++)
  993.          {
  994.             *rp = (png_byte)(((int)(*rp) +
  995.                (int)(*pp + *lp) / 2) & 0xff);
  996.          }
  997.          break;
  998.       }
  999.       case 4:
  1000.       {
  1001.          int bpp;
  1002.          png_uint_32 i;
  1003.          png_bytep rp;
  1004.          png_bytep pp;
  1005.          png_bytep lp;
  1006.          png_bytep cp;
  1007.          bpp = (row_info->pixel_depth + 7) / 8;
  1008.          for (i = 0, rp = row, pp = prev_row,
  1009.             lp = row - bpp, cp = prev_row - bpp;
  1010.             i < row_info->rowbytes; i++, rp++, pp++, lp++, cp++)
  1011.          {
  1012.             int a, b, c, pa, pb, pc, p;
  1013.             b = *pp;
  1014.             if (i >= (png_uint_32)bpp)
  1015.             {
  1016.                c = *cp;
  1017.                a = *lp;
  1018.             }
  1019.             else
  1020.             {
  1021.                a = c = 0;
  1022.             }
  1023.             p = a + b - c;
  1024.             pa = abs(p - a);
  1025.             pb = abs(p - b);
  1026.             pc = abs(p - c);
  1027.             if (pa <= pb && pa <= pc)
  1028.                p = a;
  1029.             else if (pb <= pc)
  1030.                p = b;
  1031.             else
  1032.                p = c;
  1033.             *rp = (png_byte)(((int)(*rp) + p) & 0xff);
  1034.          }
  1035.          break;
  1036.       }
  1037.       default:
  1038.          png_error(png_ptr, "Bad adaptive filter type");
  1039.          break;
  1040.    }
  1041. }
  1042. void
  1043. png_read_finish_row(png_structp png_ptr)
  1044. {
  1045.    png_ptr->row_number++;
  1046.    if (png_ptr->row_number < png_ptr->num_rows)
  1047.       return;
  1048.    if (png_ptr->interlaced)
  1049.    {
  1050.       png_ptr->row_number = 0;
  1051.       png_memset(png_ptr->prev_row, 0, (png_size_t)png_ptr->rowbytes + 1);
  1052.       do
  1053.       {
  1054.          png_ptr->pass++;
  1055.          if (png_ptr->pass >= 7)
  1056.             break;
  1057.          png_ptr->iwidth = (png_ptr->width +
  1058.             png_pass_inc[png_ptr->pass] - 1 -
  1059.             png_pass_start[png_ptr->pass]) /
  1060.             png_pass_inc[png_ptr->pass];
  1061.          png_ptr->irowbytes = ((png_ptr->iwidth *
  1062.             png_ptr->pixel_depth + 7) >> 3) + 1;
  1063.          if (!(png_ptr->transformations & PNG_INTERLACE))
  1064.          {
  1065.             png_ptr->num_rows = (png_ptr->height +
  1066.                png_pass_yinc[png_ptr->pass] - 1 -
  1067.                png_pass_ystart[png_ptr->pass]) /
  1068.                png_pass_yinc[png_ptr->pass];
  1069.             if (!(png_ptr->num_rows))
  1070.                continue;
  1071.          }
  1072.          if (png_ptr->transformations & PNG_INTERLACE)
  1073.             break;
  1074.       } while (png_ptr->iwidth == 0);
  1075.       if (png_ptr->pass < 7)
  1076.          return;
  1077.    }
  1078.    if (!(png_ptr->flags & PNG_FLAG_ZLIB_FINISHED))
  1079.    {
  1080.       char extra;
  1081.       int ret;
  1082.       png_ptr->zstream->next_out = (Byte *)&extra;
  1083.       png_ptr->zstream->avail_out = (uInt)1;
  1084.       do
  1085.       {
  1086.          if (!(png_ptr->zstream->avail_in))
  1087.          {
  1088.             while (!png_ptr->idat_size)
  1089.             {
  1090.                png_byte buf[4];
  1091.                png_uint_32 crc;
  1092.                png_read_data(png_ptr, buf, 4);
  1093.                crc = png_get_uint_32(buf);
  1094.                if (((crc ^ 0xffffffffL) & 0xffffffffL) !=
  1095.                   (png_ptr->crc & 0xffffffffL))
  1096.                   png_warning(png_ptr, "Bad CRC value");
  1097.                png_read_data(png_ptr, buf, 4);
  1098.                png_ptr->idat_size = png_get_uint_32(buf);
  1099.                png_reset_crc(png_ptr);
  1100.                png_crc_read(png_ptr, buf, 4);
  1101.                if (png_memcmp(buf, png_IDAT, 4))
  1102.                   png_error(png_ptr, "Not enough image data");
  1103.             }
  1104.             png_ptr->zstream->avail_in = (uInt)png_ptr->zbuf_size;
  1105.             png_ptr->zstream->next_in = png_ptr->zbuf;
  1106.             if (png_ptr->zbuf_size > png_ptr->idat_size)
  1107.                png_ptr->zstream->avail_in = (uInt)png_ptr->idat_size;
  1108.             png_crc_read(png_ptr, png_ptr->zbuf, png_ptr->zstream->avail_in);
  1109.             png_ptr->idat_size -= png_ptr->zstream->avail_in;
  1110.          }
  1111.          ret = inflate(png_ptr->zstream, Z_PARTIAL_FLUSH);
  1112.          if (ret == Z_STREAM_END)
  1113.          {
  1114.             if (!(png_ptr->zstream->avail_out) || png_ptr->zstream->avail_in ||
  1115.                png_ptr->idat_size)
  1116.                png_error(png_ptr, "Extra compressed data");
  1117.             png_ptr->mode |= PNG_AT_LAST_IDAT;
  1118.             break;
  1119.          }
  1120.          if (ret != Z_OK)
  1121.             png_error(png_ptr, png_ptr->zstream->msg ? png_ptr->zstream->msg :
  1122.                       "Decompression Error");
  1123.          if (!(png_ptr->zstream->avail_out))
  1124.             png_error(png_ptr, "Extra compressed data");
  1125.       } while (1);
  1126.       png_ptr->zstream->avail_out = 0;
  1127.    }
  1128.    if (png_ptr->idat_size || png_ptr->zstream->avail_in)
  1129.       png_error(png_ptr, "Extra compression data");
  1130.    inflateReset(png_ptr->zstream);
  1131.    png_ptr->mode |= PNG_AT_LAST_IDAT;
  1132. }
  1133. void
  1134. png_read_start_row(png_structp png_ptr)
  1135. {
  1136.    int max_pixel_depth;
  1137.    png_uint_32 rowbytes;
  1138.    png_ptr->zstream->avail_in = 0;
  1139.    png_init_read_transformations(png_ptr);
  1140.    if (png_ptr->interlaced)
  1141.    {
  1142.       if (!(png_ptr->transformations & PNG_INTERLACE))
  1143.          png_ptr->num_rows = (png_ptr->height + png_pass_yinc[0] - 1 -
  1144.             png_pass_ystart[0]) / png_pass_yinc[0];
  1145.       else
  1146.          png_ptr->num_rows = png_ptr->height;
  1147.       png_ptr->iwidth = (png_ptr->width +
  1148.          png_pass_inc[png_ptr->pass] - 1 -
  1149.          png_pass_start[png_ptr->pass]) /
  1150.          png_pass_inc[png_ptr->pass];
  1151.       png_ptr->irowbytes = ((png_ptr->iwidth *
  1152.          png_ptr->pixel_depth + 7) >> 3) + 1;
  1153.    }
  1154.    else
  1155.    {
  1156.       png_ptr->num_rows = png_ptr->height;
  1157.       png_ptr->iwidth = png_ptr->width;
  1158.       png_ptr->irowbytes = png_ptr->rowbytes + 1;
  1159.    }
  1160.    max_pixel_depth = png_ptr->pixel_depth;
  1161. #if defined(PNG_READ_PACK_SUPPORTED)
  1162.    if ((png_ptr->transformations & PNG_PACK) && png_ptr->bit_depth < 8)
  1163.       max_pixel_depth = 8;
  1164. #endif
  1165. #if defined(PNG_READ_EXPAND_SUPPORTED)
  1166.    if (png_ptr->transformations & PNG_EXPAND)
  1167.    {
  1168.       if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  1169.       {
  1170.          if (png_ptr->num_trans)
  1171.             max_pixel_depth = 32;
  1172.          else
  1173.             max_pixel_depth = 24;
  1174.       }
  1175.       else if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY)
  1176.       {
  1177.          if (max_pixel_depth < 8)
  1178.             max_pixel_depth = 8;
  1179.          if (png_ptr->num_trans)
  1180.             max_pixel_depth *= 2;
  1181.       }
  1182.       else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB)
  1183.       {
  1184.          if (png_ptr->num_trans)
  1185.          {
  1186.             max_pixel_depth *= 4;
  1187.             max_pixel_depth /= 3;
  1188.          }
  1189.       }
  1190.    }
  1191. #endif
  1192. #if defined(PNG_READ_FILLER_SUPPORTED)
  1193.    if (png_ptr->transformations & (PNG_FILLER))
  1194.    {
  1195.       if (max_pixel_depth < 32)
  1196.          max_pixel_depth = 32;
  1197.    }
  1198. #endif
  1199. #if defined(PNG_READ_GRAY_TO_RGB_SUPPORTED)
  1200.    if (png_ptr->transformations & PNG_GRAY_TO_RGB)
  1201.    {
  1202.       if ((png_ptr->num_trans && (png_ptr->transformations & PNG_EXPAND)) ||
  1203.          png_ptr->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
  1204.       {
  1205.          if (max_pixel_depth <= 16)
  1206.             max_pixel_depth = 32;
  1207.          else if (max_pixel_depth <= 32)
  1208.             max_pixel_depth = 64;
  1209.       }
  1210.       else
  1211.       {
  1212.          if (max_pixel_depth <= 8)
  1213.             max_pixel_depth = 24;
  1214.          else if (max_pixel_depth <= 16)
  1215.             max_pixel_depth = 48;
  1216.       }
  1217.    }
  1218. #endif
  1219.    /* align the width on the next larger 8 pixels.  Mainly used
  1220.       for interlacing */
  1221.    rowbytes = ((png_ptr->width + 7) & ~((png_uint_32)7));
  1222.    /* calculate the maximum bytes needed, adding a byte and a pixel
  1223.       for safety sake */
  1224.    rowbytes = ((rowbytes * (png_uint_32)max_pixel_depth + 7) >> 3) +
  1225.       1 + ((max_pixel_depth + 7) >> 3);
  1226. #ifdef PNG_MAX_MALLOC_64K
  1227.    if (rowbytes > 65536L)
  1228.       png_error(png_ptr, "This image requires a row greater than 64KB");
  1229. #endif
  1230.    png_ptr->row_buf = (png_bytep )png_large_malloc(png_ptr, rowbytes);
  1231. #ifdef PNG_MAX_MALLOC_64K
  1232.    if (png_ptr->rowbytes + 1 > 65536L)
  1233.       png_error(png_ptr, "This image requires a row greater than 64KB");
  1234. #endif
  1235.    png_ptr->prev_row = png_large_malloc(png_ptr, png_ptr->rowbytes + 1);
  1236.    png_memset(png_ptr->prev_row, 0, (png_size_t)png_ptr->rowbytes + 1);
  1237.    png_ptr->flags |= PNG_FLAG_ROW_INIT;
  1238. }