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

打印编程

开发平台:

Visual C++

  1. /* pngrtran.c - transforms the data in a row for PNG readers
  2.  *
  3.  * Last changed in libpng 1.2.13 November 13, 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.  * This file contains functions optionally called by an application
  10.  * in order to tell libpng how to handle data when reading a PNG.
  11.  * Transformations that are used in both reading and writing are
  12.  * in pngtrans.c.
  13.  */
  14. #define PNG_INTERNAL
  15. #include "png.h"
  16. #if defined(PNG_READ_SUPPORTED)
  17. /* Set the action on getting a CRC error for an ancillary or critical chunk. */
  18. void PNGAPI
  19. png_set_crc_action(png_structp png_ptr, int crit_action, int ancil_action)
  20. {
  21.    png_debug(1, "in png_set_crc_actionn");
  22.    /* Tell libpng how we react to CRC errors in critical chunks */
  23.    if(png_ptr == NULL) return;
  24.    switch (crit_action)
  25.    {
  26.       case PNG_CRC_NO_CHANGE:                        /* leave setting as is */
  27.          break;
  28.       case PNG_CRC_WARN_USE:                               /* warn/use data */
  29.          png_ptr->flags &= ~PNG_FLAG_CRC_CRITICAL_MASK;
  30.          png_ptr->flags |= PNG_FLAG_CRC_CRITICAL_USE;
  31.          break;
  32.       case PNG_CRC_QUIET_USE:                             /* quiet/use data */
  33.          png_ptr->flags &= ~PNG_FLAG_CRC_CRITICAL_MASK;
  34.          png_ptr->flags |= PNG_FLAG_CRC_CRITICAL_USE |
  35.                            PNG_FLAG_CRC_CRITICAL_IGNORE;
  36.          break;
  37.       case PNG_CRC_WARN_DISCARD:    /* not a valid action for critical data */
  38.          png_warning(png_ptr, "Can't discard critical data on CRC error.");
  39.       case PNG_CRC_ERROR_QUIT:                                /* error/quit */
  40.       case PNG_CRC_DEFAULT:
  41.       default:
  42.          png_ptr->flags &= ~PNG_FLAG_CRC_CRITICAL_MASK;
  43.          break;
  44.    }
  45.    switch (ancil_action)
  46.    {
  47.       case PNG_CRC_NO_CHANGE:                       /* leave setting as is */
  48.          break;
  49.       case PNG_CRC_WARN_USE:                              /* warn/use data */
  50.          png_ptr->flags &= ~PNG_FLAG_CRC_ANCILLARY_MASK;
  51.          png_ptr->flags |= PNG_FLAG_CRC_ANCILLARY_USE;
  52.          break;
  53.       case PNG_CRC_QUIET_USE:                            /* quiet/use data */
  54.          png_ptr->flags &= ~PNG_FLAG_CRC_ANCILLARY_MASK;
  55.          png_ptr->flags |= PNG_FLAG_CRC_ANCILLARY_USE |
  56.                            PNG_FLAG_CRC_ANCILLARY_NOWARN;
  57.          break;
  58.       case PNG_CRC_ERROR_QUIT:                               /* error/quit */
  59.          png_ptr->flags &= ~PNG_FLAG_CRC_ANCILLARY_MASK;
  60.          png_ptr->flags |= PNG_FLAG_CRC_ANCILLARY_NOWARN;
  61.          break;
  62.       case PNG_CRC_WARN_DISCARD:                      /* warn/discard data */
  63.       case PNG_CRC_DEFAULT:
  64.       default:
  65.          png_ptr->flags &= ~PNG_FLAG_CRC_ANCILLARY_MASK;
  66.          break;
  67.    }
  68. }
  69. #if defined(PNG_READ_BACKGROUND_SUPPORTED) && 
  70.     defined(PNG_FLOATING_POINT_SUPPORTED)
  71. /* handle alpha and tRNS via a background color */
  72. void PNGAPI
  73. png_set_background(png_structp png_ptr,
  74.    png_color_16p background_color, int background_gamma_code,
  75.    int need_expand, double background_gamma)
  76. {
  77.    png_debug(1, "in png_set_backgroundn");
  78.    if(png_ptr == NULL) return;
  79.    if (background_gamma_code == PNG_BACKGROUND_GAMMA_UNKNOWN)
  80.    {
  81.       png_warning(png_ptr, "Application must supply a known background gamma");
  82.       return;
  83.    }
  84.    png_ptr->transformations |= PNG_BACKGROUND;
  85.    png_memcpy(&(png_ptr->background), background_color,
  86.       png_sizeof(png_color_16));
  87.    png_ptr->background_gamma = (float)background_gamma;
  88.    png_ptr->background_gamma_type = (png_byte)(background_gamma_code);
  89.    png_ptr->transformations |= (need_expand ? PNG_BACKGROUND_EXPAND : 0);
  90.    /* Note:  if need_expand is set and color_type is either RGB or RGB_ALPHA
  91.     * (in which case need_expand is superfluous anyway), the background color
  92.     * might actually be gray yet not be flagged as such. This is not a problem
  93.     * for the current code, which uses PNG_BACKGROUND_IS_GRAY only to
  94.     * decide when to do the png_do_gray_to_rgb() transformation.
  95.     */
  96.    if ((need_expand && !(png_ptr->color_type & PNG_COLOR_MASK_COLOR)) ||
  97.        (!need_expand && background_color->red == background_color->green &&
  98.         background_color->red == background_color->blue))
  99.       png_ptr->mode |= PNG_BACKGROUND_IS_GRAY;
  100. }
  101. #endif
  102. #if defined(PNG_READ_16_TO_8_SUPPORTED)
  103. /* strip 16 bit depth files to 8 bit depth */
  104. void PNGAPI
  105. png_set_strip_16(png_structp png_ptr)
  106. {
  107.    png_debug(1, "in png_set_strip_16n");
  108.    if(png_ptr == NULL) return;
  109.    png_ptr->transformations |= PNG_16_TO_8;
  110. }
  111. #endif
  112. #if defined(PNG_READ_STRIP_ALPHA_SUPPORTED)
  113. void PNGAPI
  114. png_set_strip_alpha(png_structp png_ptr)
  115. {
  116.    png_debug(1, "in png_set_strip_alphan");
  117.    if(png_ptr == NULL) return;
  118.    png_ptr->flags |= PNG_FLAG_STRIP_ALPHA;
  119. }
  120. #endif
  121. #if defined(PNG_READ_DITHER_SUPPORTED)
  122. /* Dither file to 8 bit.  Supply a palette, the current number
  123.  * of elements in the palette, the maximum number of elements
  124.  * allowed, and a histogram if possible.  If the current number
  125.  * of colors is greater then the maximum number, the palette will be
  126.  * modified to fit in the maximum number.  "full_dither" indicates
  127.  * whether we need a dithering cube set up for RGB images, or if we
  128.  * simply are reducing the number of colors in a paletted image.
  129.  */
  130. typedef struct png_dsort_struct
  131. {
  132.    struct png_dsort_struct FAR * next;
  133.    png_byte left;
  134.    png_byte right;
  135. } png_dsort;
  136. typedef png_dsort FAR *       png_dsortp;
  137. typedef png_dsort FAR * FAR * png_dsortpp;
  138. void PNGAPI
  139. png_set_dither(png_structp png_ptr, png_colorp palette,
  140.    int num_palette, int maximum_colors, png_uint_16p histogram,
  141.    int full_dither)
  142. {
  143.    png_debug(1, "in png_set_dithern");
  144.    if(png_ptr == NULL) return;
  145.    png_ptr->transformations |= PNG_DITHER;
  146.    if (!full_dither)
  147.    {
  148.       int i;
  149.       png_ptr->dither_index = (png_bytep)png_malloc(png_ptr,
  150.          (png_uint_32)(num_palette * png_sizeof (png_byte)));
  151.       for (i = 0; i < num_palette; i++)
  152.          png_ptr->dither_index[i] = (png_byte)i;
  153.    }
  154.    if (num_palette > maximum_colors)
  155.    {
  156.       if (histogram != NULL)
  157.       {
  158.          /* This is easy enough, just throw out the least used colors.
  159.             Perhaps not the best solution, but good enough. */
  160.          int i;
  161.          /* initialize an array to sort colors */
  162.          png_ptr->dither_sort = (png_bytep)png_malloc(png_ptr,
  163.             (png_uint_32)(num_palette * png_sizeof (png_byte)));
  164.          /* initialize the dither_sort array */
  165.          for (i = 0; i < num_palette; i++)
  166.             png_ptr->dither_sort[i] = (png_byte)i;
  167.          /* Find the least used palette entries by starting a
  168.             bubble sort, and running it until we have sorted
  169.             out enough colors.  Note that we don't care about
  170.             sorting all the colors, just finding which are
  171.             least used. */
  172.          for (i = num_palette - 1; i >= maximum_colors; i--)
  173.          {
  174.             int done; /* to stop early if the list is pre-sorted */
  175.             int j;
  176.             done = 1;
  177.             for (j = 0; j < i; j++)
  178.             {
  179.                if (histogram[png_ptr->dither_sort[j]]
  180.                    < histogram[png_ptr->dither_sort[j + 1]])
  181.                {
  182.                   png_byte t;
  183.                   t = png_ptr->dither_sort[j];
  184.                   png_ptr->dither_sort[j] = png_ptr->dither_sort[j + 1];
  185.                   png_ptr->dither_sort[j + 1] = t;
  186.                   done = 0;
  187.                }
  188.             }
  189.             if (done)
  190.                break;
  191.          }
  192.          /* swap the palette around, and set up a table, if necessary */
  193.          if (full_dither)
  194.          {
  195.             int j = num_palette;
  196.             /* put all the useful colors within the max, but don't
  197.                move the others */
  198.             for (i = 0; i < maximum_colors; i++)
  199.             {
  200.                if ((int)png_ptr->dither_sort[i] >= maximum_colors)
  201.                {
  202.                   do
  203.                      j--;
  204.                   while ((int)png_ptr->dither_sort[j] >= maximum_colors);
  205.                   palette[i] = palette[j];
  206.                }
  207.             }
  208.          }
  209.          else
  210.          {
  211.             int j = num_palette;
  212.             /* move all the used colors inside the max limit, and
  213.                develop a translation table */
  214.             for (i = 0; i < maximum_colors; i++)
  215.             {
  216.                /* only move the colors we need to */
  217.                if ((int)png_ptr->dither_sort[i] >= maximum_colors)
  218.                {
  219.                   png_color tmp_color;
  220.                   do
  221.                      j--;
  222.                   while ((int)png_ptr->dither_sort[j] >= maximum_colors);
  223.                   tmp_color = palette[j];
  224.                   palette[j] = palette[i];
  225.                   palette[i] = tmp_color;
  226.                   /* indicate where the color went */
  227.                   png_ptr->dither_index[j] = (png_byte)i;
  228.                   png_ptr->dither_index[i] = (png_byte)j;
  229.                }
  230.             }
  231.             /* find closest color for those colors we are not using */
  232.             for (i = 0; i < num_palette; i++)
  233.             {
  234.                if ((int)png_ptr->dither_index[i] >= maximum_colors)
  235.                {
  236.                   int min_d, k, min_k, d_index;
  237.                   /* find the closest color to one we threw out */
  238.                   d_index = png_ptr->dither_index[i];
  239.                   min_d = PNG_COLOR_DIST(palette[d_index], palette[0]);
  240.                   for (k = 1, min_k = 0; k < maximum_colors; k++)
  241.                   {
  242.                      int d;
  243.                      d = PNG_COLOR_DIST(palette[d_index], palette[k]);
  244.                      if (d < min_d)
  245.                      {
  246.                         min_d = d;
  247.                         min_k = k;
  248.                      }
  249.                   }
  250.                   /* point to closest color */
  251.                   png_ptr->dither_index[i] = (png_byte)min_k;
  252.                }
  253.             }
  254.          }
  255.          png_free(png_ptr, png_ptr->dither_sort);
  256.          png_ptr->dither_sort=NULL;
  257.       }
  258.       else
  259.       {
  260.          /* This is much harder to do simply (and quickly).  Perhaps
  261.             we need to go through a median cut routine, but those
  262.             don't always behave themselves with only a few colors
  263.             as input.  So we will just find the closest two colors,
  264.             and throw out one of them (chosen somewhat randomly).
  265.             [We don't understand this at all, so if someone wants to
  266.              work on improving it, be our guest - AED, GRP]
  267.             */
  268.          int i;
  269.          int max_d;
  270.          int num_new_palette;
  271.          png_dsortp t;
  272.          png_dsortpp hash;
  273.          t=NULL;
  274.          /* initialize palette index arrays */
  275.          png_ptr->index_to_palette = (png_bytep)png_malloc(png_ptr,
  276.             (png_uint_32)(num_palette * png_sizeof (png_byte)));
  277.          png_ptr->palette_to_index = (png_bytep)png_malloc(png_ptr,
  278.             (png_uint_32)(num_palette * png_sizeof (png_byte)));
  279.          /* initialize the sort array */
  280.          for (i = 0; i < num_palette; i++)
  281.          {
  282.             png_ptr->index_to_palette[i] = (png_byte)i;
  283.             png_ptr->palette_to_index[i] = (png_byte)i;
  284.          }
  285.          hash = (png_dsortpp)png_malloc(png_ptr, (png_uint_32)(769 *
  286.             png_sizeof (png_dsortp)));
  287.          for (i = 0; i < 769; i++)
  288.             hash[i] = NULL;
  289. /*         png_memset(hash, 0, 769 * png_sizeof (png_dsortp)); */
  290.          num_new_palette = num_palette;
  291.          /* initial wild guess at how far apart the farthest pixel
  292.             pair we will be eliminating will be.  Larger
  293.             numbers mean more areas will be allocated, Smaller
  294.             numbers run the risk of not saving enough data, and
  295.             having to do this all over again.
  296.             I have not done extensive checking on this number.
  297.             */
  298.          max_d = 96;
  299.          while (num_new_palette > maximum_colors)
  300.          {
  301.             for (i = 0; i < num_new_palette - 1; i++)
  302.             {
  303.                int j;
  304.                for (j = i + 1; j < num_new_palette; j++)
  305.                {
  306.                   int d;
  307.                   d = PNG_COLOR_DIST(palette[i], palette[j]);
  308.                   if (d <= max_d)
  309.                   {
  310.                      t = (png_dsortp)png_malloc_warn(png_ptr,
  311.                          (png_uint_32)(png_sizeof(png_dsort)));
  312.                      if (t == NULL)
  313.                          break;
  314.                      t->next = hash[d];
  315.                      t->left = (png_byte)i;
  316.                      t->right = (png_byte)j;
  317.                      hash[d] = t;
  318.                   }
  319.                }
  320.                if (t == NULL)
  321.                   break;
  322.             }
  323.             if (t != NULL)
  324.             for (i = 0; i <= max_d; i++)
  325.             {
  326.                if (hash[i] != NULL)
  327.                {
  328.                   png_dsortp p;
  329.                   for (p = hash[i]; p; p = p->next)
  330.                   {
  331.                      if ((int)png_ptr->index_to_palette[p->left]
  332.                         < num_new_palette &&
  333.                         (int)png_ptr->index_to_palette[p->right]
  334.                         < num_new_palette)
  335.                      {
  336.                         int j, next_j;
  337.                         if (num_new_palette & 0x01)
  338.                         {
  339.                            j = p->left;
  340.                            next_j = p->right;
  341.                         }
  342.                         else
  343.                         {
  344.                            j = p->right;
  345.                            next_j = p->left;
  346.                         }
  347.                         num_new_palette--;
  348.                         palette[png_ptr->index_to_palette[j]]
  349.                           = palette[num_new_palette];
  350.                         if (!full_dither)
  351.                         {
  352.                            int k;
  353.                            for (k = 0; k < num_palette; k++)
  354.                            {
  355.                               if (png_ptr->dither_index[k] ==
  356.                                  png_ptr->index_to_palette[j])
  357.                                  png_ptr->dither_index[k] =
  358.                                     png_ptr->index_to_palette[next_j];
  359.                               if ((int)png_ptr->dither_index[k] ==
  360.                                  num_new_palette)
  361.                                  png_ptr->dither_index[k] =
  362.                                     png_ptr->index_to_palette[j];
  363.                            }
  364.                         }
  365.                         png_ptr->index_to_palette[png_ptr->palette_to_index
  366.                            [num_new_palette]] = png_ptr->index_to_palette[j];
  367.                         png_ptr->palette_to_index[png_ptr->index_to_palette[j]]
  368.                            = png_ptr->palette_to_index[num_new_palette];
  369.                         png_ptr->index_to_palette[j] = (png_byte)num_new_palette;
  370.                         png_ptr->palette_to_index[num_new_palette] = (png_byte)j;
  371.                      }
  372.                      if (num_new_palette <= maximum_colors)
  373.                         break;
  374.                   }
  375.                   if (num_new_palette <= maximum_colors)
  376.                      break;
  377.                }
  378.             }
  379.             for (i = 0; i < 769; i++)
  380.             {
  381.                if (hash[i] != NULL)
  382.                {
  383.                   png_dsortp p = hash[i];
  384.                   while (p)
  385.                   {
  386.                      t = p->next;
  387.                      png_free(png_ptr, p);
  388.                      p = t;
  389.                   }
  390.                }
  391.                hash[i] = 0;
  392.             }
  393.             max_d += 96;
  394.          }
  395.          png_free(png_ptr, hash);
  396.          png_free(png_ptr, png_ptr->palette_to_index);
  397.          png_free(png_ptr, png_ptr->index_to_palette);
  398.          png_ptr->palette_to_index=NULL;
  399.          png_ptr->index_to_palette=NULL;
  400.       }
  401.       num_palette = maximum_colors;
  402.    }
  403.    if (png_ptr->palette == NULL)
  404.    {
  405.       png_ptr->palette = palette;
  406.    }
  407.    png_ptr->num_palette = (png_uint_16)num_palette;
  408.    if (full_dither)
  409.    {
  410.       int i;
  411.       png_bytep distance;
  412.       int total_bits = PNG_DITHER_RED_BITS + PNG_DITHER_GREEN_BITS +
  413.          PNG_DITHER_BLUE_BITS;
  414.       int num_red = (1 << PNG_DITHER_RED_BITS);
  415.       int num_green = (1 << PNG_DITHER_GREEN_BITS);
  416.       int num_blue = (1 << PNG_DITHER_BLUE_BITS);
  417.       png_size_t num_entries = ((png_size_t)1 << total_bits);
  418.       png_ptr->palette_lookup = (png_bytep )png_malloc(png_ptr,
  419.          (png_uint_32)(num_entries * png_sizeof (png_byte)));
  420.       png_memset(png_ptr->palette_lookup, 0, num_entries *
  421.          png_sizeof (png_byte));
  422.       distance = (png_bytep)png_malloc(png_ptr, (png_uint_32)(num_entries *
  423.          png_sizeof(png_byte)));
  424.       png_memset(distance, 0xff, num_entries * png_sizeof(png_byte));
  425.       for (i = 0; i < num_palette; i++)
  426.       {
  427.          int ir, ig, ib;
  428.          int r = (palette[i].red >> (8 - PNG_DITHER_RED_BITS));
  429.          int g = (palette[i].green >> (8 - PNG_DITHER_GREEN_BITS));
  430.          int b = (palette[i].blue >> (8 - PNG_DITHER_BLUE_BITS));
  431.          for (ir = 0; ir < num_red; ir++)
  432.          {
  433.             /* int dr = abs(ir - r); */
  434.             int dr = ((ir > r) ? ir - r : r - ir);
  435.             int index_r = (ir << (PNG_DITHER_BLUE_BITS + PNG_DITHER_GREEN_BITS));
  436.             for (ig = 0; ig < num_green; ig++)
  437.             {
  438.                /* int dg = abs(ig - g); */
  439.                int dg = ((ig > g) ? ig - g : g - ig);
  440.                int dt = dr + dg;
  441.                int dm = ((dr > dg) ? dr : dg);
  442.                int index_g = index_r | (ig << PNG_DITHER_BLUE_BITS);
  443.                for (ib = 0; ib < num_blue; ib++)
  444.                {
  445.                   int d_index = index_g | ib;
  446.                   /* int db = abs(ib - b); */
  447.                   int db = ((ib > b) ? ib - b : b - ib);
  448.                   int dmax = ((dm > db) ? dm : db);
  449.                   int d = dmax + dt + db;
  450.                   if (d < (int)distance[d_index])
  451.                   {
  452.                      distance[d_index] = (png_byte)d;
  453.                      png_ptr->palette_lookup[d_index] = (png_byte)i;
  454.                   }
  455.                }
  456.             }
  457.          }
  458.       }
  459.       png_free(png_ptr, distance);
  460.    }
  461. }
  462. #endif
  463. #if defined(PNG_READ_GAMMA_SUPPORTED) && defined(PNG_FLOATING_POINT_SUPPORTED)
  464. /* Transform the image from the file_gamma to the screen_gamma.  We
  465.  * only do transformations on images where the file_gamma and screen_gamma
  466.  * are not close reciprocals, otherwise it slows things down slightly, and
  467.  * also needlessly introduces small errors.
  468.  *
  469.  * We will turn off gamma transformation later if no semitransparent entries
  470.  * are present in the tRNS array for palette images.  We can't do it here
  471.  * because we don't necessarily have the tRNS chunk yet.
  472.  */
  473. void PNGAPI
  474. png_set_gamma(png_structp png_ptr, double scrn_gamma, double file_gamma)
  475. {
  476.    png_debug(1, "in png_set_gamman");
  477.    if(png_ptr == NULL) return;
  478.    if ((fabs(scrn_gamma * file_gamma - 1.0) > PNG_GAMMA_THRESHOLD) ||
  479.        (png_ptr->color_type & PNG_COLOR_MASK_ALPHA) ||
  480.        (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE))
  481.      png_ptr->transformations |= PNG_GAMMA;
  482.    png_ptr->gamma = (float)file_gamma;
  483.    png_ptr->screen_gamma = (float)scrn_gamma;
  484. }
  485. #endif
  486. #if defined(PNG_READ_EXPAND_SUPPORTED)
  487. /* Expand paletted images to RGB, expand grayscale images of
  488.  * less than 8-bit depth to 8-bit depth, and expand tRNS chunks
  489.  * to alpha channels.
  490.  */
  491. void PNGAPI
  492. png_set_expand(png_structp png_ptr)
  493. {
  494.    png_debug(1, "in png_set_expandn");
  495.    if(png_ptr == NULL) return;
  496.    png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS);
  497. }
  498. /* GRR 19990627:  the following three functions currently are identical
  499.  *  to png_set_expand().  However, it is entirely reasonable that someone
  500.  *  might wish to expand an indexed image to RGB but *not* expand a single,
  501.  *  fully transparent palette entry to a full alpha channel--perhaps instead
  502.  *  convert tRNS to the grayscale/RGB format (16-bit RGB value), or replace
  503.  *  the transparent color with a particular RGB value, or drop tRNS entirely.
  504.  *  IOW, a future version of the library may make the transformations flag
  505.  *  a bit more fine-grained, with separate bits for each of these three
  506.  *  functions.
  507.  *
  508.  *  More to the point, these functions make it obvious what libpng will be
  509.  *  doing, whereas "expand" can (and does) mean any number of things.
  510.  *
  511.  *  GRP 20060307: In libpng-1.4.0, png_set_gray_1_2_4_to_8() was modified
  512.  *  to expand only the sample depth but not to expand the tRNS to alpha.
  513.  */
  514. /* Expand paletted images to RGB. */
  515. void PNGAPI
  516. png_set_palette_to_rgb(png_structp png_ptr)
  517. {
  518.    png_debug(1, "in png_set_palette_to_rgbn");
  519.    if(png_ptr == NULL) return;
  520.    png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS);
  521. }
  522. #if !defined(PNG_1_0_X)
  523. /* Expand grayscale images of less than 8-bit depth to 8 bits. */
  524. void PNGAPI
  525. png_set_expand_gray_1_2_4_to_8(png_structp png_ptr)
  526. {
  527.    png_debug(1, "in png_set_expand_gray_1_2_4_to_8n");
  528.    if(png_ptr == NULL) return;
  529.    png_ptr->transformations |= PNG_EXPAND_tRNS;
  530. }
  531. #endif
  532. #if defined(PNG_1_0_X) || defined(PNG_1_2_X)
  533. /* Expand grayscale images of less than 8-bit depth to 8 bits. */
  534. /* Deprecated as of libpng-1.2.9 */
  535. void PNGAPI
  536. png_set_gray_1_2_4_to_8(png_structp png_ptr)
  537. {
  538.    png_debug(1, "in png_set_gray_1_2_4_to_8n");
  539.    if(png_ptr == NULL) return;
  540.    png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS);
  541. }
  542. #endif
  543. /* Expand tRNS chunks to alpha channels. */
  544. void PNGAPI
  545. png_set_tRNS_to_alpha(png_structp png_ptr)
  546. {
  547.    png_debug(1, "in png_set_expandn");
  548.    png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS);
  549. }
  550. #endif /* defined(PNG_READ_EXPAND_SUPPORTED) */
  551. #if defined(PNG_READ_GRAY_TO_RGB_SUPPORTED)
  552. void PNGAPI
  553. png_set_gray_to_rgb(png_structp png_ptr)
  554. {
  555.    png_debug(1, "in png_set_gray_to_rgbn");
  556.    png_ptr->transformations |= PNG_GRAY_TO_RGB;
  557. }
  558. #endif
  559. #if defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
  560. #if defined(PNG_FLOATING_POINT_SUPPORTED)
  561. /* Convert a RGB image to a grayscale of the same width.  This allows us,
  562.  * for example, to convert a 24 bpp RGB image into an 8 bpp grayscale image.
  563.  */
  564. void PNGAPI
  565. png_set_rgb_to_gray(png_structp png_ptr, int error_action, double red,
  566.    double green)
  567. {
  568.       int red_fixed = (int)((float)red*100000.0 + 0.5);
  569.       int green_fixed = (int)((float)green*100000.0 + 0.5);
  570.       if(png_ptr == NULL) return;
  571.       png_set_rgb_to_gray_fixed(png_ptr, error_action, red_fixed, green_fixed);
  572. }
  573. #endif
  574. void PNGAPI
  575. png_set_rgb_to_gray_fixed(png_structp png_ptr, int error_action,
  576.    png_fixed_point red, png_fixed_point green)
  577. {
  578.    png_debug(1, "in png_set_rgb_to_grayn");
  579.    if(png_ptr == NULL) return;
  580.    switch(error_action)
  581.    {
  582.       case 1: png_ptr->transformations |= PNG_RGB_TO_GRAY;
  583.               break;
  584.       case 2: png_ptr->transformations |= PNG_RGB_TO_GRAY_WARN;
  585.               break;
  586.       case 3: png_ptr->transformations |= PNG_RGB_TO_GRAY_ERR;
  587.    }
  588.    if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  589. #if defined(PNG_READ_EXPAND_SUPPORTED)
  590.       png_ptr->transformations |= PNG_EXPAND;
  591. #else
  592.    {
  593.       png_warning(png_ptr, "Cannot do RGB_TO_GRAY without EXPAND_SUPPORTED.");
  594.       png_ptr->transformations &= ~PNG_RGB_TO_GRAY;
  595.    }
  596. #endif
  597.    {
  598.       png_uint_16 red_int, green_int;
  599.       if(red < 0 || green < 0)
  600.       {
  601.          red_int   =  6968; /* .212671 * 32768 + .5 */
  602.          green_int = 23434; /* .715160 * 32768 + .5 */
  603.       }
  604.       else if(red + green < 100000L)
  605.       {
  606.         red_int = (png_uint_16)(((png_uint_32)red*32768L)/100000L);
  607.         green_int = (png_uint_16)(((png_uint_32)green*32768L)/100000L);
  608.       }
  609.       else
  610.       {
  611.          png_warning(png_ptr, "ignoring out of range rgb_to_gray coefficients");
  612.          red_int   =  6968;
  613.          green_int = 23434;
  614.       }
  615.       png_ptr->rgb_to_gray_red_coeff   = red_int;
  616.       png_ptr->rgb_to_gray_green_coeff = green_int;
  617.       png_ptr->rgb_to_gray_blue_coeff  = (png_uint_16)(32768-red_int-green_int);
  618.    }
  619. }
  620. #endif
  621. #if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || 
  622.     defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED) || 
  623.     defined(PNG_LEGACY_SUPPORTED)
  624. void PNGAPI
  625. png_set_read_user_transform_fn(png_structp png_ptr, png_user_transform_ptr
  626.    read_user_transform_fn)
  627. {
  628.    png_debug(1, "in png_set_read_user_transform_fnn");
  629.    if(png_ptr == NULL) return;
  630. #if defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
  631.    png_ptr->transformations |= PNG_USER_TRANSFORM;
  632.    png_ptr->read_user_transform_fn = read_user_transform_fn;
  633. #endif
  634. #ifdef PNG_LEGACY_SUPPORTED
  635.    if(read_user_transform_fn)
  636.       png_warning(png_ptr,
  637.         "This version of libpng does not support user transforms");
  638. #endif
  639. }
  640. #endif
  641. /* Initialize everything needed for the read.  This includes modifying
  642.  * the palette.
  643.  */
  644. void /* PRIVATE */
  645. png_init_read_transformations(png_structp png_ptr)
  646. {
  647.    png_debug(1, "in png_init_read_transformationsn");
  648. #if defined(PNG_USELESS_TESTS_SUPPORTED)
  649.    if(png_ptr != NULL)
  650. #endif
  651.   {
  652. #if defined(PNG_READ_BACKGROUND_SUPPORTED) || defined(PNG_READ_SHIFT_SUPPORTED) 
  653.  || defined(PNG_READ_GAMMA_SUPPORTED)
  654.    int color_type = png_ptr->color_type;
  655. #endif
  656. #if defined(PNG_READ_EXPAND_SUPPORTED) && defined(PNG_READ_BACKGROUND_SUPPORTED)
  657.    if ((png_ptr->transformations & PNG_BACKGROUND_EXPAND) &&
  658.        (png_ptr->transformations & PNG_EXPAND))
  659.    {
  660.       if (!(color_type & PNG_COLOR_MASK_COLOR))  /* i.e., GRAY or GRAY_ALPHA */
  661.       {
  662.          /* expand background and tRNS chunks */
  663.          switch (png_ptr->bit_depth)
  664.          {
  665.             case 1:
  666.                png_ptr->background.gray *= (png_uint_16)0xff;
  667.                png_ptr->background.red = png_ptr->background.green
  668.                  =  png_ptr->background.blue = png_ptr->background.gray;
  669.                if (!(png_ptr->transformations & PNG_EXPAND_tRNS))
  670.                {
  671.                  png_ptr->trans_values.gray *= (png_uint_16)0xff;
  672.                  png_ptr->trans_values.red = png_ptr->trans_values.green
  673.                    = png_ptr->trans_values.blue = png_ptr->trans_values.gray;
  674.                }
  675.                break;
  676.             case 2:
  677.                png_ptr->background.gray *= (png_uint_16)0x55;
  678.                png_ptr->background.red = png_ptr->background.green
  679.                  = png_ptr->background.blue = png_ptr->background.gray;
  680.                if (!(png_ptr->transformations & PNG_EXPAND_tRNS))
  681.                {
  682.                  png_ptr->trans_values.gray *= (png_uint_16)0x55;
  683.                  png_ptr->trans_values.red = png_ptr->trans_values.green
  684.                    = png_ptr->trans_values.blue = png_ptr->trans_values.gray;
  685.                }
  686.                break;
  687.             case 4:
  688.                png_ptr->background.gray *= (png_uint_16)0x11;
  689.                png_ptr->background.red = png_ptr->background.green
  690.                  = png_ptr->background.blue = png_ptr->background.gray;
  691.                if (!(png_ptr->transformations & PNG_EXPAND_tRNS))
  692.                {
  693.                  png_ptr->trans_values.gray *= (png_uint_16)0x11;
  694.                  png_ptr->trans_values.red = png_ptr->trans_values.green
  695.                    = png_ptr->trans_values.blue = png_ptr->trans_values.gray;
  696.                }
  697.                break;
  698.             case 8:
  699.             case 16:
  700.                png_ptr->background.red = png_ptr->background.green
  701.                  = png_ptr->background.blue = png_ptr->background.gray;
  702.                break;
  703.          }
  704.       }
  705.       else if (color_type == PNG_COLOR_TYPE_PALETTE)
  706.       {
  707.          png_ptr->background.red   =
  708.             png_ptr->palette[png_ptr->background.index].red;
  709.          png_ptr->background.green =
  710.             png_ptr->palette[png_ptr->background.index].green;
  711.          png_ptr->background.blue  =
  712.             png_ptr->palette[png_ptr->background.index].blue;
  713. #if defined(PNG_READ_INVERT_ALPHA_SUPPORTED)
  714.         if (png_ptr->transformations & PNG_INVERT_ALPHA)
  715.         {
  716. #if defined(PNG_READ_EXPAND_SUPPORTED)
  717.            if (!(png_ptr->transformations & PNG_EXPAND_tRNS))
  718. #endif
  719.            {
  720.            /* invert the alpha channel (in tRNS) unless the pixels are
  721.               going to be expanded, in which case leave it for later */
  722.               int i,istop;
  723.               istop=(int)png_ptr->num_trans;
  724.               for (i=0; i<istop; i++)
  725.                  png_ptr->trans[i] = (png_byte)(255 - png_ptr->trans[i]);
  726.            }
  727.         }
  728. #endif
  729.       }
  730.    }
  731. #endif
  732. #if defined(PNG_READ_BACKGROUND_SUPPORTED) && defined(PNG_READ_GAMMA_SUPPORTED)
  733.    png_ptr->background_1 = png_ptr->background;
  734. #endif
  735. #if defined(PNG_READ_GAMMA_SUPPORTED) && defined(PNG_FLOATING_POINT_SUPPORTED)
  736.    if ((color_type == PNG_COLOR_TYPE_PALETTE && png_ptr->num_trans != 0)
  737.        && (fabs(png_ptr->screen_gamma * png_ptr->gamma - 1.0)
  738.          < PNG_GAMMA_THRESHOLD))
  739.    {
  740.     int i,k;
  741.     k=0;
  742.     for (i=0; i<png_ptr->num_trans; i++)
  743.     {
  744.       if (png_ptr->trans[i] != 0 && png_ptr->trans[i] != 0xff)
  745.         k=1; /* partial transparency is present */
  746.     }
  747.     if (k == 0)
  748.       png_ptr->transformations &= (~PNG_GAMMA);
  749.    }
  750.    if ((png_ptr->transformations & (PNG_GAMMA | PNG_RGB_TO_GRAY)) &&
  751.         png_ptr->gamma != 0.0)
  752.    {
  753.       png_build_gamma_table(png_ptr);
  754. #if defined(PNG_READ_BACKGROUND_SUPPORTED)
  755.       if (png_ptr->transformations & PNG_BACKGROUND)
  756.       {
  757.          if (color_type == PNG_COLOR_TYPE_PALETTE)
  758.          {
  759.            /* could skip if no transparency and
  760.            */
  761.             png_color back, back_1;
  762.             png_colorp palette = png_ptr->palette;
  763.             int num_palette = png_ptr->num_palette;
  764.             int i;
  765.             if (png_ptr->background_gamma_type == PNG_BACKGROUND_GAMMA_FILE)
  766.             {
  767.                back.red = png_ptr->gamma_table[png_ptr->background.red];
  768.                back.green = png_ptr->gamma_table[png_ptr->background.green];
  769.                back.blue = png_ptr->gamma_table[png_ptr->background.blue];
  770.                back_1.red = png_ptr->gamma_to_1[png_ptr->background.red];
  771.                back_1.green = png_ptr->gamma_to_1[png_ptr->background.green];
  772.                back_1.blue = png_ptr->gamma_to_1[png_ptr->background.blue];
  773.             }
  774.             else
  775.             {
  776.                double g, gs;
  777.                switch (png_ptr->background_gamma_type)
  778.                {
  779.                   case PNG_BACKGROUND_GAMMA_SCREEN:
  780.                      g = (png_ptr->screen_gamma);
  781.                      gs = 1.0;
  782.                      break;
  783.                   case PNG_BACKGROUND_GAMMA_FILE:
  784.                      g = 1.0 / (png_ptr->gamma);
  785.                      gs = 1.0 / (png_ptr->gamma * png_ptr->screen_gamma);
  786.                      break;
  787.                   case PNG_BACKGROUND_GAMMA_UNIQUE:
  788.                      g = 1.0 / (png_ptr->background_gamma);
  789.                      gs = 1.0 / (png_ptr->background_gamma *
  790.                                  png_ptr->screen_gamma);
  791.                      break;
  792.                   default:
  793.                      g = 1.0;    /* back_1 */
  794.                      gs = 1.0;   /* back */
  795.                }
  796.                if ( fabs(gs - 1.0) < PNG_GAMMA_THRESHOLD)
  797.                {
  798.                   back.red   = (png_byte)png_ptr->background.red;
  799.                   back.green = (png_byte)png_ptr->background.green;
  800.                   back.blue  = (png_byte)png_ptr->background.blue;
  801.                }
  802.                else
  803.                {
  804.                   back.red = (png_byte)(pow(
  805.                      (double)png_ptr->background.red/255, gs) * 255.0 + .5);
  806.                   back.green = (png_byte)(pow(
  807.                      (double)png_ptr->background.green/255, gs) * 255.0 + .5);
  808.                   back.blue = (png_byte)(pow(
  809.                      (double)png_ptr->background.blue/255, gs) * 255.0 + .5);
  810.                }
  811.                back_1.red = (png_byte)(pow(
  812.                   (double)png_ptr->background.red/255, g) * 255.0 + .5);
  813.                back_1.green = (png_byte)(pow(
  814.                   (double)png_ptr->background.green/255, g) * 255.0 + .5);
  815.                back_1.blue = (png_byte)(pow(
  816.                   (double)png_ptr->background.blue/255, g) * 255.0 + .5);
  817.             }
  818.             for (i = 0; i < num_palette; i++)
  819.             {
  820.                if (i < (int)png_ptr->num_trans && png_ptr->trans[i] != 0xff)
  821.                {
  822.                   if (png_ptr->trans[i] == 0)
  823.                   {
  824.                      palette[i] = back;
  825.                   }
  826.                   else /* if (png_ptr->trans[i] != 0xff) */
  827.                   {
  828.                      png_byte v, w;
  829.                      v = png_ptr->gamma_to_1[palette[i].red];
  830.                      png_composite(w, v, png_ptr->trans[i], back_1.red);
  831.                      palette[i].red = png_ptr->gamma_from_1[w];
  832.                      v = png_ptr->gamma_to_1[palette[i].green];
  833.                      png_composite(w, v, png_ptr->trans[i], back_1.green);
  834.                      palette[i].green = png_ptr->gamma_from_1[w];
  835.                      v = png_ptr->gamma_to_1[palette[i].blue];
  836.                      png_composite(w, v, png_ptr->trans[i], back_1.blue);
  837.                      palette[i].blue = png_ptr->gamma_from_1[w];
  838.                   }
  839.                }
  840.                else
  841.                {
  842.                   palette[i].red = png_ptr->gamma_table[palette[i].red];
  843.                   palette[i].green = png_ptr->gamma_table[palette[i].green];
  844.                   palette[i].blue = png_ptr->gamma_table[palette[i].blue];
  845.                }
  846.             }
  847.          }
  848.          /* if (png_ptr->background_gamma_type!=PNG_BACKGROUND_GAMMA_UNKNOWN) */
  849.          else
  850.          /* color_type != PNG_COLOR_TYPE_PALETTE */
  851.          {
  852.             double m = (double)(((png_uint_32)1 << png_ptr->bit_depth) - 1);
  853.             double g = 1.0;
  854.             double gs = 1.0;
  855.             switch (png_ptr->background_gamma_type)
  856.             {
  857.                case PNG_BACKGROUND_GAMMA_SCREEN:
  858.                   g = (png_ptr->screen_gamma);
  859.                   gs = 1.0;
  860.                   break;
  861.                case PNG_BACKGROUND_GAMMA_FILE:
  862.                   g = 1.0 / (png_ptr->gamma);
  863.                   gs = 1.0 / (png_ptr->gamma * png_ptr->screen_gamma);
  864.                   break;
  865.                case PNG_BACKGROUND_GAMMA_UNIQUE:
  866.                   g = 1.0 / (png_ptr->background_gamma);
  867.                   gs = 1.0 / (png_ptr->background_gamma *
  868.                      png_ptr->screen_gamma);
  869.                   break;
  870.             }
  871.             png_ptr->background_1.gray = (png_uint_16)(pow(
  872.                (double)png_ptr->background.gray / m, g) * m + .5);
  873.             png_ptr->background.gray = (png_uint_16)(pow(
  874.                (double)png_ptr->background.gray / m, gs) * m + .5);
  875.             if ((png_ptr->background.red != png_ptr->background.green) ||
  876.                 (png_ptr->background.red != png_ptr->background.blue) ||
  877.                 (png_ptr->background.red != png_ptr->background.gray))
  878.             {
  879.                /* RGB or RGBA with color background */
  880.                png_ptr->background_1.red = (png_uint_16)(pow(
  881.                   (double)png_ptr->background.red / m, g) * m + .5);
  882.                png_ptr->background_1.green = (png_uint_16)(pow(
  883.                   (double)png_ptr->background.green / m, g) * m + .5);
  884.                png_ptr->background_1.blue = (png_uint_16)(pow(
  885.                   (double)png_ptr->background.blue / m, g) * m + .5);
  886.                png_ptr->background.red = (png_uint_16)(pow(
  887.                   (double)png_ptr->background.red / m, gs) * m + .5);
  888.                png_ptr->background.green = (png_uint_16)(pow(
  889.                   (double)png_ptr->background.green / m, gs) * m + .5);
  890.                png_ptr->background.blue = (png_uint_16)(pow(
  891.                   (double)png_ptr->background.blue / m, gs) * m + .5);
  892.             }
  893.             else
  894.             {
  895.                /* GRAY, GRAY ALPHA, RGB, or RGBA with gray background */
  896.                png_ptr->background_1.red = png_ptr->background_1.green
  897.                  = png_ptr->background_1.blue = png_ptr->background_1.gray;
  898.                png_ptr->background.red = png_ptr->background.green
  899.                  = png_ptr->background.blue = png_ptr->background.gray;
  900.             }
  901.          }
  902.       }
  903.       else
  904.       /* transformation does not include PNG_BACKGROUND */
  905. #endif /* PNG_READ_BACKGROUND_SUPPORTED */
  906.       if (color_type == PNG_COLOR_TYPE_PALETTE)
  907.       {
  908.          png_colorp palette = png_ptr->palette;
  909.          int num_palette = png_ptr->num_palette;
  910.          int i;
  911.          for (i = 0; i < num_palette; i++)
  912.          {
  913.             palette[i].red = png_ptr->gamma_table[palette[i].red];
  914.             palette[i].green = png_ptr->gamma_table[palette[i].green];
  915.             palette[i].blue = png_ptr->gamma_table[palette[i].blue];
  916.          }
  917.       }
  918.    }
  919. #if defined(PNG_READ_BACKGROUND_SUPPORTED)
  920.    else
  921. #endif
  922. #endif /* PNG_READ_GAMMA_SUPPORTED && PNG_FLOATING_POINT_SUPPORTED */
  923. #if defined(PNG_READ_BACKGROUND_SUPPORTED)
  924.    /* No GAMMA transformation */
  925.    if ((png_ptr->transformations & PNG_BACKGROUND) &&
  926.        (color_type == PNG_COLOR_TYPE_PALETTE))
  927.    {
  928.       int i;
  929.       int istop = (int)png_ptr->num_trans;
  930.       png_color back;
  931.       png_colorp palette = png_ptr->palette;
  932.       back.red   = (png_byte)png_ptr->background.red;
  933.       back.green = (png_byte)png_ptr->background.green;
  934.       back.blue  = (png_byte)png_ptr->background.blue;
  935.       for (i = 0; i < istop; i++)
  936.       {
  937.          if (png_ptr->trans[i] == 0)
  938.          {
  939.             palette[i] = back;
  940.          }
  941.          else if (png_ptr->trans[i] != 0xff)
  942.          {
  943.             /* The png_composite() macro is defined in png.h */
  944.             png_composite(palette[i].red, palette[i].red,
  945.                png_ptr->trans[i], back.red);
  946.             png_composite(palette[i].green, palette[i].green,
  947.                png_ptr->trans[i], back.green);
  948.             png_composite(palette[i].blue, palette[i].blue,
  949.                png_ptr->trans[i], back.blue);
  950.          }
  951.       }
  952.    }
  953. #endif /* PNG_READ_BACKGROUND_SUPPORTED */
  954. #if defined(PNG_READ_SHIFT_SUPPORTED)
  955.    if ((png_ptr->transformations & PNG_SHIFT) &&
  956.       (color_type == PNG_COLOR_TYPE_PALETTE))
  957.    {
  958.       png_uint_16 i;
  959.       png_uint_16 istop = png_ptr->num_palette;
  960.       int sr = 8 - png_ptr->sig_bit.red;
  961.       int sg = 8 - png_ptr->sig_bit.green;
  962.       int sb = 8 - png_ptr->sig_bit.blue;
  963.       if (sr < 0 || sr > 8)
  964.          sr = 0;
  965.       if (sg < 0 || sg > 8)
  966.          sg = 0;
  967.       if (sb < 0 || sb > 8)
  968.          sb = 0;
  969.       for (i = 0; i < istop; i++)
  970.       {
  971.          png_ptr->palette[i].red >>= sr;
  972.          png_ptr->palette[i].green >>= sg;
  973.          png_ptr->palette[i].blue >>= sb;
  974.       }
  975.    }
  976. #endif  /* PNG_READ_SHIFT_SUPPORTED */
  977.  }
  978. #if !defined(PNG_READ_GAMMA_SUPPORTED) && !defined(PNG_READ_SHIFT_SUPPORTED) 
  979.  && !defined(PNG_READ_BACKGROUND_SUPPORTED)
  980.    if(png_ptr)
  981.       return;
  982. #endif
  983. }
  984. /* Modify the info structure to reflect the transformations.  The
  985.  * info should be updated so a PNG file could be written with it,
  986.  * assuming the transformations result in valid PNG data.
  987.  */
  988. void /* PRIVATE */
  989. png_read_transform_info(png_structp png_ptr, png_infop info_ptr)
  990. {
  991.    png_debug(1, "in png_read_transform_infon");
  992. #if defined(PNG_READ_EXPAND_SUPPORTED)
  993.    if (png_ptr->transformations & PNG_EXPAND)
  994.    {
  995.       if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  996.       {
  997.          if (png_ptr->num_trans && (png_ptr->transformations & PNG_EXPAND_tRNS))
  998.             info_ptr->color_type = PNG_COLOR_TYPE_RGB_ALPHA;
  999.          else
  1000.             info_ptr->color_type = PNG_COLOR_TYPE_RGB;
  1001.          info_ptr->bit_depth = 8;
  1002.          info_ptr->num_trans = 0;
  1003.       }
  1004.       else
  1005.       {
  1006.          if (png_ptr->num_trans)
  1007.          {
  1008.             if (png_ptr->transformations & PNG_EXPAND_tRNS)
  1009.               info_ptr->color_type |= PNG_COLOR_MASK_ALPHA;
  1010.             else
  1011.               info_ptr->color_type |= PNG_COLOR_MASK_COLOR;
  1012.          }
  1013.          if (info_ptr->bit_depth < 8)
  1014.             info_ptr->bit_depth = 8;
  1015.          info_ptr->num_trans = 0;
  1016.       }
  1017.    }
  1018. #endif
  1019. #if defined(PNG_READ_BACKGROUND_SUPPORTED)
  1020.    if (png_ptr->transformations & PNG_BACKGROUND)
  1021.    {
  1022.       info_ptr->color_type &= ~PNG_COLOR_MASK_ALPHA;
  1023.       info_ptr->num_trans = 0;
  1024.       info_ptr->background = png_ptr->background;
  1025.    }
  1026. #endif
  1027. #if defined(PNG_READ_GAMMA_SUPPORTED)
  1028.    if (png_ptr->transformations & PNG_GAMMA)
  1029.    {
  1030. #ifdef PNG_FLOATING_POINT_SUPPORTED
  1031.       info_ptr->gamma = png_ptr->gamma;
  1032. #endif
  1033. #ifdef PNG_FIXED_POINT_SUPPORTED
  1034.       info_ptr->int_gamma = png_ptr->int_gamma;
  1035. #endif
  1036.    }
  1037. #endif
  1038. #if defined(PNG_READ_16_TO_8_SUPPORTED)
  1039.    if ((png_ptr->transformations & PNG_16_TO_8) && (info_ptr->bit_depth == 16))
  1040.       info_ptr->bit_depth = 8;
  1041. #endif
  1042. #if defined(PNG_READ_GRAY_TO_RGB_SUPPORTED)
  1043.    if (png_ptr->transformations & PNG_GRAY_TO_RGB)
  1044.       info_ptr->color_type |= PNG_COLOR_MASK_COLOR;
  1045. #endif
  1046. #if defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
  1047.    if (png_ptr->transformations & PNG_RGB_TO_GRAY)
  1048.       info_ptr->color_type &= ~PNG_COLOR_MASK_COLOR;
  1049. #endif
  1050. #if defined(PNG_READ_DITHER_SUPPORTED)
  1051.    if (png_ptr->transformations & PNG_DITHER)
  1052.    {
  1053.       if (((info_ptr->color_type == PNG_COLOR_TYPE_RGB) ||
  1054.          (info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)) &&
  1055.          png_ptr->palette_lookup && info_ptr->bit_depth == 8)
  1056.       {
  1057.          info_ptr->color_type = PNG_COLOR_TYPE_PALETTE;
  1058.       }
  1059.    }
  1060. #endif
  1061. #if defined(PNG_READ_PACK_SUPPORTED)
  1062.    if ((png_ptr->transformations & PNG_PACK) && (info_ptr->bit_depth < 8))
  1063.       info_ptr->bit_depth = 8;
  1064. #endif
  1065.    if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  1066.       info_ptr->channels = 1;
  1067.    else if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
  1068.       info_ptr->channels = 3;
  1069.    else
  1070.       info_ptr->channels = 1;
  1071. #if defined(PNG_READ_STRIP_ALPHA_SUPPORTED)
  1072.    if (png_ptr->flags & PNG_FLAG_STRIP_ALPHA)
  1073.       info_ptr->color_type &= ~PNG_COLOR_MASK_ALPHA;
  1074. #endif
  1075.    if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
  1076.       info_ptr->channels++;
  1077. #if defined(PNG_READ_FILLER_SUPPORTED)
  1078.    /* STRIP_ALPHA and FILLER allowed:  MASK_ALPHA bit stripped above */
  1079.    if ((png_ptr->transformations & PNG_FILLER) &&
  1080.        ((info_ptr->color_type == PNG_COLOR_TYPE_RGB) ||
  1081.        (info_ptr->color_type == PNG_COLOR_TYPE_GRAY)))
  1082.    {
  1083.       info_ptr->channels++;
  1084.       /* if adding a true alpha channel not just filler */
  1085. #if !defined(PNG_1_0_X)
  1086.       if (png_ptr->transformations & PNG_ADD_ALPHA)
  1087.         info_ptr->color_type |= PNG_COLOR_MASK_ALPHA;
  1088. #endif
  1089.    }
  1090. #endif
  1091. #if defined(PNG_USER_TRANSFORM_PTR_SUPPORTED) && 
  1092. defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
  1093.    if(png_ptr->transformations & PNG_USER_TRANSFORM)
  1094.      {
  1095.        if(info_ptr->bit_depth < png_ptr->user_transform_depth)
  1096.          info_ptr->bit_depth = png_ptr->user_transform_depth;
  1097.        if(info_ptr->channels < png_ptr->user_transform_channels)
  1098.          info_ptr->channels = png_ptr->user_transform_channels;
  1099.      }
  1100. #endif
  1101.    info_ptr->pixel_depth = (png_byte)(info_ptr->channels *
  1102.       info_ptr->bit_depth);
  1103.    info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth,info_ptr->width);
  1104. #if !defined(PNG_READ_EXPAND_SUPPORTED)
  1105.    if(png_ptr)
  1106.       return;
  1107. #endif
  1108. }
  1109. /* Transform the row.  The order of transformations is significant,
  1110.  * and is very touchy.  If you add a transformation, take care to
  1111.  * decide how it fits in with the other transformations here.
  1112.  */
  1113. void /* PRIVATE */
  1114. png_do_read_transformations(png_structp png_ptr)
  1115. {
  1116.    png_debug(1, "in png_do_read_transformationsn");
  1117. #if !defined(PNG_USELESS_TESTS_SUPPORTED)
  1118.    if (png_ptr->row_buf == NULL)
  1119.    {
  1120. #if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
  1121.       char msg[50];
  1122.       sprintf(msg, "NULL row buffer for row %ld, pass %d", png_ptr->row_number,
  1123.          png_ptr->pass);
  1124.       png_error(png_ptr, msg);
  1125. #else
  1126.       png_error(png_ptr, "NULL row buffer");
  1127. #endif
  1128.    }
  1129. #endif
  1130. #if defined(PNG_READ_EXPAND_SUPPORTED)
  1131.    if (png_ptr->transformations & PNG_EXPAND)
  1132.    {
  1133.       if (png_ptr->row_info.color_type == PNG_COLOR_TYPE_PALETTE)
  1134.       {
  1135.          png_do_expand_palette(&(png_ptr->row_info), png_ptr->row_buf + 1,
  1136.             png_ptr->palette, png_ptr->trans, png_ptr->num_trans);
  1137.       }
  1138.       else
  1139.       {
  1140.          if (png_ptr->num_trans && (png_ptr->transformations & PNG_EXPAND_tRNS))
  1141.             png_do_expand(&(png_ptr->row_info), png_ptr->row_buf + 1,
  1142.                &(png_ptr->trans_values));
  1143.          else
  1144.             png_do_expand(&(png_ptr->row_info), png_ptr->row_buf + 1,
  1145.                NULL);
  1146.       }
  1147.    }
  1148. #endif
  1149. #if defined(PNG_READ_STRIP_ALPHA_SUPPORTED)
  1150.    if (png_ptr->flags & PNG_FLAG_STRIP_ALPHA)
  1151.       png_do_strip_filler(&(png_ptr->row_info), png_ptr->row_buf + 1,
  1152.          PNG_FLAG_FILLER_AFTER | (png_ptr->flags & PNG_FLAG_STRIP_ALPHA));
  1153. #endif
  1154. #if defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
  1155.    if (png_ptr->transformations & PNG_RGB_TO_GRAY)
  1156.    {
  1157.       int rgb_error =
  1158.          png_do_rgb_to_gray(png_ptr, &(png_ptr->row_info), png_ptr->row_buf + 1);
  1159.       if(rgb_error)
  1160.       {
  1161.          png_ptr->rgb_to_gray_status=1;
  1162.          if(png_ptr->transformations == PNG_RGB_TO_GRAY_WARN)
  1163.             png_warning(png_ptr, "png_do_rgb_to_gray found nongray pixel");
  1164.          if(png_ptr->transformations == PNG_RGB_TO_GRAY_ERR)
  1165.             png_error(png_ptr, "png_do_rgb_to_gray found nongray pixel");
  1166.       }
  1167.    }
  1168. #endif
  1169. /*
  1170. From Andreas Dilger e-mail to png-implement, 26 March 1998:
  1171.   In most cases, the "simple transparency" should be done prior to doing
  1172.   gray-to-RGB, or you will have to test 3x as many bytes to check if a
  1173.   pixel is transparent.  You would also need to make sure that the
  1174.   transparency information is upgraded to RGB.
  1175.   To summarize, the current flow is:
  1176.   - Gray + simple transparency -> compare 1 or 2 gray bytes and composite
  1177.                                   with background "in place" if transparent,
  1178.                                   convert to RGB if necessary
  1179.   - Gray + alpha -> composite with gray background and remove alpha bytes,
  1180.                                   convert to RGB if necessary
  1181.   To support RGB backgrounds for gray images we need:
  1182.   - Gray + simple transparency -> convert to RGB + simple transparency, compare
  1183.                                   3 or 6 bytes and composite with background
  1184.                                   "in place" if transparent (3x compare/pixel
  1185.                                   compared to doing composite with gray bkgrnd)
  1186.   - Gray + alpha -> convert to RGB + alpha, composite with background and
  1187.                                   remove alpha bytes (3x float operations/pixel
  1188.                                   compared with composite on gray background)
  1189.   Greg's change will do this.  The reason it wasn't done before is for
  1190.   performance, as this increases the per-pixel operations.  If we would check
  1191.   in advance if the background was gray or RGB, and position the gray-to-RGB
  1192.   transform appropriately, then it would save a lot of work/time.
  1193.  */
  1194. #if defined(PNG_READ_GRAY_TO_RGB_SUPPORTED)
  1195.    /* if gray -> RGB, do so now only if background is non-gray; else do later
  1196.     * for performance reasons */
  1197.    if ((png_ptr->transformations & PNG_GRAY_TO_RGB) &&
  1198.        !(png_ptr->mode & PNG_BACKGROUND_IS_GRAY))
  1199.       png_do_gray_to_rgb(&(png_ptr->row_info), png_ptr->row_buf + 1);
  1200. #endif
  1201. #if defined(PNG_READ_BACKGROUND_SUPPORTED)
  1202.    if ((png_ptr->transformations & PNG_BACKGROUND) &&
  1203.       ((png_ptr->num_trans != 0 ) ||
  1204.       (png_ptr->color_type & PNG_COLOR_MASK_ALPHA)))
  1205.       png_do_background(&(png_ptr->row_info), png_ptr->row_buf + 1,
  1206.          &(png_ptr->trans_values), &(png_ptr->background)
  1207. #if defined(PNG_READ_GAMMA_SUPPORTED)
  1208.          , &(png_ptr->background_1),
  1209.          png_ptr->gamma_table, png_ptr->gamma_from_1,
  1210.          png_ptr->gamma_to_1, png_ptr->gamma_16_table,
  1211.          png_ptr->gamma_16_from_1, png_ptr->gamma_16_to_1,
  1212.          png_ptr->gamma_shift
  1213. #endif
  1214. );
  1215. #endif
  1216. #if defined(PNG_READ_GAMMA_SUPPORTED)
  1217.    if ((png_ptr->transformations & PNG_GAMMA) &&
  1218. #if defined(PNG_READ_BACKGROUND_SUPPORTED)
  1219.       !((png_ptr->transformations & PNG_BACKGROUND) &&
  1220.       ((png_ptr->num_trans != 0) ||
  1221.       (png_ptr->color_type & PNG_COLOR_MASK_ALPHA))) &&
  1222. #endif
  1223.       (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE))
  1224.       png_do_gamma(&(png_ptr->row_info), png_ptr->row_buf + 1,
  1225.          png_ptr->gamma_table, png_ptr->gamma_16_table,
  1226.          png_ptr->gamma_shift);
  1227. #endif
  1228. #if defined(PNG_READ_16_TO_8_SUPPORTED)
  1229.    if (png_ptr->transformations & PNG_16_TO_8)
  1230.       png_do_chop(&(png_ptr->row_info), png_ptr->row_buf + 1);
  1231. #endif
  1232. #if defined(PNG_READ_DITHER_SUPPORTED)
  1233.    if (png_ptr->transformations & PNG_DITHER)
  1234.    {
  1235.       png_do_dither((png_row_infop)&(png_ptr->row_info), png_ptr->row_buf + 1,
  1236.          png_ptr->palette_lookup, png_ptr->dither_index);
  1237.       if(png_ptr->row_info.rowbytes == (png_uint_32)0)
  1238.          png_error(png_ptr, "png_do_dither returned rowbytes=0");
  1239.    }
  1240. #endif
  1241. #if defined(PNG_READ_INVERT_SUPPORTED)
  1242.    if (png_ptr->transformations & PNG_INVERT_MONO)
  1243.       png_do_invert(&(png_ptr->row_info), png_ptr->row_buf + 1);
  1244. #endif
  1245. #if defined(PNG_READ_SHIFT_SUPPORTED)
  1246.    if (png_ptr->transformations & PNG_SHIFT)
  1247.       png_do_unshift(&(png_ptr->row_info), png_ptr->row_buf + 1,
  1248.          &(png_ptr->shift));
  1249. #endif
  1250. #if defined(PNG_READ_PACK_SUPPORTED)
  1251.    if (png_ptr->transformations & PNG_PACK)
  1252.       png_do_unpack(&(png_ptr->row_info), png_ptr->row_buf + 1);
  1253. #endif
  1254. #if defined(PNG_READ_BGR_SUPPORTED)
  1255.    if (png_ptr->transformations & PNG_BGR)
  1256.       png_do_bgr(&(png_ptr->row_info), png_ptr->row_buf + 1);
  1257. #endif
  1258. #if defined(PNG_READ_PACKSWAP_SUPPORTED)
  1259.    if (png_ptr->transformations & PNG_PACKSWAP)
  1260.       png_do_packswap(&(png_ptr->row_info), png_ptr->row_buf + 1);
  1261. #endif
  1262. #if defined(PNG_READ_GRAY_TO_RGB_SUPPORTED)
  1263.    /* if gray -> RGB, do so now only if we did not do so above */
  1264.    if ((png_ptr->transformations & PNG_GRAY_TO_RGB) &&
  1265.        (png_ptr->mode & PNG_BACKGROUND_IS_GRAY))
  1266.       png_do_gray_to_rgb(&(png_ptr->row_info), png_ptr->row_buf + 1);
  1267. #endif
  1268. #if defined(PNG_READ_FILLER_SUPPORTED)
  1269.    if (png_ptr->transformations & PNG_FILLER)
  1270.       png_do_read_filler(&(png_ptr->row_info), png_ptr->row_buf + 1,
  1271.          (png_uint_32)png_ptr->filler, png_ptr->flags);
  1272. #endif
  1273. #if defined(PNG_READ_INVERT_ALPHA_SUPPORTED)
  1274.    if (png_ptr->transformations & PNG_INVERT_ALPHA)
  1275.       png_do_read_invert_alpha(&(png_ptr->row_info), png_ptr->row_buf + 1);
  1276. #endif
  1277. #if defined(PNG_READ_SWAP_ALPHA_SUPPORTED)
  1278.    if (png_ptr->transformations & PNG_SWAP_ALPHA)
  1279.       png_do_read_swap_alpha(&(png_ptr->row_info), png_ptr->row_buf + 1);
  1280. #endif
  1281. #if defined(PNG_READ_SWAP_SUPPORTED)
  1282.    if (png_ptr->transformations & PNG_SWAP_BYTES)
  1283.       png_do_swap(&(png_ptr->row_info), png_ptr->row_buf + 1);
  1284. #endif
  1285. #if defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
  1286.    if (png_ptr->transformations & PNG_USER_TRANSFORM)
  1287.     {
  1288.       if(png_ptr->read_user_transform_fn != NULL)
  1289.         (*(png_ptr->read_user_transform_fn)) /* user read transform function */
  1290.           (png_ptr,                    /* png_ptr */
  1291.            &(png_ptr->row_info),       /* row_info:     */
  1292.              /*  png_uint_32 width;          width of row */
  1293.              /*  png_uint_32 rowbytes;       number of bytes in row */
  1294.              /*  png_byte color_type;        color type of pixels */
  1295.              /*  png_byte bit_depth;         bit depth of samples */
  1296.              /*  png_byte channels;          number of channels (1-4) */
  1297.              /*  png_byte pixel_depth;       bits per pixel (depth*channels) */
  1298.            png_ptr->row_buf + 1);      /* start of pixel data for row */
  1299. #if defined(PNG_USER_TRANSFORM_PTR_SUPPORTED)
  1300.       if(png_ptr->user_transform_depth)
  1301.          png_ptr->row_info.bit_depth = png_ptr->user_transform_depth;
  1302.       if(png_ptr->user_transform_channels)
  1303.          png_ptr->row_info.channels = png_ptr->user_transform_channels;
  1304. #endif
  1305.       png_ptr->row_info.pixel_depth = (png_byte)(png_ptr->row_info.bit_depth *
  1306.          png_ptr->row_info.channels);
  1307.       png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
  1308.          png_ptr->row_info.width);
  1309.    }
  1310. #endif
  1311. }
  1312. #if defined(PNG_READ_PACK_SUPPORTED)
  1313. /* Unpack pixels of 1, 2, or 4 bits per pixel into 1 byte per pixel,
  1314.  * without changing the actual values.  Thus, if you had a row with
  1315.  * a bit depth of 1, you would end up with bytes that only contained
  1316.  * the numbers 0 or 1.  If you would rather they contain 0 and 255, use
  1317.  * png_do_shift() after this.
  1318.  */
  1319. void /* PRIVATE */
  1320. png_do_unpack(png_row_infop row_info, png_bytep row)
  1321. {
  1322.    png_debug(1, "in png_do_unpackn");
  1323. #if defined(PNG_USELESS_TESTS_SUPPORTED)
  1324.    if (row != NULL && row_info != NULL && row_info->bit_depth < 8)
  1325. #else
  1326.    if (row_info->bit_depth < 8)
  1327. #endif
  1328.    {
  1329.       png_uint_32 i;
  1330.       png_uint_32 row_width=row_info->width;
  1331.       switch (row_info->bit_depth)
  1332.       {
  1333.          case 1:
  1334.          {
  1335.             png_bytep sp = row + (png_size_t)((row_width - 1) >> 3);
  1336.             png_bytep dp = row + (png_size_t)row_width - 1;
  1337.             png_uint_32 shift = 7 - (int)((row_width + 7) & 0x07);
  1338.             for (i = 0; i < row_width; i++)
  1339.             {
  1340.                *dp = (png_byte)((*sp >> shift) & 0x01);
  1341.                if (shift == 7)
  1342.                {
  1343.                   shift = 0;
  1344.                   sp--;
  1345.                }
  1346.                else
  1347.                   shift++;
  1348.                dp--;
  1349.             }
  1350.             break;
  1351.          }
  1352.          case 2:
  1353.          {
  1354.             png_bytep sp = row + (png_size_t)((row_width - 1) >> 2);
  1355.             png_bytep dp = row + (png_size_t)row_width - 1;
  1356.             png_uint_32 shift = (int)((3 - ((row_width + 3) & 0x03)) << 1);
  1357.             for (i = 0; i < row_width; i++)
  1358.             {
  1359.                *dp = (png_byte)((*sp >> shift) & 0x03);
  1360.                if (shift == 6)
  1361.                {
  1362.                   shift = 0;
  1363.                   sp--;
  1364.                }
  1365.                else
  1366.                   shift += 2;
  1367.                dp--;
  1368.             }
  1369.             break;
  1370.          }
  1371.          case 4:
  1372.          {
  1373.             png_bytep sp = row + (png_size_t)((row_width - 1) >> 1);
  1374.             png_bytep dp = row + (png_size_t)row_width - 1;
  1375.             png_uint_32 shift = (int)((1 - ((row_width + 1) & 0x01)) << 2);
  1376.             for (i = 0; i < row_width; i++)
  1377.             {
  1378.                *dp = (png_byte)((*sp >> shift) & 0x0f);
  1379.                if (shift == 4)
  1380.                {
  1381.                   shift = 0;
  1382.                   sp--;
  1383.                }
  1384.                else
  1385.                   shift = 4;
  1386.                dp--;
  1387.             }
  1388.             break;
  1389.          }
  1390.       }
  1391.       row_info->bit_depth = 8;
  1392.       row_info->pixel_depth = (png_byte)(8 * row_info->channels);
  1393.       row_info->rowbytes = row_width * row_info->channels;
  1394.    }
  1395. }
  1396. #endif
  1397. #if defined(PNG_READ_SHIFT_SUPPORTED)
  1398. /* Reverse the effects of png_do_shift.  This routine merely shifts the
  1399.  * pixels back to their significant bits values.  Thus, if you have
  1400.  * a row of bit depth 8, but only 5 are significant, this will shift
  1401.  * the values back to 0 through 31.
  1402.  */
  1403. void /* PRIVATE */
  1404. png_do_unshift(png_row_infop row_info, png_bytep row, png_color_8p sig_bits)
  1405. {
  1406.    png_debug(1, "in png_do_unshiftn");
  1407.    if (
  1408. #if defined(PNG_USELESS_TESTS_SUPPORTED)
  1409.        row != NULL && row_info != NULL && sig_bits != NULL &&
  1410. #endif
  1411.        row_info->color_type != PNG_COLOR_TYPE_PALETTE)
  1412.    {
  1413.       int shift[4];
  1414.       int channels = 0;
  1415.       int c;
  1416.       png_uint_16 value = 0;
  1417.       png_uint_32 row_width = row_info->width;
  1418.       if (row_info->color_type & PNG_COLOR_MASK_COLOR)
  1419.       {
  1420.          shift[channels++] = row_info->bit_depth - sig_bits->red;
  1421.          shift[channels++] = row_info->bit_depth - sig_bits->green;
  1422.          shift[channels++] = row_info->bit_depth - sig_bits->blue;
  1423.       }
  1424.       else
  1425.       {
  1426.          shift[channels++] = row_info->bit_depth - sig_bits->gray;
  1427.       }
  1428.       if (row_info->color_type & PNG_COLOR_MASK_ALPHA)
  1429.       {
  1430.          shift[channels++] = row_info->bit_depth - sig_bits->alpha;
  1431.       }
  1432.       for (c = 0; c < channels; c++)
  1433.       {
  1434.          if (shift[c] <= 0)
  1435.             shift[c] = 0;
  1436.          else
  1437.             value = 1;
  1438.       }
  1439.       if (!value)
  1440.          return;
  1441.       switch (row_info->bit_depth)
  1442.       {
  1443.          case 2:
  1444.          {
  1445.             png_bytep bp;
  1446.             png_uint_32 i;
  1447.             png_uint_32 istop = row_info->rowbytes;
  1448.             for (bp = row, i = 0; i < istop; i++)
  1449.             {
  1450.                *bp >>= 1;
  1451.                *bp++ &= 0x55;
  1452.             }
  1453.             break;
  1454.          }
  1455.          case 4:
  1456.          {
  1457.             png_bytep bp = row;
  1458.             png_uint_32 i;
  1459.             png_uint_32 istop = row_info->rowbytes;
  1460.             png_byte mask = (png_byte)((((int)0xf0 >> shift[0]) & (int)0xf0) |
  1461.                (png_byte)((int)0xf >> shift[0]));
  1462.             for (i = 0; i < istop; i++)
  1463.             {
  1464.                *bp >>= shift[0];
  1465.                *bp++ &= mask;
  1466.             }
  1467.             break;
  1468.          }
  1469.          case 8:
  1470.          {
  1471.             png_bytep bp = row;
  1472.             png_uint_32 i;
  1473.             png_uint_32 istop = row_width * channels;
  1474.             for (i = 0; i < istop; i++)
  1475.             {
  1476.                *bp++ >>= shift[i%channels];
  1477.             }
  1478.             break;
  1479.          }
  1480.          case 16:
  1481.          {
  1482.             png_bytep bp = row;
  1483.             png_uint_32 i;
  1484.             png_uint_32 istop = channels * row_width;
  1485.             for (i = 0; i < istop; i++)
  1486.             {
  1487.                value = (png_uint_16)((*bp << 8) + *(bp + 1));
  1488.                value >>= shift[i%channels];
  1489.                *bp++ = (png_byte)(value >> 8);
  1490.                *bp++ = (png_byte)(value & 0xff);
  1491.             }
  1492.             break;
  1493.          }
  1494.       }
  1495.    }
  1496. }
  1497. #endif
  1498. #if defined(PNG_READ_16_TO_8_SUPPORTED)
  1499. /* chop rows of bit depth 16 down to 8 */
  1500. void /* PRIVATE */
  1501. png_do_chop(png_row_infop row_info, png_bytep row)
  1502. {
  1503.    png_debug(1, "in png_do_chopn");
  1504. #if defined(PNG_USELESS_TESTS_SUPPORTED)
  1505.    if (row != NULL && row_info != NULL && row_info->bit_depth == 16)
  1506. #else
  1507.    if (row_info->bit_depth == 16)
  1508. #endif
  1509.    {
  1510.       png_bytep sp = row;
  1511.       png_bytep dp = row;
  1512.       png_uint_32 i;
  1513.       png_uint_32 istop = row_info->width * row_info->channels;
  1514.       for (i = 0; i<istop; i++, sp += 2, dp++)
  1515.       {
  1516. #if defined(PNG_READ_16_TO_8_ACCURATE_SCALE_SUPPORTED)
  1517.       /* This does a more accurate scaling of the 16-bit color
  1518.        * value, rather than a simple low-byte truncation.
  1519.        *
  1520.        * What the ideal calculation should be:
  1521.        *   *dp = (((((png_uint_32)(*sp) << 8) |
  1522.        *          (png_uint_32)(*(sp + 1))) * 255 + 127) / (png_uint_32)65535L;
  1523.        *
  1524.        * GRR: no, I think this is what it really should be:
  1525.        *   *dp = (((((png_uint_32)(*sp) << 8) |
  1526.        *           (png_uint_32)(*(sp + 1))) + 128L) / (png_uint_32)257L;
  1527.        *
  1528.        * GRR: here's the exact calculation with shifts:
  1529.        *   temp = (((png_uint_32)(*sp) << 8) | (png_uint_32)(*(sp + 1))) + 128L;
  1530.        *   *dp = (temp - (temp >> 8)) >> 8;
  1531.        *
  1532.        * Approximate calculation with shift/add instead of multiply/divide:
  1533.        *   *dp = ((((png_uint_32)(*sp) << 8) |
  1534.        *          (png_uint_32)((int)(*(sp + 1)) - *sp)) + 128) >> 8;
  1535.        *
  1536.        * What we actually do to avoid extra shifting and conversion:
  1537.        */
  1538.          *dp = *sp + ((((int)(*(sp + 1)) - *sp) > 128) ? 1 : 0);
  1539. #else
  1540.        /* Simply discard the low order byte */
  1541.          *dp = *sp;
  1542. #endif
  1543.       }
  1544.       row_info->bit_depth = 8;
  1545.       row_info->pixel_depth = (png_byte)(8 * row_info->channels);
  1546.       row_info->rowbytes = row_info->width * row_info->channels;
  1547.    }
  1548. }
  1549. #endif
  1550. #if defined(PNG_READ_SWAP_ALPHA_SUPPORTED)
  1551. void /* PRIVATE */
  1552. png_do_read_swap_alpha(png_row_infop row_info, png_bytep row)
  1553. {
  1554.    png_debug(1, "in png_do_read_swap_alphan");
  1555. #if defined(PNG_USELESS_TESTS_SUPPORTED)
  1556.    if (row != NULL && row_info != NULL)
  1557. #endif
  1558.    {
  1559.       png_uint_32 row_width = row_info->width;
  1560.       if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
  1561.       {
  1562.          /* This converts from RGBA to ARGB */
  1563.          if (row_info->bit_depth == 8)
  1564.          {
  1565.             png_bytep sp = row + row_info->rowbytes;
  1566.             png_bytep dp = sp;
  1567.             png_byte save;
  1568.             png_uint_32 i;
  1569.             for (i = 0; i < row_width; i++)
  1570.             {
  1571.                save = *(--sp);
  1572.                *(--dp) = *(--sp);
  1573.                *(--dp) = *(--sp);
  1574.                *(--dp) = *(--sp);
  1575.                *(--dp) = save;
  1576.             }
  1577.          }
  1578.          /* This converts from RRGGBBAA to AARRGGBB */
  1579.          else
  1580.          {
  1581.             png_bytep sp = row + row_info->rowbytes;
  1582.             png_bytep dp = sp;
  1583.             png_byte save[2];
  1584.             png_uint_32 i;
  1585.             for (i = 0; i < row_width; i++)
  1586.             {
  1587.                save[0] = *(--sp);
  1588.                save[1] = *(--sp);
  1589.                *(--dp) = *(--sp);
  1590.                *(--dp) = *(--sp);
  1591.                *(--dp) = *(--sp);
  1592.                *(--dp) = *(--sp);
  1593.                *(--dp) = *(--sp);
  1594.                *(--dp) = *(--sp);
  1595.                *(--dp) = save[0];
  1596.                *(--dp) = save[1];
  1597.             }
  1598.          }
  1599.       }
  1600.       else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
  1601.       {
  1602.          /* This converts from GA to AG */
  1603.          if (row_info->bit_depth == 8)
  1604.          {
  1605.             png_bytep sp = row + row_info->rowbytes;
  1606.             png_bytep dp = sp;
  1607.             png_byte save;
  1608.             png_uint_32 i;
  1609.             for (i = 0; i < row_width; i++)
  1610.             {
  1611.                save = *(--sp);
  1612.                *(--dp) = *(--sp);
  1613.                *(--dp) = save;
  1614.             }
  1615.          }
  1616.          /* This converts from GGAA to AAGG */
  1617.          else
  1618.          {
  1619.             png_bytep sp = row + row_info->rowbytes;
  1620.             png_bytep dp = sp;
  1621.             png_byte save[2];
  1622.             png_uint_32 i;
  1623.             for (i = 0; i < row_width; i++)
  1624.             {
  1625.                save[0] = *(--sp);
  1626.                save[1] = *(--sp);
  1627.                *(--dp) = *(--sp);
  1628.                *(--dp) = *(--sp);
  1629.                *(--dp) = save[0];
  1630.                *(--dp) = save[1];
  1631.             }
  1632.          }
  1633.       }
  1634.    }
  1635. }
  1636. #endif
  1637. #if defined(PNG_READ_INVERT_ALPHA_SUPPORTED)
  1638. void /* PRIVATE */
  1639. png_do_read_invert_alpha(png_row_infop row_info, png_bytep row)
  1640. {
  1641.    png_debug(1, "in png_do_read_invert_alphan");
  1642. #if defined(PNG_USELESS_TESTS_SUPPORTED)
  1643.    if (row != NULL && row_info != NULL)
  1644. #endif
  1645.    {
  1646.       png_uint_32 row_width = row_info->width;
  1647.       if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
  1648.       {
  1649.          /* This inverts the alpha channel in RGBA */
  1650.          if (row_info->bit_depth == 8)
  1651.          {
  1652.             png_bytep sp = row + row_info->rowbytes;
  1653.             png_bytep dp = sp;
  1654.             png_uint_32 i;
  1655.             for (i = 0; i < row_width; i++)
  1656.             {
  1657.                *(--dp) = (png_byte)(255 - *(--sp));
  1658. /*             This does nothing:
  1659.                *(--dp) = *(--sp);
  1660.                *(--dp) = *(--sp);
  1661.                *(--dp) = *(--sp);
  1662.                We can replace it with:
  1663. */
  1664.                sp-=3;
  1665.                dp=sp;
  1666.             }
  1667.          }
  1668.          /* This inverts the alpha channel in RRGGBBAA */
  1669.          else
  1670.          {
  1671.             png_bytep sp = row + row_info->rowbytes;
  1672.             png_bytep dp = sp;
  1673.             png_uint_32 i;
  1674.             for (i = 0; i < row_width; i++)
  1675.             {
  1676.                *(--dp) = (png_byte)(255 - *(--sp));
  1677.                *(--dp) = (png_byte)(255 - *(--sp));
  1678. /*             This does nothing:
  1679.                *(--dp) = *(--sp);
  1680.                *(--dp) = *(--sp);
  1681.                *(--dp) = *(--sp);
  1682.                *(--dp) = *(--sp);
  1683.                *(--dp) = *(--sp);
  1684.                *(--dp) = *(--sp);
  1685.                We can replace it with:
  1686. */
  1687.                sp-=6;
  1688.                dp=sp;
  1689.             }
  1690.          }
  1691.       }
  1692.       else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
  1693.       {
  1694.          /* This inverts the alpha channel in GA */
  1695.          if (row_info->bit_depth == 8)
  1696.          {
  1697.             png_bytep sp = row + row_info->rowbytes;
  1698.             png_bytep dp = sp;
  1699.             png_uint_32 i;
  1700.             for (i = 0; i < row_width; i++)
  1701.             {
  1702.                *(--dp) = (png_byte)(255 - *(--sp));
  1703.                *(--dp) = *(--sp);
  1704.             }
  1705.          }
  1706.          /* This inverts the alpha channel in GGAA */
  1707.          else
  1708.          {
  1709.             png_bytep sp  = row + row_info->rowbytes;
  1710.             png_bytep dp = sp;
  1711.             png_uint_32 i;
  1712.             for (i = 0; i < row_width; i++)
  1713.             {
  1714.                *(--dp) = (png_byte)(255 - *(--sp));
  1715.                *(--dp) = (png_byte)(255 - *(--sp));
  1716. /*
  1717.                *(--dp) = *(--sp);
  1718.                *(--dp) = *(--sp);
  1719. */
  1720.                sp-=2;
  1721.                dp=sp;
  1722.             }
  1723.          }
  1724.       }
  1725.    }
  1726. }
  1727. #endif
  1728. #if defined(PNG_READ_FILLER_SUPPORTED)
  1729. /* Add filler channel if we have RGB color */
  1730. void /* PRIVATE */
  1731. png_do_read_filler(png_row_infop row_info, png_bytep row,
  1732.    png_uint_32 filler, png_uint_32 flags)
  1733. {
  1734.    png_uint_32 i;
  1735.    png_uint_32 row_width = row_info->width;
  1736.    png_byte hi_filler = (png_byte)((filler>>8) & 0xff);
  1737.    png_byte lo_filler = (png_byte)(filler & 0xff);
  1738.    png_debug(1, "in png_do_read_fillern");
  1739.    if (
  1740. #if defined(PNG_USELESS_TESTS_SUPPORTED)
  1741.        row != NULL  && row_info != NULL &&
  1742. #endif
  1743.        row_info->color_type == PNG_COLOR_TYPE_GRAY)
  1744.    {
  1745.       if(row_info->bit_depth == 8)
  1746.       {
  1747.          /* This changes the data from G to GX */
  1748.          if (flags & PNG_FLAG_FILLER_AFTER)
  1749.          {
  1750.             png_bytep sp = row + (png_size_t)row_width;
  1751.             png_bytep dp =  sp + (png_size_t)row_width;
  1752.             for (i = 1; i < row_width; i++)
  1753.             {
  1754.                *(--dp) = lo_filler;
  1755.                *(--dp) = *(--sp);
  1756.             }
  1757.             *(--dp) = lo_filler;
  1758.             row_info->channels = 2;
  1759.             row_info->pixel_depth = 16;
  1760.             row_info->rowbytes = row_width * 2;
  1761.          }
  1762.       /* This changes the data from G to XG */
  1763.          else
  1764.          {
  1765.             png_bytep sp = row + (png_size_t)row_width;
  1766.             png_bytep dp = sp  + (png_size_t)row_width;
  1767.             for (i = 0; i < row_width; i++)
  1768.             {
  1769.                *(--dp) = *(--sp);
  1770.                *(--dp) = lo_filler;
  1771.             }
  1772.             row_info->channels = 2;
  1773.             row_info->pixel_depth = 16;
  1774.             row_info->rowbytes = row_width * 2;
  1775.          }
  1776.       }
  1777.       else if(row_info->bit_depth == 16)
  1778.       {
  1779.          /* This changes the data from GG to GGXX */
  1780.          if (flags & PNG_FLAG_FILLER_AFTER)
  1781.          {
  1782.             png_bytep sp = row + (png_size_t)row_width * 2;
  1783.             png_bytep dp = sp  + (png_size_t)row_width * 2;
  1784.             for (i = 1; i < row_width; i++)
  1785.             {
  1786.                *(--dp) = hi_filler;
  1787.                *(--dp) = lo_filler;
  1788.                *(--dp) = *(--sp);
  1789.                *(--dp) = *(--sp);
  1790.             }
  1791.             *(--dp) = hi_filler;
  1792.             *(--dp) = lo_filler;
  1793.             row_info->channels = 2;
  1794.             row_info->pixel_depth = 32;
  1795.             row_info->rowbytes = row_width * 4;
  1796.          }
  1797.          /* This changes the data from GG to XXGG */
  1798.          else
  1799.          {
  1800.             png_bytep sp = row + (png_size_t)row_width * 2;
  1801.             png_bytep dp = sp  + (png_size_t)row_width * 2;
  1802.             for (i = 0; i < row_width; i++)
  1803.             {
  1804.                *(--dp) = *(--sp);
  1805.                *(--dp) = *(--sp);
  1806.                *(--dp) = hi_filler;
  1807.                *(--dp) = lo_filler;
  1808.             }
  1809.             row_info->channels = 2;
  1810.             row_info->pixel_depth = 32;
  1811.             row_info->rowbytes = row_width * 4;
  1812.          }
  1813.       }
  1814.    } /* COLOR_TYPE == GRAY */
  1815.    else if (row_info->color_type == PNG_COLOR_TYPE_RGB)
  1816.    {
  1817.       if(row_info->bit_depth == 8)
  1818.       {
  1819.          /* This changes the data from RGB to RGBX */
  1820.          if (flags & PNG_FLAG_FILLER_AFTER)
  1821.          {
  1822.             png_bytep sp = row + (png_size_t)row_width * 3;
  1823.             png_bytep dp = sp  + (png_size_t)row_width;
  1824.             for (i = 1; i < row_width; i++)
  1825.             {
  1826.                *(--dp) = lo_filler;
  1827.                *(--dp) = *(--sp);
  1828.                *(--dp) = *(--sp);
  1829.                *(--dp) = *(--sp);
  1830.             }
  1831.             *(--dp) = lo_filler;
  1832.             row_info->channels = 4;
  1833.             row_info->pixel_depth = 32;
  1834.             row_info->rowbytes = row_width * 4;
  1835.          }
  1836.       /* This changes the data from RGB to XRGB */
  1837.          else
  1838.          {
  1839.             png_bytep sp = row + (png_size_t)row_width * 3;
  1840.             png_bytep dp = sp + (png_size_t)row_width;
  1841.             for (i = 0; i < row_width; i++)
  1842.             {
  1843.                *(--dp) = *(--sp);
  1844.                *(--dp) = *(--sp);
  1845.                *(--dp) = *(--sp);
  1846.                *(--dp) = lo_filler;
  1847.             }
  1848.             row_info->channels = 4;
  1849.             row_info->pixel_depth = 32;
  1850.             row_info->rowbytes = row_width * 4;
  1851.          }
  1852.       }
  1853.       else if(row_info->bit_depth == 16)
  1854.       {
  1855.          /* This changes the data from RRGGBB to RRGGBBXX */
  1856.          if (flags & PNG_FLAG_FILLER_AFTER)
  1857.          {
  1858.             png_bytep sp = row + (png_size_t)row_width * 6;
  1859.             png_bytep dp = sp  + (png_size_t)row_width * 2;
  1860.             for (i = 1; i < row_width; i++)
  1861.             {
  1862.                *(--dp) = hi_filler;
  1863.                *(--dp) = lo_filler;
  1864.                *(--dp) = *(--sp);
  1865.                *(--dp) = *(--sp);
  1866.                *(--dp) = *(--sp);
  1867.                *(--dp) = *(--sp);
  1868.                *(--dp) = *(--sp);
  1869.                *(--dp) = *(--sp);
  1870.             }
  1871.             *(--dp) = hi_filler;
  1872.             *(--dp) = lo_filler;
  1873.             row_info->channels = 4;
  1874.             row_info->pixel_depth = 64;
  1875.             row_info->rowbytes = row_width * 8;
  1876.          }
  1877.          /* This changes the data from RRGGBB to XXRRGGBB */
  1878.          else
  1879.          {
  1880.             png_bytep sp = row + (png_size_t)row_width * 6;
  1881.             png_bytep dp = sp  + (png_size_t)row_width * 2;
  1882.             for (i = 0; i < row_width; i++)
  1883.             {
  1884.                *(--dp) = *(--sp);
  1885.                *(--dp) = *(--sp);
  1886.                *(--dp) = *(--sp);
  1887.                *(--dp) = *(--sp);
  1888.                *(--dp) = *(--sp);
  1889.                *(--dp) = *(--sp);
  1890.                *(--dp) = hi_filler;
  1891.                *(--dp) = lo_filler;
  1892.             }
  1893.             row_info->channels = 4;
  1894.             row_info->pixel_depth = 64;
  1895.             row_info->rowbytes = row_width * 8;
  1896.          }
  1897.       }
  1898.    } /* COLOR_TYPE == RGB */
  1899. }
  1900. #endif
  1901. #if defined(PNG_READ_GRAY_TO_RGB_SUPPORTED)
  1902. /* expand grayscale files to RGB, with or without alpha */
  1903. void /* PRIVATE */
  1904. png_do_gray_to_rgb(png_row_infop row_info, png_bytep row)
  1905. {
  1906.    png_uint_32 i;
  1907.    png_uint_32 row_width = row_info->width;
  1908.    png_debug(1, "in png_do_gray_to_rgbn");
  1909.    if (row_info->bit_depth >= 8 &&
  1910. #if defined(PNG_USELESS_TESTS_SUPPORTED)
  1911.        row != NULL && row_info != NULL &&
  1912. #endif
  1913.       !(row_info->color_type & PNG_COLOR_MASK_COLOR))
  1914.    {
  1915.       if (row_info->color_type == PNG_COLOR_TYPE_GRAY)
  1916.       {
  1917.          if (row_info->bit_depth == 8)
  1918.          {
  1919.             png_bytep sp = row + (png_size_t)row_width - 1;
  1920.             png_bytep dp = sp  + (png_size_t)row_width * 2;
  1921.             for (i = 0; i < row_width; i++)
  1922.             {
  1923.                *(dp--) = *sp;
  1924.                *(dp--) = *sp;
  1925.                *(dp--) = *(sp--);
  1926.             }
  1927.          }
  1928.          else
  1929.          {
  1930.             png_bytep sp = row + (png_size_t)row_width * 2 - 1;
  1931.             png_bytep dp = sp  + (png_size_t)row_width * 4;
  1932.             for (i = 0; i < row_width; i++)
  1933.             {
  1934.                *(dp--) = *sp;
  1935.                *(dp--) = *(sp - 1);
  1936.                *(dp--) = *sp;
  1937.                *(dp--) = *(sp - 1);
  1938.                *(dp--) = *(sp--);
  1939.                *(dp--) = *(sp--);
  1940.             }
  1941.          }