亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? rpng2-win.c

?? Borland C++BuilderT 6 Developer s Guide
?? C
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
/*---------------------------------------------------------------------------

   rpng2 - progressive-model PNG display program                rpng2-win.c

   This program decodes and displays PNG files progressively, as if it were
   a web browser (though the front end is only set up to read from files).
   It supports gamma correction, user-specified background colors, and user-
   specified background patterns (for transparent images).  This version is
   for 32-bit Windows; it may compile under 16-bit Windows with a little
   tweaking (or maybe not).  Thanks to Adam Costello and Pieter S. van der
   Meulen for the "diamond" and "radial waves" patterns, respectively.

   to do:
    - stdout/stderr don't work!  need message window (maybe scrollable?)
    - handle quoted command-line args (especially filenames with spaces)
    - finish resizable checkerboard-gradient (sizes 4-128?)
    - use %.1023s to simplify truncation of title-bar string?
    - have minimum window width:  oh well

  ---------------------------------------------------------------------------

   Changelog:
    - 1.01:  initial public release
    - 1.02:  fixed cut-and-paste error in usage screen (oops...)
    - 1.03:  modified to allow abbreviated options
    - 1.04:  removed bogus extra argument from usage fprintf() [Glenn R-P?];
              fixed command-line parsing bug

  ---------------------------------------------------------------------------

      Copyright (c) 1998-2000 Greg Roelofs.  All rights reserved.

      This software is provided "as is," without warranty of any kind,
      express or implied.  In no event shall the author or contributors
      be held liable for any damages arising in any way from the use of
      this software.

      Permission is granted to anyone to use this software for any purpose,
      including commercial applications, and to alter it and redistribute
      it freely, subject to the following restrictions:

      1. Redistributions of source code must retain the above copyright
         notice, disclaimer, and this list of conditions.
      2. Redistributions in binary form must reproduce the above copyright
         notice, disclaimer, and this list of conditions in the documenta-
         tion and/or other materials provided with the distribution.
      3. All advertising materials mentioning features or use of this
         software must display the following acknowledgment:

            This product includes software developed by Greg Roelofs
            and contributors for the book, "PNG: The Definitive Guide,"
            published by O'Reilly and Associates.

  ---------------------------------------------------------------------------*/

#define PROGNAME  "rpng2-win"
#define LONGNAME  "Progressive PNG Viewer for Windows"
#define VERSION   "1.04 of 19 March 2000"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <setjmp.h>    /* for jmpbuf declaration in readpng2.h */
#include <time.h>
#include <math.h>      /* only for PvdM background code */
#include <windows.h>

/* all for PvdM background code: */
#ifndef PI
#  define PI             3.141592653589793238
#endif
#define PI_2             (PI*0.5)
#define INV_PI_360       (360.0 / PI)
#define MAX(a,b)         (a>b?a:b)
#define MIN(a,b)         (a<b?a:b)
#define CLIP(a,min,max)  MAX(min,MIN((a),max))
#define ABS(a)           ((a)<0?-(a):(a))
#define CLIP8P(c)        MAX(0,(MIN((c),255)))   /* 8-bit pos. integer (uch) */
#define ROUNDF(f)        ((int)(f + 0.5))

#define rgb1_max   bg_freq
#define rgb1_min   bg_gray
#define rgb2_max   bg_bsat
#define rgb2_min   bg_brot

/* #define DEBUG */     /* this enables the Trace() macros */

#include "readpng2.h"   /* typedefs, common macros, readpng2 prototypes */


/* could just include png.h, but this macro is the only thing we need
 * (name and typedefs changed to local versions); note that side effects
 * only happen with alpha (which could easily be avoided with
 * "ush acopy = (alpha);") */

#define alpha_composite(composite, fg, alpha, bg) {               \
    ush temp = ((ush)(fg)*(ush)(alpha) +                          \
                (ush)(bg)*(ush)(255 - (ush)(alpha)) + (ush)128);  \
    (composite) = (uch)((temp + (temp >> 8)) >> 8);               \
}


#define INBUFSIZE 4096   /* with pseudo-timing on (1 sec delay/block), this
                          *  block size corresponds roughly to a download
                          *  speed 10% faster than theoretical 33.6K maximum
                          *  (assuming 8 data bits, 1 stop bit and no other
                          *  overhead) */

