readpng.c
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:10k
源码类别:

界面编程

开发平台:

Visual C++

  1. /*---------------------------------------------------------------------------
  2.    rpng - simple PNG display program                              readpng.c
  3.   ---------------------------------------------------------------------------
  4.       Copyright (c) 1998-2007 Greg Roelofs.  All rights reserved.
  5.       This software is provided "as is," without warranty of any kind,
  6.       express or implied.  In no event shall the author or contributors
  7.       be held liable for any damages arising in any way from the use of
  8.       this software.
  9.       The contents of this file are DUAL-LICENSED.  You may modify and/or
  10.       redistribute this software according to the terms of one of the
  11.       following two licenses (at your option):
  12.       LICENSE 1 ("BSD-like with advertising clause"):
  13.       Permission is granted to anyone to use this software for any purpose,
  14.       including commercial applications, and to alter it and redistribute
  15.       it freely, subject to the following restrictions:
  16.       1. Redistributions of source code must retain the above copyright
  17.          notice, disclaimer, and this list of conditions.
  18.       2. Redistributions in binary form must reproduce the above copyright
  19.          notice, disclaimer, and this list of conditions in the documenta-
  20.          tion and/or other materials provided with the distribution.
  21.       3. All advertising materials mentioning features or use of this
  22.          software must display the following acknowledgment:
  23.             This product includes software developed by Greg Roelofs
  24.             and contributors for the book, "PNG: The Definitive Guide,"
  25.             published by O'Reilly and Associates.
  26.       LICENSE 2 (GNU GPL v2 or later):
  27.       This program is free software; you can redistribute it and/or modify
  28.       it under the terms of the GNU General Public License as published by
  29.       the Free Software Foundation; either version 2 of the License, or
  30.       (at your option) any later version.
  31.       This program is distributed in the hope that it will be useful,
  32.       but WITHOUT ANY WARRANTY; without even the implied warranty of
  33.       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  34.       GNU General Public License for more details.
  35.       You should have received a copy of the GNU General Public License
  36.       along with this program; if not, write to the Free Software Foundation,
  37.       Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  38.   ---------------------------------------------------------------------------*/
  39. #include <stdio.h>
  40. #include <stdlib.h>
  41. #include "png.h"        /* libpng header; includes zlib.h */
  42. #include "readpng.h"    /* typedefs, common macros, public prototypes */
  43. /* future versions of libpng will provide this macro: */
  44. #ifndef png_jmpbuf
  45. #  define png_jmpbuf(png_ptr)   ((png_ptr)->jmpbuf)
  46. #endif
  47. static png_structp png_ptr = NULL;
  48. static png_infop info_ptr = NULL;
  49. png_uint_32  width, height;
  50. int  bit_depth, color_type;
  51. uch  *image_data = NULL;
  52. void readpng_version_info(void)
  53. {
  54.     fprintf(stderr, "   Compiled with libpng %s; using libpng %s.n",
  55.       PNG_LIBPNG_VER_STRING, png_libpng_ver);
  56.     fprintf(stderr, "   Compiled with zlib %s; using zlib %s.n",
  57.       ZLIB_VERSION, zlib_version);
  58. }
  59. /* return value = 0 for success, 1 for bad sig, 2 for bad IHDR, 4 for no mem */
  60. int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight)
  61. {
  62.     uch sig[8];
  63.     /* first do a quick check that the file really is a PNG image; could
  64.      * have used slightly more general png_sig_cmp() function instead */
  65.     fread(sig, 1, 8, infile);
  66.     if (!png_check_sig(sig, 8))
  67.         return 1;   /* bad signature */
  68.     /* could pass pointers to user-defined error handlers instead of NULLs: */
  69.     png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
  70.     if (!png_ptr)
  71.         return 4;   /* out of memory */
  72.     info_ptr = png_create_info_struct(png_ptr);
  73.     if (!info_ptr) {
  74.         png_destroy_read_struct(&png_ptr, NULL, NULL);
  75.         return 4;   /* out of memory */
  76.     }
  77.     /* we could create a second info struct here (end_info), but it's only
  78.      * useful if we want to keep pre- and post-IDAT chunk info separated
  79.      * (mainly for PNG-aware image editors and converters) */
  80.     /* setjmp() must be called in every function that calls a PNG-reading
  81.      * libpng function */
  82.     if (setjmp(png_jmpbuf(png_ptr))) {
  83.         png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
  84.         return 2;
  85.     }
  86.     png_init_io(png_ptr, infile);
  87.     png_set_sig_bytes(png_ptr, 8);  /* we already read the 8 signature bytes */
  88.     png_read_info(png_ptr, info_ptr);  /* read all PNG info up to image data */
  89.     /* alternatively, could make separate calls to png_get_image_width(),
  90.      * etc., but want bit_depth and color_type for later [don't care about
  91.      * compression_type and filter_type => NULLs] */
  92.     png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
  93.       NULL, NULL, NULL);
  94.     *pWidth = width;
  95.     *pHeight = height;
  96.     /* OK, that's all we need for now; return happy */
  97.     return 0;
  98. }
  99. /* returns 0 if succeeds, 1 if fails due to no bKGD chunk, 2 if libpng error;
  100.  * scales values to 8-bit if necessary */
  101. int readpng_get_bgcolor(uch *red, uch *green, uch *blue)
  102. {
  103.     png_color_16p pBackground;
  104.     /* setjmp() must be called in every function that calls a PNG-reading
  105.      * libpng function */
  106.     if (setjmp(png_jmpbuf(png_ptr))) {
  107.         png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
  108.         return 2;
  109.     }
  110.     if (!png_get_valid(png_ptr, info_ptr, PNG_INFO_bKGD))
  111.         return 1;
  112.     /* it is not obvious from the libpng documentation, but this function
  113.      * takes a pointer to a pointer, and it always returns valid red, green
  114.      * and blue values, regardless of color_type: */
  115.     png_get_bKGD(png_ptr, info_ptr, &pBackground);
  116.     /* however, it always returns the raw bKGD data, regardless of any
  117.      * bit-depth transformations, so check depth and adjust if necessary */
  118.     if (bit_depth == 16) {
  119.         *red   = pBackground->red   >> 8;
  120.         *green = pBackground->green >> 8;
  121.         *blue  = pBackground->blue  >> 8;
  122.     } else if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) {
  123.         if (bit_depth == 1)
  124.             *red = *green = *blue = pBackground->gray? 255 : 0;
  125.         else if (bit_depth == 2)
  126.             *red = *green = *blue = (255/3) * pBackground->gray;
  127.         else /* bit_depth == 4 */
  128.             *red = *green = *blue = (255/15) * pBackground->gray;
  129.     } else {
  130.         *red   = (uch)pBackground->red;
  131.         *green = (uch)pBackground->green;
  132.         *blue  = (uch)pBackground->blue;
  133.     }
  134.     return 0;
  135. }
  136. /* display_exponent == LUT_exponent * CRT_exponent */
  137. uch *readpng_get_image(double display_exponent, int *pChannels, ulg *pRowbytes)
  138. {
  139.     double  gamma;
  140.     png_uint_32  i, rowbytes;
  141.     png_bytepp  row_pointers = NULL;
  142.     /* setjmp() must be called in every function that calls a PNG-reading
  143.      * libpng function */
  144.     if (setjmp(png_jmpbuf(png_ptr))) {
  145.         png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
  146.         return NULL;
  147.     }
  148.     /* expand palette images to RGB, low-bit-depth grayscale images to 8 bits,
  149.      * transparency chunks to full alpha channel; strip 16-bit-per-sample
  150.      * images to 8 bits per sample; and convert grayscale to RGB[A] */
  151.     if (color_type == PNG_COLOR_TYPE_PALETTE)
  152.         png_set_expand(png_ptr);
  153.     if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
  154.         png_set_expand(png_ptr);
  155.     if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS))
  156.         png_set_expand(png_ptr);
  157.     if (bit_depth == 16)
  158.         png_set_strip_16(png_ptr);
  159.     if (color_type == PNG_COLOR_TYPE_GRAY ||
  160.         color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
  161.         png_set_gray_to_rgb(png_ptr);
  162.     /* unlike the example in the libpng documentation, we have *no* idea where
  163.      * this file may have come from--so if it doesn't have a file gamma, don't
  164.      * do any correction ("do no harm") */
  165.     if (png_get_gAMA(png_ptr, info_ptr, &gamma))
  166.         png_set_gamma(png_ptr, display_exponent, gamma);
  167.     /* all transformations have been registered; now update info_ptr data,
  168.      * get rowbytes and channels, and allocate image memory */
  169.     png_read_update_info(png_ptr, info_ptr);
  170.     *pRowbytes = rowbytes = png_get_rowbytes(png_ptr, info_ptr);
  171.     *pChannels = (int)png_get_channels(png_ptr, info_ptr);
  172.     if ((image_data = (uch *)malloc(rowbytes*height)) == NULL) {
  173.         png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
  174.         return NULL;
  175.     }
  176.     if ((row_pointers = (png_bytepp)malloc(height*sizeof(png_bytep))) == NULL) {
  177.         png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
  178.         free(image_data);
  179.         image_data = NULL;
  180.         return NULL;
  181.     }
  182.     Trace((stderr, "readpng_get_image:  channels = %d, rowbytes = %ld, height = %ldn", *pChannels, rowbytes, height));
  183.     /* set the individual row_pointers to point at the correct offsets */
  184.     for (i = 0;  i < height;  ++i)
  185.         row_pointers[i] = image_data + i*rowbytes;
  186.     /* now we can go ahead and just read the whole image */
  187.     png_read_image(png_ptr, row_pointers);
  188.     /* and we're done!  (png_read_end() can be omitted if no processing of
  189.      * post-IDAT text/time/etc. is desired) */
  190.     free(row_pointers);
  191.     row_pointers = NULL;
  192.     png_read_end(png_ptr, NULL);
  193.     return image_data;
  194. }
  195. void readpng_cleanup(int free_image_data)
  196. {
  197.     if (free_image_data && image_data) {
  198.         free(image_data);
  199.         image_data = NULL;
  200.     }
  201.     if (png_ptr && info_ptr) {
  202.         png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
  203.         png_ptr = NULL;
  204.         info_ptr = NULL;
  205.     }
  206. }