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

界面编程

开发平台:

Visual C++

  1. /*---------------------------------------------------------------------------
  2.    rpng2 - progressive-model PNG display program                rpng2-win.c
  3.    This program decodes and displays PNG files progressively, as if it were
  4.    a web browser (though the front end is only set up to read from files).
  5.    It supports gamma correction, user-specified background colors, and user-
  6.    specified background patterns (for transparent images).  This version is
  7.    for 32-bit Windows; it may compile under 16-bit Windows with a little
  8.    tweaking (or maybe not).  Thanks to Adam Costello and Pieter S. van der
  9.    Meulen for the "diamond" and "radial waves" patterns, respectively.
  10.    to do (someday, maybe):
  11.     - handle quoted command-line args (especially filenames with spaces)
  12.     - finish resizable checkerboard-gradient (sizes 4-128?)
  13.     - use %.1023s to simplify truncation of title-bar string?
  14.     - have minimum window width:  oh well
  15.   ---------------------------------------------------------------------------
  16.    Changelog:
  17.     - 1.01:  initial public release
  18.     - 1.02:  fixed cut-and-paste error in usage screen (oops...)
  19.     - 1.03:  modified to allow abbreviated options
  20.     - 1.04:  removed bogus extra argument from usage fprintf() [Glenn R-P?];
  21.               fixed command-line parsing bug
  22.     - 1.10:  enabled "message window"/console (thanks to David Geldreich)
  23.     - 1.20:  added runtime MMX-enabling/disabling and new -mmx* options
  24.     - 1.21:  made minor tweak to usage screen to fit within 25-line console
  25.     - 1.22:  added AMD64/EM64T support (__x86_64__)
  26.     - 2.00:  dual-licensed (added GNU GPL)
  27.     - 2.01:  fixed 64-bit typo in readpng2.c
  28.     - 2.02:  fixed improper display of usage screen on PNG error(s); fixed
  29.               unexpected-EOF and file-read-error cases
  30.   ---------------------------------------------------------------------------
  31.       Copyright (c) 1998-2008 Greg Roelofs.  All rights reserved.
  32.       This software is provided "as is," without warranty of any kind,
  33.       express or implied.  In no event shall the author or contributors
  34.       be held liable for any damages arising in any way from the use of
  35.       this software.
  36.       The contents of this file are DUAL-LICENSED.  You may modify and/or
  37.       redistribute this software according to the terms of one of the
  38.       following two licenses (at your option):
  39.       LICENSE 1 ("BSD-like with advertising clause"):
  40.       Permission is granted to anyone to use this software for any purpose,
  41.       including commercial applications, and to alter it and redistribute
  42.       it freely, subject to the following restrictions:
  43.       1. Redistributions of source code must retain the above copyright
  44.          notice, disclaimer, and this list of conditions.
  45.       2. Redistributions in binary form must reproduce the above copyright
  46.          notice, disclaimer, and this list of conditions in the documenta-
  47.          tion and/or other materials provided with the distribution.
  48.       3. All advertising materials mentioning features or use of this
  49.          software must display the following acknowledgment:
  50.             This product includes software developed by Greg Roelofs
  51.             and contributors for the book, "PNG: The Definitive Guide,"
  52.             published by O'Reilly and Associates.
  53.       LICENSE 2 (GNU GPL v2 or later):
  54.       This program is free software; you can redistribute it and/or modify
  55.       it under the terms of the GNU General Public License as published by
  56.       the Free Software Foundation; either version 2 of the License, or
  57.       (at your option) any later version.
  58.       This program is distributed in the hope that it will be useful,
  59.       but WITHOUT ANY WARRANTY; without even the implied warranty of
  60.       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  61.       GNU General Public License for more details.
  62.       You should have received a copy of the GNU General Public License
  63.       along with this program; if not, write to the Free Software Foundation,
  64.       Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  65.   ---------------------------------------------------------------------------*/
  66. #define PROGNAME  "rpng2-win"
  67. #define LONGNAME  "Progressive PNG Viewer for Windows"
  68. #define VERSION   "2.02 of 16 March 2008"
  69. #include <stdio.h>
  70. #include <stdlib.h>
  71. #include <string.h>
  72. #include <setjmp.h>    /* for jmpbuf declaration in readpng2.h */
  73. #include <time.h>
  74. #include <math.h>      /* only for PvdM background code */
  75. #include <windows.h>
  76. #include <conio.h>     /* only for _getch() */
  77. /* all for PvdM background code: */
  78. #ifndef PI
  79. #  define PI             3.141592653589793238
  80. #endif
  81. #define PI_2             (PI*0.5)
  82. #define INV_PI_360       (360.0 / PI)
  83. #define MAX(a,b)         (a>b?a:b)
  84. #define MIN(a,b)         (a<b?a:b)
  85. #define CLIP(a,min,max)  MAX(min,MIN((a),max))
  86. #define ABS(a)           ((a)<0?-(a):(a))
  87. #define CLIP8P(c)        MAX(0,(MIN((c),255)))   /* 8-bit pos. integer (uch) */
  88. #define ROUNDF(f)        ((int)(f + 0.5))
  89. #define rgb1_max   bg_freq
  90. #define rgb1_min   bg_gray
  91. #define rgb2_max   bg_bsat
  92. #define rgb2_min   bg_brot
  93. /* #define DEBUG */     /* this enables the Trace() macros */
  94. #include "readpng2.h"   /* typedefs, common macros, readpng2 prototypes */
  95. /* could just include png.h, but this macro is the only thing we need
  96.  * (name and typedefs changed to local versions); note that side effects
  97.  * only happen with alpha (which could easily be avoided with
  98.  * "ush acopy = (alpha);") */
  99. #define alpha_composite(composite, fg, alpha, bg) {               
  100.     ush temp = ((ush)(fg)*(ush)(alpha) +                          
  101.                 (ush)(bg)*(ush)(255 - (ush)(alpha)) + (ush)128);  
  102.     (composite) = (uch)((temp + (temp >> 8)) >> 8);               
  103. }
  104. #define INBUFSIZE 4096   /* with pseudo-timing on (1 sec delay/block), this
  105.                           *  block size corresponds roughly to a download
  106.                           *  speed 10% faster than theoretical 33.6K maximum
  107.                           *  (assuming 8 data bits, 1 stop bit and no other
  108.                           *  overhead) */
  109. /* local prototypes */
  110. static void       rpng2_win_init(void);
  111. static int        rpng2_win_create_window(void);
  112. static int        rpng2_win_load_bg_image(void);
  113. static void       rpng2_win_display_row(ulg row);
  114. static void       rpng2_win_finish_display(void);
  115. static void       rpng2_win_cleanup(void);
  116. LRESULT CALLBACK  rpng2_win_wndproc(HWND, UINT, WPARAM, LPARAM);
  117. static char titlebar[1024];
  118. static char *progname = PROGNAME;
  119. static char *appname = LONGNAME;
  120. static char *filename;
  121. static FILE *infile;
  122. static mainprog_info rpng2_info;
  123. static uch inbuf[INBUFSIZE];
  124. static int incount;
  125. static int pat = 6;         /* must be less than num_bgpat */
  126. static int bg_image = 0;
  127. static int bgscale = 16;
  128. static ulg bg_rowbytes;
  129. static uch *bg_data;
  130. static struct rgb_color {
  131.     uch r, g, b;
  132. } rgb[] = {
  133.     {  0,   0,   0},    /*  0:  black */
  134.     {255, 255, 255},    /*  1:  white */
  135.     {173, 132,  57},    /*  2:  tan */
  136.     { 64, 132,   0},    /*  3:  medium green */
  137.     {189, 117,   1},    /*  4:  gold */
  138.     {253, 249,   1},    /*  5:  yellow */
  139.     {  0,   0, 255},    /*  6:  blue */
  140.     {  0,   0, 120},    /*  7:  medium blue */
  141.     {255,   0, 255},    /*  8:  magenta */
  142.     { 64,   0,  64},    /*  9:  dark magenta */
  143.     {255,   0,   0},    /* 10:  red */
  144.     { 64,   0,   0},    /* 11:  dark red */
  145.     {255, 127,   0},    /* 12:  orange */
  146.     {192,  96,   0},    /* 13:  darker orange */
  147.     { 24,  60,   0},    /* 14:  dark green-yellow */
  148.     { 85, 125, 200}     /* 15:  ice blue */
  149. };
  150. /* not used for now, but should be for error-checking:
  151. static int num_rgb = sizeof(rgb) / sizeof(struct rgb_color);
  152.  */
  153. /*
  154.     This whole struct is a fairly cheesy way to keep the number of
  155.     command-line options to a minimum.  The radial-waves background
  156.     type is a particularly poor fit to the integer elements of the
  157.     struct...but a few macros and a little fixed-point math will do
  158.     wonders for ya.
  159.     type bits:
  160.        F E D C B A 9 8 7 6 5 4 3 2 1 0
  161.                              | | | | |
  162.                              | | +-+-+-- 0 = sharp-edged checkerboard
  163.                              | |         1 = soft diamonds
  164.                              | |         2 = radial waves
  165.                              | |       3-7 = undefined
  166.                              | +-- gradient #2 inverted?
  167.                              +-- alternating columns inverted?
  168.  */
  169. static struct background_pattern {
  170.     ush type;
  171.     int rgb1_max, rgb1_min;     /* or bg_freq, bg_gray */
  172.     int rgb2_max, rgb2_min;     /* or bg_bsat, bg_brot (both scaled by 10)*/
  173. } bg[] = {
  174.     {0+8,   2,0,  1,15},        /* checkered:  tan/black vs. white/ice blue */
  175.     {0+24,  2,0,  1,0},         /* checkered:  tan/black vs. white/black */
  176.     {0+8,   4,5,  0,2},         /* checkered:  gold/yellow vs. black/tan */
  177.     {0+8,   4,5,  0,6},         /* checkered:  gold/yellow vs. black/blue */
  178.     {0,     7,0,  8,9},         /* checkered:  deep blue/black vs. magenta */
  179.     {0+8,  13,0,  5,14},        /* checkered:  orange/black vs. yellow */
  180.     {0+8,  12,0, 10,11},        /* checkered:  orange/black vs. red */
  181.     {1,     7,0,  8,0},         /* diamonds:  deep blue/black vs. magenta */
  182.     {1,    12,0, 11,0},         /* diamonds:  orange vs. dark red */
  183.     {1,    10,0,  7,0},         /* diamonds:  red vs. medium blue */
  184.     {1,     4,0,  5,0},         /* diamonds:  gold vs. yellow */
  185.     {1,     3,0,  0,0},         /* diamonds:  medium green vs. black */
  186.     {2,    16, 100,  20,   0},  /* radial:  ~hard radial color-beams */
  187.     {2,    18, 100,  10,   2},  /* radial:  soft, curved radial color-beams */
  188.     {2,    16, 256, 100, 250},  /* radial:  very tight spiral */
  189.     {2, 10000, 256,  11,   0}   /* radial:  dipole-moire' (almost fractal) */
  190. };
  191. static int num_bgpat = sizeof(bg) / sizeof(struct background_pattern);
  192. /* Windows-specific global variables (could go in struct, but messy...) */
  193. static ulg wimage_rowbytes;
  194. static uch *dib;
  195. static uch *wimage_data;
  196. static BITMAPINFOHEADER *bmih;
  197. static HWND global_hwnd;
  198. static HINSTANCE global_hInst;
  199. static int global_showmode;
  200. int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, PSTR cmd, int showmode)
  201. {
  202.     char *args[1024];                 /* arbitrary limit, but should suffice */
  203.     char **argv = args;
  204.     char *p, *q, *bgstr = NULL;
  205.     int argc = 0;
  206.     int rc, alen, flen;
  207.     int error = 0;
  208.     int timing = FALSE;
  209.     int have_bg = FALSE;
  210.     double LUT_exponent;              /* just the lookup table */
  211.     double CRT_exponent = 2.2;        /* just the monitor */
  212.     double default_display_exponent;  /* whole display system */
  213.     MSG msg;
  214.     /* First initialize a few things, just to be sure--memset takes care of
  215.      * default background color (black), booleans (FALSE), pointers (NULL),
  216.      * etc. */
  217.     global_hInst = hInst;
  218.     global_showmode = showmode;
  219.     filename = (char *)NULL;
  220.     memset(&rpng2_info, 0, sizeof(mainprog_info));
  221.     /* Next reenable console output, which normally goes to the bit bucket
  222.      * for windowed apps.  Closing the console window will terminate the
  223.      * app.  Thanks to David.Geldreich@realviz.com for supplying the magical
  224.      * incantation. */
  225.     AllocConsole();
  226.     freopen("CONOUT$", "a", stderr);
  227.     freopen("CONOUT$", "a", stdout);
  228.     /* Set the default value for our display-system exponent, i.e., the
  229.      * product of the CRT exponent and the exponent corresponding to
  230.      * the frame-buffer's lookup table (LUT), if any.  This is not an
  231.      * exhaustive list of LUT values (e.g., OpenStep has a lot of weird
  232.      * ones), but it should cover 99% of the current possibilities.  And
  233.      * yes, these ifdefs are completely wasted in a Windows program... */
  234. #if defined(NeXT)
  235.     /* third-party utilities can modify the default LUT exponent */
  236.     LUT_exponent = 1.0 / 2.2;
  237.     /*
  238.     if (some_next_function_that_returns_gamma(&next_gamma))
  239.         LUT_exponent = 1.0 / next_gamma;
  240.      */
  241. #elif defined(sgi)
  242.     LUT_exponent = 1.0 / 1.7;
  243.     /* there doesn't seem to be any documented function to
  244.      * get the "gamma" value, so we do it the hard way */
  245.     infile = fopen("/etc/config/system.glGammaVal", "r");
  246.     if (infile) {
  247.         double sgi_gamma;
  248.         fgets(tmpline, 80, infile);
  249.         fclose(infile);
  250.         sgi_gamma = atof(tmpline);
  251.         if (sgi_gamma > 0.0)
  252.             LUT_exponent = 1.0 / sgi_gamma;
  253.     }
  254. #elif defined(Macintosh)
  255.     LUT_exponent = 1.8 / 2.61;
  256.     /*
  257.     if (some_mac_function_that_returns_gamma(&mac_gamma))
  258.         LUT_exponent = mac_gamma / 2.61;
  259.      */
  260. #else
  261.     LUT_exponent = 1.0;   /* assume no LUT:  most PCs */
  262. #endif
  263.     /* the defaults above give 1.0, 1.3, 1.5 and 2.2, respectively: */
  264.     default_display_exponent = LUT_exponent * CRT_exponent;
  265.     /* If the user has set the SCREEN_GAMMA environment variable as suggested
  266.      * (somewhat imprecisely) in the libpng documentation, use that; otherwise
  267.      * use the default value we just calculated.  Either way, the user may
  268.      * override this via a command-line option. */
  269.     if ((p = getenv("SCREEN_GAMMA")) != NULL)
  270.         rpng2_info.display_exponent = atof(p);
  271.     else
  272.         rpng2_info.display_exponent = default_display_exponent;
  273.     /* Windows really hates command lines, so we have to set up our own argv.
  274.      * Note that we do NOT bother with quoted arguments here, so don't use
  275.      * filenames with spaces in 'em! */
  276.     argv[argc++] = PROGNAME;
  277.     p = cmd;
  278.     for (;;) {
  279.         if (*p == ' ')
  280.             while (*++p == ' ')
  281.                 ;
  282.         /* now p points at the first non-space after some spaces */
  283.         if (*p == '')
  284.             break;    /* nothing after the spaces:  done */
  285.         argv[argc++] = q = p;
  286.         while (*q && *q != ' ')
  287.             ++q;
  288.         /* now q points at a space or the end of the string */
  289.         if (*q == '')
  290.             break;    /* last argv already terminated; quit */
  291.         *q = '';    /* change space to terminator */
  292.         p = q + 1;
  293.     }
  294.     argv[argc] = NULL;   /* terminate the argv array itself */
  295.     /* Now parse the command line for options and the PNG filename. */
  296.     while (*++argv && !error) {
  297.         if (!strncmp(*argv, "-gamma", 2)) {
  298.             if (!*++argv)
  299.                 ++error;
  300.             else {
  301.                 rpng2_info.display_exponent = atof(*argv);
  302.                 if (rpng2_info.display_exponent <= 0.0)
  303.                     ++error;
  304.             }
  305.         } else if (!strncmp(*argv, "-bgcolor", 4)) {
  306.             if (!*++argv)
  307.                 ++error;
  308.             else {
  309.                 bgstr = *argv;
  310.                 if (strlen(bgstr) != 7 || bgstr[0] != '#')
  311.                     ++error;
  312.                 else {
  313.                     have_bg = TRUE;
  314.                     bg_image = FALSE;
  315.                 }
  316.             }
  317.         } else if (!strncmp(*argv, "-bgpat", 4)) {
  318.             if (!*++argv)
  319.                 ++error;
  320.             else {
  321.                 pat = atoi(*argv) - 1;
  322.                 if (pat < 0 || pat >= num_bgpat)
  323.                     ++error;
  324.                 else {
  325.                     bg_image = TRUE;
  326.                     have_bg = FALSE;
  327.                 }
  328.             }
  329.         } else if (!strncmp(*argv, "-timing", 2)) {
  330.             timing = TRUE;
  331. #if (defined(__i386__) || defined(_M_IX86) || defined(__x86_64__))
  332.         } else if (!strncmp(*argv, "-nommxfilters", 7)) {
  333.             rpng2_info.nommxfilters = TRUE;
  334.         } else if (!strncmp(*argv, "-nommxcombine", 7)) {
  335.             rpng2_info.nommxcombine = TRUE;
  336.         } else if (!strncmp(*argv, "-nommxinterlace", 7)) {
  337.             rpng2_info.nommxinterlace = TRUE;
  338.         } else if (!strcmp(*argv, "-nommx")) {
  339.             rpng2_info.nommxfilters = TRUE;
  340.             rpng2_info.nommxcombine = TRUE;
  341.             rpng2_info.nommxinterlace = TRUE;
  342. #endif
  343.         } else {
  344.             if (**argv != '-') {
  345.                 filename = *argv;
  346.                 if (argv[1])   /* shouldn't be any more args after filename */
  347.                     ++error;
  348.             } else
  349.                 ++error;   /* not expecting any other options */
  350.         }
  351.     }
  352.     if (!filename)
  353.         ++error;
  354.     /* print usage screen if any errors up to this point */
  355.     if (error) {
  356.         int ch;
  357.         fprintf(stderr, "n%s %s:  %snn", PROGNAME, VERSION, appname);
  358.         readpng2_version_info();
  359.         fprintf(stderr, "n"
  360.           "Usage:  %s [-gamma exp] [-bgcolor bg | -bgpat pat] [-timing]n"
  361. #if (defined(__i386__) || defined(_M_IX86) || defined(__x86_64__))
  362.           "        %*s [[-nommxfilters] [-nommxcombine] [-nommxinterlace] | -nommx]n"
  363. #endif
  364.           "        %*s file.pngnn"
  365.           "    exp ttransfer-function exponent (``gamma'') of the displayn"
  366.           "tt  system in floating-point format (e.g., ``%.1f''); equaln"
  367.           "tt  to the product of the lookup-table exponent (varies)n"
  368.           "tt  and the CRT exponent (usually 2.2); must be positiven"
  369.           "    bg  tdesired background color in 7-character hex RGB formatn"
  370.           "tt  (e.g., ``#ff7700'' for orange:  same as HTML colors);n"
  371.           "tt  used with transparent images; overrides -bgpat optionn"
  372.           "    pat tdesired background pattern number (1-%d); used withn"
  373.           "tt  transparent images; overrides -bgcolor optionn"
  374.           "    -timingtenables delay for every block read, to simulate modemn"
  375.           "tt  download of image (~36 Kbps)n"
  376. #if (defined(__i386__) || defined(_M_IX86) || defined(__x86_64__))
  377.           "    -nommx*tdisable optimized MMX routines for decoding row filters,n"
  378.           "tt  combining rows, and expanding interlacing, respectivelyn"
  379. #endif
  380.           "nPress Q, Esc or mouse button 1 after image is displayed to quit.n"
  381.           "Press Q or Esc to quit this usage screen. ",
  382.           PROGNAME,
  383. #if (defined(__i386__) || defined(_M_IX86) || defined(__x86_64__))
  384.           (int)strlen(PROGNAME), " ",
  385. #endif
  386.           (int)strlen(PROGNAME), " ", default_display_exponent, num_bgpat);
  387.         fflush(stderr);
  388.         do
  389.             ch = _getch();
  390.         while (ch != 'q' && ch != 'Q' && ch != 0x1B);
  391.         exit(1);
  392.     }
  393.     if (!(infile = fopen(filename, "rb"))) {
  394.         fprintf(stderr, PROGNAME ":  can't open PNG file [%s]n", filename);
  395.         ++error;
  396.     } else {
  397.         incount = fread(inbuf, 1, INBUFSIZE, infile);
  398.         if (incount < 8 || !readpng2_check_sig(inbuf, 8)) {
  399.             fprintf(stderr, PROGNAME
  400.               ":  [%s] is not a PNG file: incorrect signaturen",
  401.               filename);
  402.             ++error;
  403.         } else if ((rc = readpng2_init(&rpng2_info)) != 0) {
  404.             switch (rc) {
  405.                 case 2:
  406.                     fprintf(stderr, PROGNAME
  407.                       ":  [%s] has bad IHDR (libpng longjmp)n", filename);
  408.                     break;
  409.                 case 4:
  410.                     fprintf(stderr, PROGNAME ":  insufficient memoryn");
  411.                     break;
  412.                 default:
  413.                     fprintf(stderr, PROGNAME
  414.                       ":  unknown readpng2_init() errorn");
  415.                     break;
  416.             }
  417.             ++error;
  418.         }
  419.         if (error)
  420.             fclose(infile);
  421.     }
  422.     if (error) {
  423.         int ch;
  424.         fprintf(stderr, PROGNAME ":  aborting.n");
  425.         do
  426.             ch = _getch();
  427.         while (ch != 'q' && ch != 'Q' && ch != 0x1B);
  428.         exit(2);
  429.     } else {
  430.         fprintf(stderr, "n%s %s:  %sn", PROGNAME, VERSION, appname);
  431.         fprintf(stderr,
  432.           "n   [console window:  closing this window will terminate %s]nn",
  433.           PROGNAME);
  434.         fflush(stderr);
  435.     }
  436.     /* set the title-bar string, but make sure buffer doesn't overflow */
  437.     alen = strlen(appname);
  438.     flen = strlen(filename);
  439.     if (alen + flen + 3 > 1023)
  440.         sprintf(titlebar, "%s:  ...%s", appname, filename+(alen+flen+6-1023));
  441.     else
  442.         sprintf(titlebar, "%s:  %s", appname, filename);
  443.     /* set some final rpng2_info variables before entering main data loop */
  444.     if (have_bg) {
  445.         unsigned r, g, b;   /* this approach quiets compiler warnings */
  446.         sscanf(bgstr+1, "%2x%2x%2x", &r, &g, &b);
  447.         rpng2_info.bg_red   = (uch)r;
  448.         rpng2_info.bg_green = (uch)g;
  449.         rpng2_info.bg_blue  = (uch)b;
  450.     } else
  451.         rpng2_info.need_bgcolor = TRUE;
  452.     rpng2_info.state = kPreInit;
  453.     rpng2_info.mainprog_init = rpng2_win_init;
  454.     rpng2_info.mainprog_display_row = rpng2_win_display_row;
  455.     rpng2_info.mainprog_finish_display = rpng2_win_finish_display;
  456.     /* OK, this is the fun part:  call readpng2_decode_data() at the start of
  457.      * the loop to deal with our first buffer of data (read in above to verify
  458.      * that the file is a PNG image), then loop through the file and continue
  459.      * calling the same routine to handle each chunk of data.  It in turn
  460.      * passes the data to libpng, which will invoke one or more of our call-
  461.      * backs as decoded data become available.  We optionally call Sleep() for
  462.      * one second per iteration to simulate downloading the image via an analog
  463.      * modem. */
  464.     for (;;) {
  465.         Trace((stderr, "about to call readpng2_decode_data()n"))
  466.         if (readpng2_decode_data(&rpng2_info, inbuf, incount))
  467.             ++error;
  468.         Trace((stderr, "done with readpng2_decode_data()n"))
  469.         if (error || incount != INBUFSIZE || rpng2_info.state == kDone) {
  470.             if (rpng2_info.state == kDone) {
  471.                 Trace((stderr, "done decoding PNG imagen"))
  472.             } else if (ferror(infile)) {
  473.                 fprintf(stderr, PROGNAME
  474.                   ":  error while reading PNG image filen");
  475.                 exit(3);
  476.             } else if (feof(infile)) {
  477.                 fprintf(stderr, PROGNAME ":  end of file reached "
  478.                   "(unexpectedly) while reading PNG image filen");
  479.                 exit(3);
  480.             } else /* if (error) */ {
  481.                 // will print error message below
  482.             }
  483.             break;
  484.         }
  485.         if (timing)
  486.             Sleep(1000L);
  487.         incount = fread(inbuf, 1, INBUFSIZE, infile);
  488.     }
  489.     /* clean up PNG stuff and report any decoding errors */
  490.     fclose(infile);
  491.     Trace((stderr, "about to call readpng2_cleanup()n"))
  492.     readpng2_cleanup(&rpng2_info);
  493.     if (error) {
  494.         fprintf(stderr, PROGNAME ":  libpng error while decoding PNG imagen");
  495.         exit(3);
  496.     }
  497.     /* wait for the user to tell us when to quit */
  498.     while (GetMessage(&msg, NULL, 0, 0)) {
  499.         TranslateMessage(&msg);
  500.         DispatchMessage(&msg);
  501.     }
  502.     /* we're done:  clean up all image and Windows resources and go away */
  503.     Trace((stderr, "about to call rpng2_win_cleanup()n"))
  504.     rpng2_win_cleanup();
  505.     return msg.wParam;
  506. }
  507. /* this function is called by readpng2_info_callback() in readpng2.c, which
  508.  * in turn is called by libpng after all of the pre-IDAT chunks have been
  509.  * read and processed--i.e., we now have enough info to finish initializing */
  510. static void rpng2_win_init()
  511. {
  512.     ulg i;
  513.     ulg rowbytes = rpng2_info.rowbytes;
  514.     Trace((stderr, "beginning rpng2_win_init()n"))
  515.     Trace((stderr, "  rowbytes = %dn", rpng2_info.rowbytes))
  516.     Trace((stderr, "  width  = %ldn", rpng2_info.width))
  517.     Trace((stderr, "  height = %ldn", rpng2_info.height))
  518.     rpng2_info.image_data = (uch *)malloc(rowbytes * rpng2_info.height);
  519.     if (!rpng2_info.image_data) {
  520.         readpng2_cleanup(&rpng2_info);
  521.         return;
  522.     }
  523.     rpng2_info.row_pointers = (uch **)malloc(rpng2_info.height * sizeof(uch *));
  524.     if (!rpng2_info.row_pointers) {
  525.         free(rpng2_info.image_data);
  526.         rpng2_info.image_data = NULL;
  527.         readpng2_cleanup(&rpng2_info);
  528.         return;
  529.     }
  530.     for (i = 0;  i < rpng2_info.height;  ++i)
  531.         rpng2_info.row_pointers[i] = rpng2_info.image_data + i*rowbytes;
  532. /*---------------------------------------------------------------------------
  533.     Do the basic Windows initialization stuff, make the window, and fill it
  534.     with the user-specified, file-specified or default background color.
  535.   ---------------------------------------------------------------------------*/
  536.     if (rpng2_win_create_window()) {
  537.         readpng2_cleanup(&rpng2_info);
  538.         return;
  539.     }
  540.     rpng2_info.state = kWindowInit;
  541. }
  542. static int rpng2_win_create_window()
  543. {
  544.     uch bg_red   = rpng2_info.bg_red;
  545.     uch bg_green = rpng2_info.bg_green;
  546.     uch bg_blue  = rpng2_info.bg_blue;
  547.     uch *dest;
  548.     int extra_width, extra_height;
  549.     ulg i, j;
  550.     WNDCLASSEX wndclass;
  551.     RECT rect;
  552. /*---------------------------------------------------------------------------
  553.     Allocate memory for the display-specific version of the image (round up
  554.     to multiple of 4 for Windows DIB).
  555.   ---------------------------------------------------------------------------*/
  556.     wimage_rowbytes = ((3*rpng2_info.width + 3L) >> 2) << 2;
  557.     if (!(dib = (uch *)malloc(sizeof(BITMAPINFOHEADER) +
  558.                               wimage_rowbytes*rpng2_info.height)))
  559.     {
  560.         return 4;   /* fail */
  561.     }
  562. /*---------------------------------------------------------------------------
  563.     Initialize the DIB.  Negative height means to use top-down BMP ordering
  564.     (must be uncompressed, but that's what we want).  Bit count of 1, 4 or 8
  565.     implies a colormap of RGBX quads, but 24-bit BMPs just use B,G,R values
  566.     directly => wimage_data begins immediately after BMP header.
  567.   ---------------------------------------------------------------------------*/
  568.     memset(dib, 0, sizeof(BITMAPINFOHEADER));
  569.     bmih = (BITMAPINFOHEADER *)dib;
  570.     bmih->biSize = sizeof(BITMAPINFOHEADER);
  571.     bmih->biWidth = rpng2_info.width;
  572.     bmih->biHeight = -((long)rpng2_info.height);
  573.     bmih->biPlanes = 1;
  574.     bmih->biBitCount = 24;
  575.     bmih->biCompression = 0;
  576.     wimage_data = dib + sizeof(BITMAPINFOHEADER);
  577. /*---------------------------------------------------------------------------
  578.     Fill window with the specified background color (default is black), but
  579.     defer loading faked "background image" until window is displayed (may be
  580.     slow to compute).  Data are in BGR order.
  581.   ---------------------------------------------------------------------------*/
  582.     if (bg_image) {   /* just fill with black for now */
  583.         memset(wimage_data, 0, wimage_rowbytes*rpng2_info.height);
  584.     } else {
  585.         for (j = 0;  j < rpng2_info.height;  ++j) {
  586.             dest = wimage_data + j*wimage_rowbytes;
  587.             for (i = rpng2_info.width;  i > 0;  --i) {
  588.                 *dest++ = bg_blue;
  589.                 *dest++ = bg_green;
  590.                 *dest++ = bg_red;
  591.             }
  592.         }
  593.     }
  594. /*---------------------------------------------------------------------------
  595.     Set the window parameters.
  596.   ---------------------------------------------------------------------------*/
  597.     memset(&wndclass, 0, sizeof(wndclass));
  598.     wndclass.cbSize = sizeof(wndclass);
  599.     wndclass.style = CS_HREDRAW | CS_VREDRAW;
  600.     wndclass.lpfnWndProc = rpng2_win_wndproc;
  601.     wndclass.hInstance = global_hInst;
  602.     wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
  603.     wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
  604.     wndclass.hbrBackground = (HBRUSH)GetStockObject(DKGRAY_BRUSH);
  605.     wndclass.lpszMenuName = NULL;
  606.     wndclass.lpszClassName = progname;
  607.     wndclass.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
  608.     RegisterClassEx(&wndclass);
  609. /*---------------------------------------------------------------------------
  610.     Finally, create the window.
  611.   ---------------------------------------------------------------------------*/
  612.     extra_width  = 2*(GetSystemMetrics(SM_CXBORDER) +
  613.                       GetSystemMetrics(SM_CXDLGFRAME));
  614.     extra_height = 2*(GetSystemMetrics(SM_CYBORDER) +
  615.                       GetSystemMetrics(SM_CYDLGFRAME)) +
  616.                       GetSystemMetrics(SM_CYCAPTION);
  617.     global_hwnd = CreateWindow(progname, titlebar, WS_OVERLAPPEDWINDOW,
  618.       CW_USEDEFAULT, CW_USEDEFAULT, rpng2_info.width+extra_width,
  619.       rpng2_info.height+extra_height, NULL, NULL, global_hInst, NULL);
  620.     ShowWindow(global_hwnd, global_showmode);
  621.     UpdateWindow(global_hwnd);
  622. /*---------------------------------------------------------------------------
  623.     Now compute the background image and display it.  If it fails (memory
  624.     allocation), revert to a plain background color.
  625.   ---------------------------------------------------------------------------*/
  626.     if (bg_image) {
  627.         static const char *msg = "Computing background image...";
  628.         int x, y, len = strlen(msg);
  629.         HDC hdc = GetDC(global_hwnd);
  630.         TEXTMETRIC tm;
  631.         GetTextMetrics(hdc, &tm);
  632.         x = (rpng2_info.width - len*tm.tmAveCharWidth)/2;
  633.         y = (rpng2_info.height - tm.tmHeight)/2;
  634.         SetBkMode(hdc, TRANSPARENT);
  635.         SetTextColor(hdc, GetSysColor(COLOR_HIGHLIGHTTEXT));
  636.         /* this can still begin out of bounds even if x is positive (???): */
  637.         TextOut(hdc, ((x < 0)? 0 : x), ((y < 0)? 0 : y), msg, len);
  638.         ReleaseDC(global_hwnd, hdc);
  639.         rpng2_win_load_bg_image();   /* resets bg_image if fails */
  640.     }
  641.     if (!bg_image) {
  642.         for (j = 0;  j < rpng2_info.height;  ++j) {
  643.             dest = wimage_data + j*wimage_rowbytes;
  644.             for (i = rpng2_info.width;  i > 0;  --i) {
  645.                 *dest++ = bg_blue;
  646.                 *dest++ = bg_green;
  647.                 *dest++ = bg_red;
  648.             }
  649.         }
  650.     }
  651.     rect.left = 0L;
  652.     rect.top = 0L;
  653.     rect.right = (LONG)rpng2_info.width;       /* possibly off by one? */
  654.     rect.bottom = (LONG)rpng2_info.height;     /* possibly off by one? */
  655.     InvalidateRect(global_hwnd, &rect, FALSE);
  656.     UpdateWindow(global_hwnd);                 /* similar to XFlush() */
  657.     return 0;
  658. } /* end function rpng2_win_create_window() */
  659. static int rpng2_win_load_bg_image()
  660. {
  661.     uch *src, *dest;
  662.     uch r1, r2, g1, g2, b1, b2;
  663.     uch r1_inv, r2_inv, g1_inv, g2_inv, b1_inv, b2_inv;
  664.     int k, hmax, max;
  665.     int xidx, yidx, yidx_max = (bgscale-1);
  666.     int even_odd_vert, even_odd_horiz, even_odd;
  667.     int invert_gradient2 = (bg[pat].type & 0x08);
  668.     int invert_column;
  669.     ulg i, row;
  670. /*---------------------------------------------------------------------------
  671.     Allocate buffer for fake background image to be used with transparent
  672.     images; if this fails, revert to plain background color.
  673.   ---------------------------------------------------------------------------*/
  674.     bg_rowbytes = 3 * rpng2_info.width;
  675.     bg_data = (uch *)malloc(bg_rowbytes * rpng2_info.height);
  676.     if (!bg_data) {
  677.         fprintf(stderr, PROGNAME
  678.           ":  unable to allocate memory for background imagen");
  679.         bg_image = 0;
  680.         return 1;
  681.     }
  682. /*---------------------------------------------------------------------------
  683.     Vertical gradients (ramps) in NxN squares, alternating direction and
  684.     colors (N == bgscale).
  685.   ---------------------------------------------------------------------------*/
  686.     if ((bg[pat].type & 0x07) == 0) {
  687.         uch r1_min  = rgb[bg[pat].rgb1_min].r;
  688.         uch g1_min  = rgb[bg[pat].rgb1_min].g;
  689.         uch b1_min  = rgb[bg[pat].rgb1_min].b;
  690.         uch r2_min  = rgb[bg[pat].rgb2_min].r;
  691.         uch g2_min  = rgb[bg[pat].rgb2_min].g;
  692.         uch b2_min  = rgb[bg[pat].rgb2_min].b;
  693.         int r1_diff = rgb[bg[pat].rgb1_max].r - r1_min;
  694.         int g1_diff = rgb[bg[pat].rgb1_max].g - g1_min;
  695.         int b1_diff = rgb[bg[pat].rgb1_max].b - b1_min;
  696.         int r2_diff = rgb[bg[pat].rgb2_max].r - r2_min;
  697.         int g2_diff = rgb[bg[pat].rgb2_max].g - g2_min;
  698.         int b2_diff = rgb[bg[pat].rgb2_max].b - b2_min;
  699.         for (row = 0;  row < rpng2_info.height;  ++row) {
  700.             yidx = row % bgscale;
  701.             even_odd_vert = (row / bgscale) & 1;
  702.             r1 = r1_min + (r1_diff * yidx) / yidx_max;
  703.             g1 = g1_min + (g1_diff * yidx) / yidx_max;
  704.             b1 = b1_min + (b1_diff * yidx) / yidx_max;
  705.             r1_inv = r1_min + (r1_diff * (yidx_max-yidx)) / yidx_max;
  706.             g1_inv = g1_min + (g1_diff * (yidx_max-yidx)) / yidx_max;
  707.             b1_inv = b1_min + (b1_diff * (yidx_max-yidx)) / yidx_max;
  708.             r2 = r2_min + (r2_diff * yidx) / yidx_max;
  709.             g2 = g2_min + (g2_diff * yidx) / yidx_max;
  710.             b2 = b2_min + (b2_diff * yidx) / yidx_max;
  711.             r2_inv = r2_min + (r2_diff * (yidx_max-yidx)) / yidx_max;
  712.             g2_inv = g2_min + (g2_diff * (yidx_max-yidx)) / yidx_max;
  713.             b2_inv = b2_min + (b2_diff * (yidx_max-yidx)) / yidx_max;
  714.             dest = bg_data + row*bg_rowbytes;
  715.             for (i = 0;  i < rpng2_info.width;  ++i) {
  716.                 even_odd_horiz = (i / bgscale) & 1;
  717.                 even_odd = even_odd_vert ^ even_odd_horiz;
  718.                 invert_column =
  719.                   (even_odd_horiz && (bg[pat].type & 0x10));
  720.                 if (even_odd == 0) {         /* gradient #1 */
  721.                     if (invert_column) {
  722.                         *dest++ = r1_inv;
  723.                         *dest++ = g1_inv;
  724.                         *dest++ = b1_inv;
  725.                     } else {
  726.                         *dest++ = r1;
  727.                         *dest++ = g1;
  728.                         *dest++ = b1;
  729.                     }
  730.                 } else {                     /* gradient #2 */
  731.                     if ((invert_column && invert_gradient2) ||
  732.                         (!invert_column && !invert_gradient2))
  733.                     {
  734.                         *dest++ = r2;        /* not inverted or */
  735.                         *dest++ = g2;        /*  doubly inverted */
  736.                         *dest++ = b2;
  737.                     } else {
  738.                         *dest++ = r2_inv;
  739.                         *dest++ = g2_inv;    /* singly inverted */
  740.                         *dest++ = b2_inv;
  741.                     }
  742.                 }
  743.             }
  744.         }
  745. /*---------------------------------------------------------------------------
  746.     Soft gradient-diamonds with scale = bgscale.  Code contributed by Adam
  747.     M. Costello.
  748.   ---------------------------------------------------------------------------*/
  749.     } else if ((bg[pat].type & 0x07) == 1) {
  750.         hmax = (bgscale-1)/2;   /* half the max weight of a color */
  751.         max = 2*hmax;           /* the max weight of a color */
  752.         r1 = rgb[bg[pat].rgb1_max].r;
  753.         g1 = rgb[bg[pat].rgb1_max].g;
  754.         b1 = rgb[bg[pat].rgb1_max].b;
  755.         r2 = rgb[bg[pat].rgb2_max].r;
  756.         g2 = rgb[bg[pat].rgb2_max].g;
  757.         b2 = rgb[bg[pat].rgb2_max].b;
  758.         for (row = 0;  row < rpng2_info.height;  ++row) {
  759.             yidx = row % bgscale;
  760.             if (yidx > hmax)
  761.                 yidx = bgscale-1 - yidx;
  762.             dest = bg_data + row*bg_rowbytes;
  763.             for (i = 0;  i < rpng2_info.width;  ++i) {
  764.                 xidx = i % bgscale;
  765.                 if (xidx > hmax)
  766.                     xidx = bgscale-1 - xidx;
  767.                 k = xidx + yidx;
  768.                 *dest++ = (k*r1 + (max-k)*r2) / max;
  769.                 *dest++ = (k*g1 + (max-k)*g2) / max;
  770.                 *dest++ = (k*b1 + (max-k)*b2) / max;
  771.             }
  772.         }
  773. /*---------------------------------------------------------------------------
  774.     Radial "starburst" with azimuthal sinusoids; [eventually number of sinu-
  775.     soids will equal bgscale?].  This one is slow but very cool.  Code con-
  776.     tributed by Pieter S. van der Meulen (originally in Smalltalk).
  777.   ---------------------------------------------------------------------------*/
  778.     } else if ((bg[pat].type & 0x07) == 2) {
  779.         uch ch;
  780.         int ii, x, y, hw, hh, grayspot;
  781.         double freq, rotate, saturate, gray, intensity;
  782.         double angle=0.0, aoffset=0.0, maxDist, dist;
  783.         double red=0.0, green=0.0, blue=0.0, hue, s, v, f, p, q, t;
  784.         fprintf(stderr, "%s:  computing radial background...",
  785.           PROGNAME);
  786.         fflush(stderr);
  787.         hh = rpng2_info.height / 2;
  788.         hw = rpng2_info.width / 2;
  789.         /* variables for radial waves:
  790.          *   aoffset:  number of degrees to rotate hue [CURRENTLY NOT USED]
  791.          *   freq:  number of color beams originating from the center
  792.          *   grayspot:  size of the graying center area (anti-alias)
  793.          *   rotate:  rotation of the beams as a function of radius
  794.          *   saturate:  saturation of beams' shape azimuthally
  795.          */
  796.         angle = CLIP(angle, 0.0, 360.0);
  797.         grayspot = CLIP(bg[pat].bg_gray, 1, (hh + hw));
  798.         freq = MAX((double)bg[pat].bg_freq, 0.0);
  799.         saturate = (double)bg[pat].bg_bsat * 0.1;
  800.         rotate = (double)bg[pat].bg_brot * 0.1;
  801.         gray = 0.0;
  802.         intensity = 0.0;
  803.         maxDist = (double)((hw*hw) + (hh*hh));
  804.         for (row = 0;  row < rpng2_info.height;  ++row) {
  805.             y = row - hh;
  806.             dest = bg_data + row*bg_rowbytes;
  807.             for (i = 0;  i < rpng2_info.width;  ++i) {
  808.                 x = i - hw;
  809.                 angle = (x == 0)? PI_2 : atan((double)y / (double)x);
  810.                 gray = (double)MAX(ABS(y), ABS(x)) / grayspot;
  811.                 gray = MIN(1.0, gray);
  812.                 dist = (double)((x*x) + (y*y)) / maxDist;
  813.                 intensity = cos((angle+(rotate*dist*PI)) * freq) *
  814.                   gray * saturate;
  815.                 intensity = (MAX(MIN(intensity,1.0),-1.0) + 1.0) * 0.5;
  816.                 hue = (angle + PI) * INV_PI_360 + aoffset;
  817.                 s = gray * ((double)(ABS(x)+ABS(y)) / (double)(hw + hh));
  818.                 s = MIN(MAX(s,0.0), 1.0);
  819.                 v = MIN(MAX(intensity,0.0), 1.0);
  820.                 if (s == 0.0) {
  821.                     ch = (uch)(v * 255.0);
  822.                     *dest++ = ch;
  823.                     *dest++ = ch;
  824.                     *dest++ = ch;
  825.                 } else {
  826.                     if ((hue < 0.0) || (hue >= 360.0))
  827.                         hue -= (((int)(hue / 360.0)) * 360.0);
  828.                     hue /= 60.0;
  829.                     ii = (int)hue;
  830.                     f = hue - (double)ii;
  831.                     p = (1.0 - s) * v;
  832.                     q = (1.0 - (s * f)) * v;
  833.                     t = (1.0 - (s * (1.0 - f))) * v;
  834.                     if      (ii == 0) { red = v; green = t; blue = p; }
  835.                     else if (ii == 1) { red = q; green = v; blue = p; }
  836.                     else if (ii == 2) { red = p; green = v; blue = t; }
  837.                     else if (ii == 3) { red = p; green = q; blue = v; }
  838.                     else if (ii == 4) { red = t; green = p; blue = v; }
  839.                     else if (ii == 5) { red = v; green = p; blue = q; }
  840.                     *dest++ = (uch)(red * 255.0);
  841.                     *dest++ = (uch)(green * 255.0);
  842.                     *dest++ = (uch)(blue * 255.0);
  843.                 }
  844.             }
  845.         }
  846.         fprintf(stderr, "done.n");
  847.         fflush(stderr);
  848.     }
  849. /*---------------------------------------------------------------------------
  850.     Blast background image to display buffer before beginning PNG decode;
  851.     calling function will handle invalidation and UpdateWindow() call.
  852.   ---------------------------------------------------------------------------*/
  853.     for (row = 0;  row < rpng2_info.height;  ++row) {
  854.         src = bg_data + row*bg_rowbytes;
  855.         dest = wimage_data + row*wimage_rowbytes;
  856.         for (i = rpng2_info.width;  i > 0;  --i) {
  857.             r1 = *src++;
  858.             g1 = *src++;
  859.             b1 = *src++;
  860.             *dest++ = b1;
  861.             *dest++ = g1;   /* note reverse order */
  862.             *dest++ = r1;
  863.         }
  864.     }
  865.     return 0;
  866. } /* end function rpng2_win_load_bg_image() */
  867. static void rpng2_win_display_row(ulg row)
  868. {
  869.     uch bg_red   = rpng2_info.bg_red;
  870.     uch bg_green = rpng2_info.bg_green;
  871.     uch bg_blue  = rpng2_info.bg_blue;
  872.     uch *src, *src2=NULL, *dest;
  873.     uch r, g, b, a;
  874.     ulg i;
  875.     static int rows=0;
  876.     static ulg firstrow;
  877. /*---------------------------------------------------------------------------
  878.     rows and firstrow simply track how many rows (and which ones) have not
  879.     yet been displayed; alternatively, we could call InvalidateRect() for
  880.     every row and not bother with the records-keeping.
  881.   ---------------------------------------------------------------------------*/
  882.     Trace((stderr, "beginning rpng2_win_display_row()n"))
  883.     if (rows == 0)
  884.         firstrow = row;   /* first row not yet displayed */
  885.     ++rows;   /* count of rows received but not yet displayed */
  886. /*---------------------------------------------------------------------------
  887.     Aside from the use of the rpng2_info struct and the lack of an outer
  888.     loop (over rows), this routine is identical to rpng_win_display_image()
  889.     in the non-progressive version of the program.
  890.   ---------------------------------------------------------------------------*/
  891.     src = rpng2_info.image_data + row*rpng2_info.rowbytes;
  892.     if (bg_image)
  893.         src2 = bg_data + row*bg_rowbytes;
  894.     dest = wimage_data + row*wimage_rowbytes;
  895.     if (rpng2_info.channels == 3) {
  896.         for (i = rpng2_info.width;  i > 0;  --i) {
  897.             r = *src++;
  898.             g = *src++;
  899.             b = *src++;
  900.             *dest++ = b;
  901.             *dest++ = g;   /* note reverse order */
  902.             *dest++ = r;
  903.         }
  904.     } else /* if (rpng2_info.channels == 4) */ {
  905.         for (i = rpng2_info.width;  i > 0;  --i) {
  906.             r = *src++;
  907.             g = *src++;
  908.             b = *src++;
  909.             a = *src++;
  910.             if (bg_image) {
  911.                 bg_red   = *src2++;
  912.                 bg_green = *src2++;
  913.                 bg_blue  = *src2++;
  914.             }
  915.             if (a == 255) {
  916.                 *dest++ = b;
  917.                 *dest++ = g;
  918.                 *dest++ = r;
  919.             } else if (a == 0) {
  920.                 *dest++ = bg_blue;
  921.                 *dest++ = bg_green;
  922.                 *dest++ = bg_red;
  923.             } else {
  924.                 /* this macro (copied from png.h) composites the
  925.                  * foreground and background values and puts the
  926.                  * result into the first argument; there are no
  927.                  * side effects with the first argument */
  928.                 alpha_composite(*dest++, b, a, bg_blue);
  929.                 alpha_composite(*dest++, g, a, bg_green);
  930.                 alpha_composite(*dest++, r, a, bg_red);
  931.             }
  932.         }
  933.     }
  934. /*---------------------------------------------------------------------------
  935.     Display after every 16 rows or when on last row.  (Region may include
  936.     previously displayed lines due to interlacing--i.e., not contiguous.)
  937.   ---------------------------------------------------------------------------*/
  938.     if ((rows & 0xf) == 0 || row == rpng2_info.height-1) {
  939.         RECT rect;
  940.         rect.left = 0L;
  941.         rect.top = (LONG)firstrow;
  942.         rect.right = (LONG)rpng2_info.width;       /* possibly off by one? */
  943.         rect.bottom = (LONG)row + 1L;              /* possibly off by one? */
  944.         InvalidateRect(global_hwnd, &rect, FALSE);
  945.         UpdateWindow(global_hwnd);                 /* similar to XFlush() */
  946.         rows = 0;
  947.     }
  948. } /* end function rpng2_win_display_row() */
  949. static void rpng2_win_finish_display()
  950. {
  951.     Trace((stderr, "beginning rpng2_win_finish_display()n"))
  952.     /* last row has already been displayed by rpng2_win_display_row(), so
  953.      * we have nothing to do here except set a flag and let the user know
  954.      * that the image is done */
  955.     rpng2_info.state = kDone;
  956.     printf(
  957.       "Done.  Press Q, Esc or mouse button 1 (within image window) to quit.n");
  958.     fflush(stdout);
  959. }
  960. static void rpng2_win_cleanup()
  961. {
  962.     if (bg_image && bg_data) {
  963.         free(bg_data);
  964.         bg_data = NULL;
  965.     }
  966.     if (rpng2_info.image_data) {
  967.         free(rpng2_info.image_data);
  968.         rpng2_info.image_data = NULL;
  969.     }
  970.     if (rpng2_info.row_pointers) {
  971.         free(rpng2_info.row_pointers);
  972.         rpng2_info.row_pointers = NULL;
  973.     }
  974.     if (dib) {
  975.         free(dib);
  976.         dib = NULL;
  977.     }
  978. }
  979. LRESULT CALLBACK rpng2_win_wndproc(HWND hwnd, UINT iMsg, WPARAM wP, LPARAM lP)
  980. {
  981.     HDC         hdc;
  982.     PAINTSTRUCT ps;
  983.     int rc;
  984.     switch (iMsg) {
  985.         case WM_CREATE:
  986.             /* one-time processing here, if any */
  987.             return 0;
  988.         case WM_PAINT:
  989.             hdc = BeginPaint(hwnd, &ps);
  990.             rc = StretchDIBits(hdc, 0, 0, rpng2_info.width, rpng2_info.height,
  991.                                     0, 0, rpng2_info.width, rpng2_info.height,
  992.                                     wimage_data, (BITMAPINFO *)bmih,
  993.                                     0, SRCCOPY);
  994.             EndPaint(hwnd, &ps);
  995.             return 0;
  996.         /* wait for the user to tell us when to quit */
  997.         case WM_CHAR:
  998.             switch (wP) {       /* only need one, so ignore repeat count */
  999.                 case 'q':
  1000.                 case 'Q':
  1001.                 case 0x1B:      /* Esc key */
  1002.                     PostQuitMessage(0);
  1003.             }
  1004.             return 0;
  1005.         case WM_LBUTTONDOWN:    /* another way of quitting */
  1006.         case WM_DESTROY:
  1007.             PostQuitMessage(0);
  1008.             return 0;
  1009.     }
  1010.     return DefWindowProc(hwnd, iMsg, wP, lP);
  1011. }