/* local prototypes */
static void       rpng2_win_init(void);
static int        rpng2_win_create_window(void);
static int        rpng2_win_load_bg_image(void);
static void       rpng2_win_display_row(ulg row);
static void       rpng2_win_finish_display(void);
static void       rpng2_win_cleanup(void);
LRESULT CALLBACK  rpng2_win_wndproc(HWND, UINT, WPARAM, LPARAM);


static char titlebar[1024], *window_name = titlebar;
static char *progname = PROGNAME;
static char *appname = LONGNAME;
static char *icon_name = PROGNAME;    /* GRR:  not (yet) used */
static char *filename;
static FILE *infile;

static mainprog_info rpng2_info;

static uch inbuf[INBUFSIZE];
static int incount;

static int pat = 6;         /* must be less than num_bgpat */
static int bg_image = 0;
static int bgscale = 16;
static ulg bg_rowbytes;
static uch *bg_data;

static struct rgb_color {
    uch r, g, b;
} rgb[] = {
    {  0,   0,   0},    /*  0:  black */
    {255, 255, 255},    /*  1:  white */
    {173, 132,  57},    /*  2:  tan */
    { 64, 132,   0},    /*  3:  medium green */
    {189, 117,   1},    /*  4:  gold */
    {253, 249,   1},    /*  5:  yellow */
    {  0,   0, 255},    /*  6:  blue */
    {  0,   0, 120},    /*  7:  medium blue */
    {255,   0, 255},    /*  8:  magenta */
    { 64,   0,  64},    /*  9:  dark magenta */
    {255,   0,   0},    /* 10:  red */
    { 64,   0,   0},    /* 11:  dark red */
    {255, 127,   0},    /* 12:  orange */
    {192,  96,   0},    /* 13:  darker orange */
    { 24,  60,   0},    /* 14:  dark green-yellow */
    { 85, 125, 200}     /* 15:  ice blue */
};
/* not used for now, but should be for error-checking:
static int num_rgb = sizeof(rgb) / sizeof(struct rgb_color);
 */

/*
    This whole struct is a fairly cheesy way to keep the number of
    command-line options to a minimum.  The radial-waves background
    type is a particularly poor fit to the integer elements of the
    struct...but a few macros and a little fixed-point math will do
    wonders for ya.

    type bits:
       F E D C B A 9 8 7 6 5 4 3 2 1 0
                             | | | | |
                             | | +-+-+-- 0 = sharp-edged checkerboard
                             | |         1 = soft diamonds
                             | |         2 = radial waves
                             | |       3-7 = undefined
                             | +-- gradient #2 inverted?
                             +-- alternating columns inverted?
 */
static struct background_pattern {
    ush type;
    int rgb1_max, rgb1_min;     /* or bg_freq, bg_gray */
    int rgb2_max, rgb2_min;     /* or bg_bsat, bg_brot (both scaled by 10)*/
} bg[] = {
    {0+8,   2,0,  1,15},        /* checkered:  tan/black vs. white/ice blue */
    {0+24,  2,0,  1,0},         /* checkered:  tan/black vs. white/black */
    {0+8,   4,5,  0,2},         /* checkered:  gold/yellow vs. black/tan */
    {0+8,   4,5,  0,6},         /* checkered:  gold/yellow vs. black/blue */
    {0,     7,0,  8,9},         /* checkered:  deep blue/black vs. magenta */
    {0+8,  13,0,  5,14},        /* checkered:  orange/black vs. yellow */
    {0+8,  12,0, 10,11},        /* checkered:  orange/black vs. red */
    {1,     7,0,  8,0},         /* diamonds:  deep blue/black vs. magenta */
    {1,    12,0, 11,0},         /* diamonds:  orange vs. dark red */
    {1,    10,0,  7,0},         /* diamonds:  red vs. medium blue */
    {1,     4,0,  5,0},         /* diamonds:  gold vs. yellow */
    {1,     3,0,  0,0},         /* diamonds:  medium green vs. black */
    {2,    16, 100,  20,   0},  /* radial:  ~hard radial color-beams */
    {2,    18, 100,  10,   2},  /* radial:  soft, curved radial color-beams */
    {2,    16, 256, 100, 250},  /* radial:  very tight spiral */
    {2, 10000, 256,  11,   0}   /* radial:  dipole-moire' (almost fractal) */
};
static int num_bgpat = sizeof(bg) / sizeof(struct background_pattern);


