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

图片显示

开发平台:

Visual C++

  1. /* pngwtran.c - transforms the data in a row for png writers
  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. /* transform the data according to the users wishes.  The order of
  10.    transformations is significant. */
  11. void
  12. png_do_write_transformations(png_structp png_ptr)
  13. {
  14. #if defined(PNG_WRITE_FILLER_SUPPORTED)
  15.    if (png_ptr->transformations & PNG_FILLER)
  16.       png_do_write_filler(&(png_ptr->row_info), png_ptr->row_buf + 1,
  17.          png_ptr->flags);
  18. #endif
  19. #if defined(PNG_WRITE_PACK_SUPPORTED)
  20.    if (png_ptr->transformations & PNG_PACK)
  21.       png_do_pack(&(png_ptr->row_info), png_ptr->row_buf + 1,
  22.          png_ptr->bit_depth);
  23. #endif
  24. #if defined(PNG_WRITE_SHIFT_SUPPORTED)
  25.    if (png_ptr->transformations & PNG_SHIFT)
  26.       png_do_shift(&(png_ptr->row_info), png_ptr->row_buf + 1,
  27.          &(png_ptr->shift));
  28. #endif
  29. #if defined(PNG_WRITE_SWAP_SUPPORTED)
  30.    if (png_ptr->transformations & PNG_SWAP_BYTES)
  31.       png_do_swap(&(png_ptr->row_info), png_ptr->row_buf + 1);
  32. #endif
  33. #if defined(PNG_WRITE_BGR_SUPPORTED)
  34.    if (png_ptr->transformations & PNG_BGR)
  35.       png_do_bgr(&(png_ptr->row_info), png_ptr->row_buf + 1);
  36. #endif
  37. #if defined(PNG_WRITE_INVERT_SUPPORTED)
  38.    if (png_ptr->transformations & PNG_INVERT_MONO)
  39.       png_do_invert(&(png_ptr->row_info), png_ptr->row_buf + 1);
  40. #endif
  41. }
  42. #if defined(PNG_WRITE_PACK_SUPPORTED)
  43. /* pack pixels into bytes.  Pass the true bit depth in bit_depth.  The
  44.    row_info bit depth should be 8 (one pixel per byte).  The channels
  45.    should be 1 (this only happens on grayscale and paletted images) */
  46. void
  47. png_do_pack(png_row_infop row_info, png_bytep row, png_byte bit_depth)
  48. {
  49.    if (row_info && row && row_info->bit_depth == 8 &&
  50.       row_info->channels == 1)
  51.    {
  52.       switch (bit_depth)
  53.       {
  54.          case 1:
  55.          {
  56.             png_bytep sp;
  57.             png_bytep dp;
  58.             int mask;
  59.             png_int_32 i;
  60.             int v;
  61.             sp = row;
  62.             dp = row;
  63.             mask = 0x80;
  64.             v = 0;
  65.             for (i = 0; i < row_info->width; i++)
  66.             {
  67.                if (*sp)
  68.                   v |= mask;
  69.                sp++;
  70.                if (mask > 1)
  71.                   mask >>= 1;
  72.                else
  73.                {
  74.                   mask = 0x80;
  75.                   *dp = (png_byte)v;
  76.                   dp++;
  77.                   v = 0;
  78.                }
  79.             }
  80.             if (mask != 0x80)
  81.                *dp = (png_byte)v;
  82.             break;
  83.          }
  84.          case 2:
  85.          {
  86.             png_bytep sp;
  87.             png_bytep dp;
  88.             int shift;
  89.             png_int_32 i;
  90.             int v;
  91.             png_byte value;
  92.             sp = row;
  93.             dp = row;
  94.             shift = 6;
  95.             v = 0;
  96.             for (i = 0; i < row_info->width; i++)
  97.             {
  98.                value = (png_byte)(*sp & 0x3);
  99.                v |= (value << shift);
  100.                if (shift == 0)
  101.                {
  102.                   shift = 6;
  103.                   *dp = (png_byte)v;
  104.                   dp++;
  105.                   v = 0;
  106.                }
  107.                else
  108.                   shift -= 2;
  109.                sp++;
  110.             }
  111.             if (shift != 6)
  112.                *dp = (png_byte)v;
  113.             break;
  114.          }
  115.          case 4:
  116.          {
  117.             png_bytep sp;
  118.             png_bytep dp;
  119.             int shift;
  120.             png_int_32 i;
  121.             int v;
  122.             png_byte value;
  123.             sp = row;
  124.             dp = row;
  125.             shift = 4;
  126.             v = 0;
  127.             for (i = 0; i < row_info->width; i++)
  128.             {
  129.                value = (png_byte)(*sp & 0xf);
  130.                v |= (value << shift);
  131.                if (shift == 0)
  132.                {
  133.                   shift = 4;
  134.                   *dp = (png_byte)v;
  135.                   dp++;
  136.                   v = 0;
  137.                }
  138.                else
  139.                   shift -= 4;
  140.                sp++;
  141.             }
  142.             if (shift != 4)
  143.                *dp = (png_byte)v;
  144.             break;
  145.          }
  146.       }
  147.       row_info->bit_depth = bit_depth;
  148.       row_info->pixel_depth = (png_uint_16)(bit_depth * row_info->channels);
  149.       row_info->rowbytes =
  150.          ((row_info->width * row_info->pixel_depth + 7) >> 3);
  151.    }
  152. }
  153. #endif
  154. #if defined(PNG_WRITE_SHIFT_SUPPORTED)
  155. /* shift pixel values to take advantage of whole range.  Pass the
  156.    true number of bits in bit_depth.  The row should be packed
  157.    according to row_info->bit_depth.  Thus, if you had a row of
  158.    bit depth 4, but the pixels only had values from 0 to 7, you
  159.    would pass 3 as bit_depth, and this routine would translate the
  160.    data to 0 to 15. */
  161. void
  162. png_do_shift(png_row_infop row_info, png_bytep row, png_color_8p bit_depth)
  163. {
  164.    if (row && row_info &&
  165.       row_info->color_type != PNG_COLOR_TYPE_PALETTE)
  166.    {
  167.       int shift_start[4], shift_dec[4];
  168.       int channels;
  169.       channels = 0;
  170.       if (row_info->color_type & PNG_COLOR_MASK_COLOR)
  171.       {
  172.          shift_start[channels] = row_info->bit_depth - bit_depth->red;
  173.          shift_dec[channels] = bit_depth->red;
  174.          channels++;
  175.          shift_start[channels] = row_info->bit_depth - bit_depth->green;
  176.          shift_dec[channels] = bit_depth->green;
  177.          channels++;
  178.          shift_start[channels] = row_info->bit_depth - bit_depth->blue;
  179.          shift_dec[channels] = bit_depth->blue;
  180.          channels++;
  181.       }
  182.       else
  183.       {
  184.          shift_start[channels] = row_info->bit_depth - bit_depth->gray;
  185.          shift_dec[channels] = bit_depth->gray;
  186.          channels++;
  187.       }
  188.       if (row_info->color_type & PNG_COLOR_MASK_ALPHA)
  189.       {
  190.          shift_start[channels] = row_info->bit_depth - bit_depth->alpha;
  191.          shift_dec[channels] = bit_depth->alpha;
  192.          channels++;
  193.       }
  194.       /* with low row dephts, could only be grayscale, so one channel */
  195.       if (row_info->bit_depth < 8)
  196.       {
  197.          png_bytep bp;
  198.          png_uint_32 i;
  199.          int j;
  200.          png_byte mask;
  201.          if (bit_depth->gray == 1 && row_info->bit_depth == 2)
  202.             mask = 0x55;
  203.          else if (row_info->bit_depth == 4 && bit_depth->gray == 3)
  204.             mask = 0x11;
  205.          else
  206.             mask = 0xff;
  207.          for (bp = row, i = 0; i < row_info->rowbytes; i++, bp++)
  208.          {
  209.             int v;
  210.             v = *bp;
  211.             *bp = 0;
  212.             for (j = shift_start[0]; j > -shift_dec[0]; j -= shift_dec[0])
  213.             {
  214.                if (j > 0)
  215.                   *bp |= (png_byte)((v << j) & 0xff);
  216.                else
  217.                   *bp |= (png_byte)((v >> (-j)) & mask);
  218.             }
  219.          }
  220.       }
  221.       else if (row_info->bit_depth == 8)
  222.       {
  223.          png_bytep bp;
  224.          png_uint_32 i;
  225.          int j;
  226.          for (bp = row, i = 0; i < row_info->width; i++)
  227.          {
  228.             int c;
  229.             for (c = 0; c < channels; c++, bp++)
  230.             {
  231.                int v;
  232.                v = *bp;
  233.                *bp = 0;
  234.                for (j = shift_start[c]; j > -shift_dec[c]; j -= shift_dec[c])
  235.                {
  236.                   if (j > 0)
  237.                      *bp |= (png_byte)((v << j) & 0xff);
  238.                   else
  239.                      *bp |= (png_byte)((v >> (-j)) & 0xff);
  240.                }
  241.             }
  242.          }
  243.       }
  244.       else
  245.       {
  246.          png_bytep bp;
  247.          png_uint_32 i;
  248.          int j;
  249.          for (bp = row, i = 0;
  250.             i < row_info->width * row_info->channels;
  251.             i++)
  252.          {
  253.             int c;
  254.             for (c = 0; c < channels; c++, bp += 2)
  255.             {
  256.                png_uint_16 value, v;
  257.                v = (png_uint_16)(((png_uint_16)(*bp) << 8) +
  258.                   (png_uint_16)(*(bp + 1)));
  259.                value = 0;
  260.                for (j = shift_start[c]; j > -shift_dec[c]; j -= shift_dec[c])
  261.                {
  262.                   if (j > 0)
  263.                      value |= (png_uint_16)((v << j) & (png_uint_16)0xffff);
  264.                   else
  265.                      value |= (png_uint_16)((v >> (-j)) & (png_uint_16)0xffff);
  266.                }
  267.                *bp = (png_byte)(value >> 8);
  268.                *(bp + 1) = (png_byte)(value & 0xff);
  269.             }
  270.          }
  271.       }
  272.    }
  273. }
  274. #endif
  275. #ifdef PNG_WRITE_FILLER_SUPPORTED
  276. /* remove filler byte */
  277. void
  278. png_do_write_filler(png_row_infop row_info, png_bytep row,
  279.    png_byte flags)
  280. {
  281.    if (row && row_info && row_info->color_type == PNG_COLOR_TYPE_RGB &&
  282.       row_info->bit_depth == 8)
  283.    {
  284.       if (flags & PNG_FLAG_FILLER_AFTER)
  285.       {
  286.          png_bytep sp, dp;
  287.          png_uint_32 i;
  288.          for (i = 1, sp = row + 4, dp = row + 3;
  289.             i < row_info->width;
  290.             i++)
  291.          {
  292.             *dp++ = *sp++;
  293.             *dp++ = *sp++;
  294.             *dp++ = *sp++;
  295.             sp++;
  296.          }
  297.          row_info->channels = 3;
  298.          row_info->pixel_depth = 24;
  299.          row_info->rowbytes = row_info->width * 3;
  300.       }
  301.       else
  302.       {
  303.          png_bytep sp, dp;
  304.          png_uint_32 i;
  305.          for (i = 0, sp = row, dp = row;
  306.             i < row_info->width;
  307.             i++)
  308.          {
  309.             sp++;
  310.             *dp++ = *sp++;
  311.             *dp++ = *sp++;
  312.             *dp++ = *sp++;
  313.          }
  314.          row_info->channels = 3;
  315.          row_info->pixel_depth = 24;
  316.          row_info->rowbytes = row_info->width * 3;
  317.       }
  318.    }
  319. }
  320. #endif