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

界面编程

开发平台:

Visual C++

  1. /*---------------------------------------------------------------------------
  2.    rpng2 - progressive-model PNG display program                 readpng2.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 <stdlib.h>     /* for exit() prototype */
  40. #include "png.h"        /* libpng header; includes zlib.h and setjmp.h */
  41. #include "readpng2.h"   /* typedefs, common macros, public prototypes */
  42. /* local prototypes */
  43. static void readpng2_info_callback(png_structp png_ptr, png_infop info_ptr);
  44. static void readpng2_row_callback(png_structp png_ptr, png_bytep new_row,
  45.                                  png_uint_32 row_num, int pass);
  46. static void readpng2_end_callback(png_structp png_ptr, png_infop info_ptr);
  47. static void readpng2_error_handler(png_structp png_ptr, png_const_charp msg);
  48. void readpng2_version_info(void)
  49. {
  50. #if defined(PNG_ASSEMBLER_CODE_SUPPORTED) && 
  51.     (defined(__i386__) || defined(_M_IX86) || defined(__x86_64__)) && 
  52.     defined(PNG_LIBPNG_VER) && (PNG_LIBPNG_VER >= 10200)
  53.     /*
  54.      * WARNING:  This preprocessor approach means that the following code
  55.      *           cannot be used with a libpng DLL older than 1.2.0--the
  56.      *           compiled-in symbols for the new functions will not exist.
  57.      *           (Could use dlopen() and dlsym() on Unix and corresponding
  58.      *           calls for Windows, but not portable...)
  59.      */
  60.     {
  61.         int mmxsupport = png_mmx_support();
  62.         if (mmxsupport < 0)
  63.             fprintf(stderr, "   Compiled with libpng %s; using libpng %s "
  64.               "without MMX support.n", PNG_LIBPNG_VER_STRING, png_libpng_ver);
  65.         else {
  66.             int compilerID;
  67.             png_uint_32 mmx_mask = png_get_mmx_flagmask(
  68.               PNG_SELECT_READ | PNG_SELECT_WRITE, &compilerID);
  69.             fprintf(stderr, "   Compiled with libpng %s; using libpng %s "
  70.               "with MMX supportn   (%s version).", PNG_LIBPNG_VER_STRING,
  71.               png_libpng_ver, compilerID == 1? "MSVC++" :
  72.               (compilerID == 2? "GNU C" : "unknown"));
  73.             fprintf(stderr, "  Processor (x86%s) %s MMX instructions.n",
  74. #if defined(__x86_64__)
  75.               "_64",
  76. #else
  77.               "",
  78. #endif
  79.               mmxsupport? "supports" : "does not support");
  80.             if (mmxsupport > 0) {
  81.                 int num_optims = 0;
  82.                 fprintf(stderr,
  83.                   "      Potential MMX optimizations supported by libpng:n");
  84.                 if (mmx_mask & PNG_ASM_FLAG_MMX_READ_FILTER_SUB)
  85.                     ++num_optims;
  86.                 if (mmx_mask & PNG_ASM_FLAG_MMX_READ_FILTER_UP)
  87.                     ++num_optims;
  88.                 if (mmx_mask & PNG_ASM_FLAG_MMX_READ_FILTER_AVG)
  89.                     ++num_optims;
  90.                 if (mmx_mask & PNG_ASM_FLAG_MMX_READ_FILTER_PAETH)
  91.                     ++num_optims;
  92.                 if (num_optims)
  93.                     fprintf(stderr,
  94.                       "         decoding %s row filters (reading)n",
  95.                       (num_optims == 4)? "all non-trivial" : "some");
  96.                 if (mmx_mask & PNG_ASM_FLAG_MMX_READ_COMBINE_ROW) {
  97.                     fprintf(stderr, "         combining rows (reading)n");
  98.                     ++num_optims;
  99.                 }
  100.                 if (mmx_mask & PNG_ASM_FLAG_MMX_READ_INTERLACE) {
  101.                     fprintf(stderr,
  102.                       "         expanding interlacing (reading)n");
  103.                     ++num_optims;
  104.                 }
  105.                 mmx_mask &= ~( PNG_ASM_FLAG_MMX_READ_COMBINE_ROW  
  106.                              | PNG_ASM_FLAG_MMX_READ_INTERLACE    
  107.                              | PNG_ASM_FLAG_MMX_READ_FILTER_SUB   
  108.                              | PNG_ASM_FLAG_MMX_READ_FILTER_UP    
  109.                              | PNG_ASM_FLAG_MMX_READ_FILTER_AVG   
  110.                              | PNG_ASM_FLAG_MMX_READ_FILTER_PAETH );
  111.                 if (mmx_mask) {
  112.                     fprintf(stderr, "         other (unknown)n");
  113.                     ++num_optims;
  114.                 }
  115.                 if (num_optims == 0)
  116.                     fprintf(stderr, "         (none)n");
  117.             }
  118.         }
  119.     }
  120. #else
  121.     fprintf(stderr, "   Compiled with libpng %s; using libpng %s "
  122.       "without MMX support.n", PNG_LIBPNG_VER_STRING, png_libpng_ver);
  123. #endif
  124.     fprintf(stderr, "   Compiled with zlib %s; using zlib %s.n",
  125.       ZLIB_VERSION, zlib_version);
  126. }
  127. int readpng2_check_sig(uch *sig, int num)
  128. {
  129.     return png_check_sig(sig, num);
  130. }
  131. /* returns 0 for success, 2 for libpng problem, 4 for out of memory */
  132. int readpng2_init(mainprog_info *mainprog_ptr)
  133. {
  134.     png_structp  png_ptr;       /* note:  temporary variables! */
  135.     png_infop  info_ptr;
  136.     /* could also replace libpng warning-handler (final NULL), but no need: */
  137.     png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, mainprog_ptr,
  138.       readpng2_error_handler, NULL);
  139.     if (!png_ptr)
  140.         return 4;   /* out of memory */
  141.     info_ptr = png_create_info_struct(png_ptr);
  142.     if (!info_ptr) {
  143.         png_destroy_read_struct(&png_ptr, NULL, NULL);
  144.         return 4;   /* out of memory */
  145.     }
  146.     /* we could create a second info struct here (end_info), but it's only
  147.      * useful if we want to keep pre- and post-IDAT chunk info separated
  148.      * (mainly for PNG-aware image editors and converters) */
  149.     /* setjmp() must be called in every function that calls a PNG-reading
  150.      * libpng function, unless an alternate error handler was installed--
  151.      * but compatible error handlers must either use longjmp() themselves
  152.      * (as in this program) or exit immediately, so here we are: */
  153.     if (setjmp(mainprog_ptr->jmpbuf)) {
  154.         png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
  155.         return 2;
  156.     }
  157. #ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
  158.     /* prepare the reader to ignore all recognized chunks whose data won't be
  159.      * used, i.e., all chunks recognized by libpng except for IHDR, PLTE, IDAT,
  160.      * IEND, tRNS, bKGD, gAMA, and sRGB (small performance improvement) */
  161.     {
  162.         /* These byte strings were copied from png.h.  If a future libpng
  163.          * version recognizes more chunks, add them to this list.  If a
  164.          * future version of readpng2.c recognizes more chunks, delete them
  165.          * from this list. */
  166.         static const png_byte chunks_to_ignore[] = {
  167.              99,  72,  82,  77, '',  /* cHRM */
  168.             104,  73,  83,  84, '',  /* hIST */
  169.             105,  67,  67,  80, '',  /* iCCP */
  170.             105,  84,  88, 116, '',  /* iTXt */
  171.             111,  70,  70, 115, '',  /* oFFs */
  172.             112,  67,  65,  76, '',  /* pCAL */
  173.             112,  72,  89, 115, '',  /* pHYs */
  174.             115,  66,  73,  84, '',  /* sBIT */
  175.             115,  67,  65,  76, '',  /* sCAL */
  176.             115,  80,  76,  84, '',  /* sPLT */
  177.             115,  84,  69,  82, '',  /* sTER */
  178.             116,  69,  88, 116, '',  /* tEXt */
  179.             116,  73,  77,  69, '',  /* tIME */
  180.             122,  84,  88, 116, ''   /* zTXt */
  181.         };
  182.         png_set_keep_unknown_chunks(png_ptr, 1 /* PNG_HANDLE_CHUNK_NEVER */,
  183.           chunks_to_ignore, sizeof(chunks_to_ignore)/5);
  184.     }
  185. #endif /* PNG_UNKNOWN_CHUNKS_SUPPORTED */
  186.     /* instead of doing png_init_io() here, now we set up our callback
  187.      * functions for progressive decoding */
  188.     png_set_progressive_read_fn(png_ptr, mainprog_ptr,
  189.       readpng2_info_callback, readpng2_row_callback, readpng2_end_callback);
  190.     /*
  191.      * may as well enable or disable MMX routines here, if supported;
  192.      *
  193.      * to enable all:  mask = png_get_mmx_flagmask (
  194.      *                   PNG_SELECT_READ | PNG_SELECT_WRITE, &compilerID);
  195.      *                 flags = png_get_asm_flags (png_ptr);
  196.      *                 flags |= mask;
  197.      *                 png_set_asm_flags (png_ptr, flags);
  198.      *
  199.      * to disable all:  mask = png_get_mmx_flagmask (
  200.      *                   PNG_SELECT_READ | PNG_SELECT_WRITE, &compilerID);
  201.      *                  flags = png_get_asm_flags (png_ptr);
  202.      *                  flags &= ~mask;
  203.      *                  png_set_asm_flags (png_ptr, flags);
  204.      */
  205. #if (defined(__i386__) || defined(_M_IX86) || defined(__x86_64__)) && 
  206.     defined(PNG_LIBPNG_VER) && (PNG_LIBPNG_VER >= 10200)
  207.     /*
  208.      * WARNING:  This preprocessor approach means that the following code
  209.      *           cannot be used with a libpng DLL older than 1.2.0--the
  210.      *           compiled-in symbols for the new functions will not exist.
  211.      *           (Could use dlopen() and dlsym() on Unix and corresponding
  212.      *           calls for Windows, but not portable...)
  213.      */
  214.     {
  215. #ifdef PNG_ASSEMBLER_CODE_SUPPORTED
  216.         png_uint_32 mmx_disable_mask = 0;
  217.         png_uint_32 asm_flags, mmx_mask;
  218.         int compilerID;
  219.         if (mainprog_ptr->nommxfilters)
  220.             mmx_disable_mask |= ( PNG_ASM_FLAG_MMX_READ_FILTER_SUB   
  221.                                 | PNG_ASM_FLAG_MMX_READ_FILTER_UP    
  222.                                 | PNG_ASM_FLAG_MMX_READ_FILTER_AVG   
  223.                                 | PNG_ASM_FLAG_MMX_READ_FILTER_PAETH );
  224.         if (mainprog_ptr->nommxcombine)
  225.             mmx_disable_mask |= PNG_ASM_FLAG_MMX_READ_COMBINE_ROW;
  226.         if (mainprog_ptr->nommxinterlace)
  227.             mmx_disable_mask |= PNG_ASM_FLAG_MMX_READ_INTERLACE;
  228.         asm_flags = png_get_asm_flags(png_ptr);
  229.         png_set_asm_flags(png_ptr, asm_flags & ~mmx_disable_mask);
  230.         /* Now query libpng's asm settings, just for yuks.  Note that this
  231.          * differs from the querying of its *potential* MMX capabilities
  232.          * in readpng2_version_info(); this is true runtime verification. */
  233.         asm_flags = png_get_asm_flags(png_ptr);
  234.         mmx_mask = png_get_mmx_flagmask(PNG_SELECT_READ | PNG_SELECT_WRITE,
  235.           &compilerID);
  236.         if (asm_flags & PNG_ASM_FLAG_MMX_SUPPORT_COMPILED)
  237.             fprintf(stderr,
  238.               "  MMX support (%s version) is compiled into libpngn",
  239.               compilerID == 1? "MSVC++" :
  240.               (compilerID == 2? "GNU C" : "unknown"));
  241.         else
  242.             fprintf(stderr, "  MMX support is not compiled into libpngn");
  243.         fprintf(stderr, "  MMX instructions are %ssupported by CPUn",
  244.           (asm_flags & PNG_ASM_FLAG_MMX_SUPPORT_IN_CPU)? "" : "not ");
  245.         fprintf(stderr, "  MMX read support for combining rows is %sabledn",
  246.           (asm_flags & PNG_ASM_FLAG_MMX_READ_COMBINE_ROW)? "en" : "dis");
  247.         fprintf(stderr,
  248.           "  MMX read support for expanding interlacing is %sabledn",
  249.           (asm_flags & PNG_ASM_FLAG_MMX_READ_INTERLACE)? "en" : "dis");
  250.         fprintf(stderr, "  MMX read support for "sub" filter is %sabledn",
  251.           (asm_flags & PNG_ASM_FLAG_MMX_READ_FILTER_SUB)? "en" : "dis");
  252.         fprintf(stderr, "  MMX read support for "up" filter is %sabledn",
  253.           (asm_flags & PNG_ASM_FLAG_MMX_READ_FILTER_UP)? "en" : "dis");
  254.         fprintf(stderr, "  MMX read support for "avg" filter is %sabledn",
  255.           (asm_flags & PNG_ASM_FLAG_MMX_READ_FILTER_AVG)? "en" : "dis");
  256.         fprintf(stderr, "  MMX read support for "Paeth" filter is %sabledn",
  257.           (asm_flags & PNG_ASM_FLAG_MMX_READ_FILTER_PAETH)? "en" : "dis");
  258.         asm_flags &= (mmx_mask & ~( PNG_ASM_FLAG_MMX_READ_COMBINE_ROW  
  259.                                   | PNG_ASM_FLAG_MMX_READ_INTERLACE    
  260.                                   | PNG_ASM_FLAG_MMX_READ_FILTER_SUB   
  261.                                   | PNG_ASM_FLAG_MMX_READ_FILTER_UP    
  262.                                   | PNG_ASM_FLAG_MMX_READ_FILTER_AVG   
  263.                                   | PNG_ASM_FLAG_MMX_READ_FILTER_PAETH ));
  264.         if (asm_flags)
  265.             fprintf(stderr,
  266.               "  additional MMX support is also enabled (0x%02lx)n",
  267.               asm_flags);
  268. #else  /* !PNG_ASSEMBLER_CODE_SUPPORTED */
  269.         fprintf(stderr, "  MMX querying is disabled in libpng.n");
  270. #endif /* ?PNG_ASSEMBLER_CODE_SUPPORTED */
  271.     }
  272. #endif
  273.     /* make sure we save our pointers for use in readpng2_decode_data() */
  274.     mainprog_ptr->png_ptr = png_ptr;
  275.     mainprog_ptr->info_ptr = info_ptr;
  276.     /* and that's all there is to initialization */
  277.     return 0;
  278. }
  279. /* returns 0 for success, 2 for libpng (longjmp) problem */
  280. int readpng2_decode_data(mainprog_info *mainprog_ptr, uch *rawbuf, ulg length)
  281. {
  282.     png_structp png_ptr = (png_structp)mainprog_ptr->png_ptr;
  283.     png_infop info_ptr = (png_infop)mainprog_ptr->info_ptr;
  284.     /* setjmp() must be called in every function that calls a PNG-reading
  285.      * libpng function */
  286.     if (setjmp(mainprog_ptr->jmpbuf)) {
  287.         png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
  288.         mainprog_ptr->png_ptr = NULL;
  289.         mainprog_ptr->info_ptr = NULL;
  290.         return 2;
  291.     }
  292.     /* hand off the next chunk of input data to libpng for decoding */
  293.     png_process_data(png_ptr, info_ptr, rawbuf, length);
  294.     return 0;
  295. }
  296. static void readpng2_info_callback(png_structp png_ptr, png_infop info_ptr)
  297. {
  298.     mainprog_info  *mainprog_ptr;
  299.     int  color_type, bit_depth;
  300.     double  gamma;
  301.     /* setjmp() doesn't make sense here, because we'd either have to exit(),
  302.      * longjmp() ourselves, or return control to libpng, which doesn't want
  303.      * to see us again.  By not doing anything here, libpng will instead jump
  304.      * to readpng2_decode_data(), which can return an error value to the main
  305.      * program. */
  306.     /* retrieve the pointer to our special-purpose struct, using the png_ptr
  307.      * that libpng passed back to us (i.e., not a global this time--there's
  308.      * no real difference for a single image, but for a multithreaded browser
  309.      * decoding several PNG images at the same time, one needs to avoid mixing
  310.      * up different images' structs) */
  311.     mainprog_ptr = png_get_progressive_ptr(png_ptr);
  312.     if (mainprog_ptr == NULL) {         /* we be hosed */
  313.         fprintf(stderr,
  314.           "readpng2 error:  main struct not recoverable in info_callback.n");
  315.         fflush(stderr);
  316.         return;
  317.         /*
  318.          * Alternatively, we could call our error-handler just like libpng
  319.          * does, which would effectively terminate the program.  Since this
  320.          * can only happen if png_ptr gets redirected somewhere odd or the
  321.          * main PNG struct gets wiped, we're probably toast anyway.  (If
  322.          * png_ptr itself is NULL, we would not have been called.)
  323.          */
  324.     }
  325.     /* this is just like in the non-progressive case */
  326.     png_get_IHDR(png_ptr, info_ptr, &mainprog_ptr->width,
  327.       &mainprog_ptr->height, &bit_depth, &color_type, NULL, NULL, NULL);
  328.     /* since we know we've read all of the PNG file's "header" (i.e., up
  329.      * to IDAT), we can check for a background color here */
  330.     if (mainprog_ptr->need_bgcolor &&
  331.         png_get_valid(png_ptr, info_ptr, PNG_INFO_bKGD))
  332.     {
  333.         png_color_16p pBackground;
  334.         /* it is not obvious from the libpng documentation, but this function
  335.          * takes a pointer to a pointer, and it always returns valid red,
  336.          * green and blue values, regardless of color_type: */
  337.         png_get_bKGD(png_ptr, info_ptr, &pBackground);
  338.         /* however, it always returns the raw bKGD data, regardless of any
  339.          * bit-depth transformations, so check depth and adjust if necessary */
  340.         if (bit_depth == 16) {
  341.             mainprog_ptr->bg_red   = pBackground->red   >> 8;
  342.             mainprog_ptr->bg_green = pBackground->green >> 8;
  343.             mainprog_ptr->bg_blue  = pBackground->blue  >> 8;
  344.         } else if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) {
  345.             if (bit_depth == 1)
  346.                 mainprog_ptr->bg_red = mainprog_ptr->bg_green =
  347.                   mainprog_ptr->bg_blue = pBackground->gray? 255 : 0;
  348.             else if (bit_depth == 2)
  349.                 mainprog_ptr->bg_red = mainprog_ptr->bg_green =
  350.                   mainprog_ptr->bg_blue = (255/3) * pBackground->gray;
  351.             else /* bit_depth == 4 */
  352.                 mainprog_ptr->bg_red = mainprog_ptr->bg_green =
  353.                   mainprog_ptr->bg_blue = (255/15) * pBackground->gray;
  354.         } else {
  355.             mainprog_ptr->bg_red   = (uch)pBackground->red;
  356.             mainprog_ptr->bg_green = (uch)pBackground->green;
  357.             mainprog_ptr->bg_blue  = (uch)pBackground->blue;
  358.         }
  359.     }
  360.     /* as before, let libpng expand palette images to RGB, low-bit-depth
  361.      * grayscale images to 8 bits, transparency chunks to full alpha channel;
  362.      * strip 16-bit-per-sample images to 8 bits per sample; and convert
  363.      * grayscale to RGB[A] */
  364.     if (color_type == PNG_COLOR_TYPE_PALETTE)
  365.         png_set_expand(png_ptr);
  366.     if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
  367.         png_set_expand(png_ptr);
  368.     if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS))
  369.         png_set_expand(png_ptr);
  370.     if (bit_depth == 16)
  371.         png_set_strip_16(png_ptr);
  372.     if (color_type == PNG_COLOR_TYPE_GRAY ||
  373.         color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
  374.         png_set_gray_to_rgb(png_ptr);
  375.     /* Unlike the basic viewer, which was designed to operate on local files,
  376.      * this program is intended to simulate a web browser--even though we
  377.      * actually read from a local file, too.  But because we are pretending
  378.      * that most of the images originate on the Internet, we follow the recom-
  379.      * mendation of the sRGB proposal and treat unlabelled images (no gAMA
  380.      * chunk) as existing in the sRGB color space.  That is, we assume that
  381.      * such images have a file gamma of 0.45455, which corresponds to a PC-like
  382.      * display system.  This change in assumptions will have no effect on a
  383.      * PC-like system, but on a Mac, SGI, NeXT or other system with a non-
  384.      * identity lookup table, it will darken unlabelled images, which effec-
  385.      * tively favors images from PC-like systems over those originating on
  386.      * the local platform.  Note that mainprog_ptr->display_exponent is the
  387.      * "gamma" value for the entire display system, i.e., the product of
  388.      * LUT_exponent and CRT_exponent. */
  389.     if (png_get_gAMA(png_ptr, info_ptr, &gamma))
  390.         png_set_gamma(png_ptr, mainprog_ptr->display_exponent, gamma);
  391.     else
  392.         png_set_gamma(png_ptr, mainprog_ptr->display_exponent, 0.45455);
  393.     /* we'll let libpng expand interlaced images, too */
  394.     mainprog_ptr->passes = png_set_interlace_handling(png_ptr);
  395.     /* all transformations have been registered; now update info_ptr data and
  396.      * then get rowbytes and channels */
  397.     png_read_update_info(png_ptr, info_ptr);
  398.     mainprog_ptr->rowbytes = (int)png_get_rowbytes(png_ptr, info_ptr);
  399.     mainprog_ptr->channels = png_get_channels(png_ptr, info_ptr);
  400.     /* Call the main program to allocate memory for the image buffer and
  401.      * initialize windows and whatnot.  (The old-style function-pointer
  402.      * invocation is used for compatibility with a few supposedly ANSI
  403.      * compilers that nevertheless barf on "fn_ptr()"-style syntax.) */
  404.     (*mainprog_ptr->mainprog_init)();
  405.     /* and that takes care of initialization */
  406.     return;
  407. }
  408. static void readpng2_row_callback(png_structp png_ptr, png_bytep new_row,
  409.                                   png_uint_32 row_num, int pass)
  410. {
  411.     mainprog_info  *mainprog_ptr;
  412.     /* first check whether the row differs from the previous pass; if not,
  413.      * nothing to combine or display */
  414.     if (!new_row)
  415.         return;
  416.     /* retrieve the pointer to our special-purpose struct so we can access
  417.      * the old rows and image-display callback function */
  418.     mainprog_ptr = png_get_progressive_ptr(png_ptr);
  419.     /* save the pass number for optional use by the front end */
  420.     mainprog_ptr->pass = pass;
  421.     /* have libpng either combine the new row data with the existing row data
  422.      * from previous passes (if interlaced) or else just copy the new row
  423.      * into the main program's image buffer */
  424.     png_progressive_combine_row(png_ptr, mainprog_ptr->row_pointers[row_num],
  425.       new_row);
  426.     /* finally, call the display routine in the main program with the number
  427.      * of the row we just updated */
  428.     (*mainprog_ptr->mainprog_display_row)(row_num);
  429.     /* and we're ready for more */
  430.     return;
  431. }
  432. static void readpng2_end_callback(png_structp png_ptr, png_infop info_ptr)
  433. {
  434.     mainprog_info  *mainprog_ptr;
  435.     /* retrieve the pointer to our special-purpose struct */
  436.     mainprog_ptr = png_get_progressive_ptr(png_ptr);
  437.     /* let the main program know that it should flush any buffered image
  438.      * data to the display now and set a "done" flag or whatever, but note
  439.      * that it SHOULD NOT DESTROY THE PNG STRUCTS YET--in other words, do
  440.      * NOT call readpng2_cleanup() either here or in the finish_display()
  441.      * routine; wait until control returns to the main program via
  442.      * readpng2_decode_data() */
  443.     (*mainprog_ptr->mainprog_finish_display)();
  444.     /* all done */
  445.     return;
  446. }
  447. void readpng2_cleanup(mainprog_info *mainprog_ptr)
  448. {
  449.     png_structp png_ptr = (png_structp)mainprog_ptr->png_ptr;
  450.     png_infop info_ptr = (png_infop)mainprog_ptr->info_ptr;
  451.     if (png_ptr && info_ptr)
  452.         png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
  453.     mainprog_ptr->png_ptr = NULL;
  454.     mainprog_ptr->info_ptr = NULL;
  455. }
  456. static void readpng2_error_handler(png_structp png_ptr, png_const_charp msg)
  457. {
  458.     mainprog_info  *mainprog_ptr;
  459.     /* This function, aside from the extra step of retrieving the "error
  460.      * pointer" (below) and the fact that it exists within the application
  461.      * rather than within libpng, is essentially identical to libpng's
  462.      * default error handler.  The second point is critical:  since both
  463.      * setjmp() and longjmp() are called from the same code, they are
  464.      * guaranteed to have compatible notions of how big a jmp_buf is,
  465.      * regardless of whether _BSD_SOURCE or anything else has (or has not)
  466.      * been defined. */
  467.     fprintf(stderr, "readpng2 libpng error: %sn", msg);
  468.     fflush(stderr);
  469.     mainprog_ptr = png_get_error_ptr(png_ptr);
  470.     if (mainprog_ptr == NULL) {         /* we are completely hosed now */
  471.         fprintf(stderr,
  472.           "readpng2 severe error:  jmpbuf not recoverable; terminating.n");
  473.         fflush(stderr);
  474.         exit(99);
  475.     }
  476.     longjmp(mainprog_ptr->jmpbuf, 1);
  477. }