/* Windows-specific global variables (could go in struct, but messy...) */
static ulg wimage_rowbytes;
static uch *dib;
static uch *wimage_data;
static BITMAPINFOHEADER *bmih;

static HWND global_hwnd;
static HINSTANCE global_hInst;
static int global_showmode;




int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, PSTR cmd, int showmode)
{
    char *args[1024];                 /* arbitrary limit, but should suffice */
    char **argv = args;
    char *p, *q, *bgstr = NULL;
    int argc = 0;
    int rc, alen, flen;
    int error = 0;
    int timing = FALSE;
    int have_bg = FALSE;
    double LUT_exponent;              /* just the lookup table */
    double CRT_exponent = 2.2;        /* just the monitor */
    double default_display_exponent;  /* whole display system */
    MSG msg;


    /* First initialize a few things, just to be sure--memset takes care of
     * default background color (black), booleans (FALSE), pointers (NULL),
     * etc. */

    global_hInst = hInst;
    global_showmode = showmode;
    filename = (char *)NULL;
    memset(&rpng2_info, 0, sizeof(mainprog_info));


    /* Set the default value for our display-system exponent, i.e., the
     * product of the CRT exponent and the exponent corresponding to
     * the frame-buffer's lookup table (LUT), if any.  This is not an
     * exhaustive list of LUT values (e.g., OpenStep has a lot of weird
     * ones), but it should cover 99% of the current possibilities.  And
     * yes, these ifdefs are completely wasted in a Windows program... */

#if defined(NeXT)
    /* third-party utilities can modify the default LUT exponent */
    LUT_exponent = 1.0 / 2.2;
    /*
    if (some_next_function_that_returns_gamma(&next_gamma))
        LUT_exponent = 1.0 / next_gamma;
     */
#elif defined(sgi)
    LUT_exponent = 1.0 / 1.7;
    /* there doesn't seem to be any documented function to
     * get the "gamma" value, so we do it the hard way */
    infile = fopen("/etc/config/system.glGammaVal", "r");
    if (infile) {
        double sgi_gamma;

        fgets(tmpline, 80, infile);
        fclose(infile);
        sgi_gamma = atof(tmpline);
        if (sgi_gamma > 0.0)
            LUT_exponent = 1.0 / sgi_gamma;
    }
#elif defined(Macintosh)
    LUT_exponent = 1.8 / 2.61;
    /*
    if (some_mac_function_that_returns_gamma(&mac_gamma))
        LUT_exponent = mac_gamma / 2.61;
     */
#else
    LUT_exponent = 1.0;   /* assume no LUT:  most PCs */
#endif

    /* the defaults above give 1.0, 1.3, 1.5 and 2.2, respectively: */
    default_display_exponent = LUT_exponent * CRT_exponent;


    /* If the user has set the SCREEN_GAMMA environment variable as suggested
     * (somewhat imprecisely) in the libpng documentation, use that; otherwise
     * use the default value we just calculated.  Either way, the user may
     * override this via a command-line option. */

    if ((p = getenv("SCREEN_GAMMA")) != NULL)
        rpng2_info.display_exponent = atof(p);
    else
        rpng2_info.display_exponent = default_display_exponent;


    /* Windows really hates command lines, so we have to set up our own argv.
     * Note that we do NOT bother with quoted arguments here, so don't use
     * filenames with spaces in 'em! */

    argv[argc++] = PROGNAME;
    p = cmd;
    for (;;) {
        if (*p == ' ')
            while (*++p == ' ')
                ;
        /* now p points at the first non-space after some spaces */
        if (*p == '\0')
            break;    /* nothing after the spaces:  done */
        argv[argc++] = q = p;
        while (*q && *q != ' ')
            ++q;
        /* now q points at a space or the end of the string */
        if (*q == '\0')
            break;    /* last argv already terminated; quit */
        *q = '\0';    /* change space to terminator */
        p = q + 1;
    }
    argv[argc] = NULL;   /* terminate the argv array itself */


    /* Now parse the command line for options and the PNG filename. */

    while (*++argv && !error) {
        if (!strncmp(*argv, "-gamma", 2)) {
            if (!*++argv)
                ++error;
            else {
                rpng2_info.display_exponent = atof(*argv);
                if (rpng2_info.display_exponent <= 0.0)
                    ++error;
            }
        } else if (!strncmp(*argv, "-bgcolor", 4)) {
            if (!*++argv)
                ++error;
            else {
                bgstr = *argv;
                if (strlen(bgstr) != 7 || bgstr[0] != '#')
                    ++error;
                else {
                    have_bg = TRUE;
                    bg_image = FALSE;
                }
            }
        } else if (!strncmp(*argv, "-bgpat", 4)) {
            if (!*++argv)
                ++error;
            else {
                pat = atoi(*argv) - 1;
                if (pat < 0 || pat >= num_bgpat)
                    ++error;
                else {
                    bg_image = TRUE;
                    have_bg = FALSE;
                }
            }
        } else if (!strncmp(*argv, "-timing", 2)) {
            timing = TRUE;
        } else {
            if (**argv != '-') {
                filename = *argv;
                if (argv[1])   /* shouldn't be any more args after filename */
                    ++error;
            } else
                ++error;   /* not expecting any other options */
        }
    }

    if (!filename) {
        ++error;
    } else if (!(infile = fopen(filename, "rb"))) {
        fprintf(stderr, PROGNAME ":  can't open PNG file [%s]\n", filename);
        ++error;
    } else {
        incount = fread(inbuf, 1, INBUFSIZE, infile);

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲黄一区二区三区| 久久成人综合网| 中文字幕亚洲电影| 欧美激情一区二区三区| 久久久国产午夜精品| 久久亚洲免费视频| 国产天堂亚洲国产碰碰| 久久久不卡网国产精品一区| 久久久久久久综合日本| 中文字幕乱码久久午夜不卡| 国产精品第五页| 亚洲乱码日产精品bd| 亚洲精品欧美二区三区中文字幕| 亚洲精品精品亚洲| 亚洲综合小说图片| 午夜av区久久| 国产在线麻豆精品观看| 国产成人av一区二区三区在线| 国产mv日韩mv欧美| 99精品视频在线播放观看| 91蝌蚪porny九色| 欧美调教femdomvk| 欧美丰满嫩嫩电影| 日韩三级免费观看| 国产亚洲欧美一级| 亚洲日本一区二区| 天天综合色天天综合色h| 另类小说视频一区二区| 国产精品一二三区| 99久久精品国产一区二区三区| 92精品国产成人观看免费| 欧美综合亚洲图片综合区| 欧美一区二区三区免费在线看| 久久一二三国产| 国产精品少妇自拍| 亚洲成人福利片| 国产一区二区三区免费观看| 粉嫩一区二区三区性色av| 色狠狠色狠狠综合| 精品免费日韩av| 亚洲欧美偷拍三级| 麻豆免费看一区二区三区| 不卡的电影网站| 欧美美女黄视频| 欧美国产精品专区| 亚洲成a人片在线不卡一二三区 | 亚洲一区二区在线播放相泽| 日韩av二区在线播放| 成人自拍视频在线观看| 欧美影院精品一区| 久久久精品影视| 亚洲国产精品久久艾草纯爱| 国产成人综合在线播放| 欧美日韩视频第一区| 久久久美女毛片 | 91黄色免费观看| 精品噜噜噜噜久久久久久久久试看| 一区在线播放视频| 奇米精品一区二区三区在线观看| 99久久婷婷国产综合精品| 欧美一级欧美三级在线观看| 中文字幕一区二| 精品亚洲欧美一区| 欧美日韩中文字幕精品| 亚洲国产电影在线观看| 久久成人18免费观看| 色网站国产精品| 欧美国产欧美综合| 久草精品在线观看| 欧美精品乱码久久久久久按摩| 国产精品久久久久婷婷二区次| 理论电影国产精品| 欧美无砖专区一中文字| 亚洲欧美一区二区久久 | 国产视频在线观看一区二区三区| 视频在线观看91| 一本到三区不卡视频| 国产日韩在线不卡| 九一九一国产精品| 欧美一区二区久久| 亚洲超碰精品一区二区| 色婷婷国产精品久久包臀| 欧美国产精品一区二区三区| 精品一区二区在线视频| 日韩一卡二卡三卡| 日韩av午夜在线观看| 欧美猛男gaygay网站| 一二三区精品视频| 欧美亚洲综合另类| 亚洲男同性视频| 色综合久久中文字幕综合网| 国产精品高潮久久久久无| 丁香亚洲综合激情啪啪综合| 久久久精品黄色| 国产盗摄视频一区二区三区| 久久一夜天堂av一区二区三区| 激情亚洲综合在线| 精品久久国产字幕高潮| 久久黄色级2电影| 精品国产免费人成在线观看| 久久99国内精品| xnxx国产精品| 高清在线观看日韩| 国产精品三级av| 99久久99久久精品免费看蜜桃| 国产精品精品国产色婷婷| 波多野结衣在线aⅴ中文字幕不卡| 久久久精品综合| 成人国产精品免费观看视频| 国产精品网友自拍| 99久久精品久久久久久清纯| 亚洲美女屁股眼交| 在线一区二区三区四区五区 | 香蕉久久一区二区不卡无毒影院| 欧美性欧美巨大黑白大战| 亚洲国产精品自拍| 欧美精选午夜久久久乱码6080| 日韩激情中文字幕| 欧美哺乳videos| 国产精品18久久久久久vr| 欧美国产丝袜视频| 色婷婷综合五月| 午夜不卡在线视频| 精品国产人成亚洲区| 成人免费毛片嘿嘿连载视频| 亚洲人成精品久久久久| 欧美日韩高清影院| 精品一区二区日韩| 国产精品久久久久影院| 欧美色视频在线观看| 蜜臀av一级做a爰片久久| 欧美激情在线看| 欧洲精品一区二区| 美女视频网站久久| 中文字幕一区在线观看| 5月丁香婷婷综合| 国产精品综合在线视频| 亚洲摸摸操操av| 日韩一区二区视频| 成人app在线观看| 日韩av不卡一区二区| 国产亚洲综合性久久久影院| 色综合久久久久综合体 | 欧美男女性生活在线直播观看| 精品伊人久久久久7777人| 亚洲天堂av老司机| 91精品国产福利在线观看 | 欧美一区二区视频在线观看| 国产成人综合网站| 亚洲一区av在线| 国产亚洲综合性久久久影院| 欧美视频完全免费看| 国产精品自拍毛片| 亚洲成人免费视频| 中文字幕乱码日本亚洲一区二区| 欧美美女网站色| 97久久超碰国产精品电影| 蜜桃久久久久久| 亚洲自拍与偷拍| 国产欧美日韩亚州综合| 欧美精品1区2区3区| 成人成人成人在线视频| 久久er99精品| 亚洲亚洲精品在线观看| 国产欧美精品一区aⅴ影院| 欧美精品日韩一本| 色欧美片视频在线观看| 国产高清精品久久久久| 三级久久三级久久久| 日韩一区在线免费观看| 欧美精品一区二区三区四区| 欧美日韩一区二区三区不卡| 成人黄色一级视频| 极品少妇xxxx精品少妇偷拍| 亚洲mv在线观看| 亚洲另类色综合网站| 国产精品日韩成人| 精品久久免费看| 欧美一级欧美三级在线观看| 欧美性极品少妇| 91香蕉视频污| 成人福利视频在线看| 国精产品一区一区三区mba视频 | 国产一区二区在线观看免费| 午夜日韩在线观看| 亚洲蜜桃精久久久久久久| 国产精品萝li| 国产精品你懂的在线欣赏| 久久精品免视看| 国产亚洲婷婷免费| 久久综合五月天婷婷伊人| 日韩一级黄色片| 欧美福利一区二区| 欧美丰满少妇xxxxx高潮对白| 欧美视频一区在线观看| 一本在线高清不卡dvd| 99久久久精品| 色婷婷综合久久| 色哟哟精品一区| 日本道免费精品一区二区三区|