⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qpnghandler.cpp

📁 奇趣公司比较新的qt/emd版本
💻 CPP
📖 第 1 页 / 共 3 页
字号:
/******************************************************************************** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.**** This file is part of the QtGui module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://trolltech.com/products/qt/licenses/licensing/opensource/**** If you are unsure which license is appropriate for your use, please** review the following information:** http://trolltech.com/products/qt/licenses/licensing/licensingoverview** or contact the sales department at sales@trolltech.com.**** In addition, as a special exception, Trolltech gives you certain** additional rights. These rights are described in the Trolltech GPL** Exception version 1.0, which can be found at** http://www.trolltech.com/products/qt/gplexception/ and in the file** GPL_EXCEPTION.txt in this package.**** In addition, as a special exception, Trolltech, as the sole copyright** holder for Qt Designer, grants users of the Qt/Eclipse Integration** plug-in the right for the Qt/Eclipse Integration to link to** functionality provided by Qt Designer and its related libraries.**** Trolltech reserves all rights not expressly granted herein.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include "private/qpnghandler_p.h"#ifndef QT_NO_IMAGEFORMAT_PNG#include <qcoreapplication.h>#include <qiodevice.h>#include <qimage.h>#include <qlist.h>#include <qtextcodec.h>#include <qvariant.h>#include <qvector.h>#include <png.h>#include <pngconf.h>#ifdef Q_OS_TEMP#define CALLBACK_CALL_TYPE        __cdecl#else#define CALLBACK_CALL_TYPE#endif#ifdef QT_LSB// LSB doesn't standardize png_info_struct and png_struct_def// These structs are documented to not change, so fork as much as// we need. In the future, we should use the propper accessors, though.#include <setjmp.h>struct png_info_struct{   /* the following are necessary for every PNG file */   png_uint_32 width;       /* width of image in pixels (from IHDR) */   png_uint_32 height;      /* height of image in pixels (from IHDR) */   png_uint_32 valid;       /* valid chunk data (see PNG_INFO_ below) */   png_uint_32 rowbytes;    /* bytes needed to hold an untransformed row */   png_colorp palette;      /* array of color values (valid & PNG_INFO_PLTE) */   png_uint_16 num_palette; /* number of color entries in "palette" (PLTE) */   png_uint_16 num_trans;   /* number of transparent palette color (tRNS) */   png_byte bit_depth;      /* 1, 2, 4, 8, or 16 bits/channel (from IHDR) */   png_byte color_type;     /* see PNG_COLOR_TYPE_ below (from IHDR) */   /* The following three should have been named *_method not *_type */   png_byte compression_type; /* must be PNG_COMPRESSION_TYPE_BASE (IHDR) */   png_byte filter_type;    /* must be PNG_FILTER_TYPE_BASE (from IHDR) */   png_byte interlace_type; /* One of PNG_INTERLACE_NONE, PNG_INTERLACE_ADAM7 */   /* The following is informational only on read, and not used on writes. */   png_byte channels;       /* number of data channels per pixel (1, 2, 3, 4) */   png_byte pixel_depth;    /* number of bits per pixel */   png_byte spare_byte;     /* to align the data, and for future use */   png_byte signature[8];   /* magic bytes read by libpng from start of file */   /* The rest of the data is optional.  If you are reading, check the    * valid field to see if the information in these are valid.  If you    * are writing, set the valid field to those chunks you want written,    * and initialize the appropriate fields below.    */#if defined(PNG_gAMA_SUPPORTED) && defined(PNG_FLOATING_POINT_SUPPORTED)   /* The gAMA chunk describes the gamma characteristics of the system    * on which the image was created, normally in the range [1.0, 2.5].    * Data is valid if (valid & PNG_INFO_gAMA) is non-zero.    */   float gamma; /* gamma value of image, if (valid & PNG_INFO_gAMA) */#endif#if defined(PNG_sRGB_SUPPORTED)    /* GR-P, 0.96a */    /* Data valid if (valid & PNG_INFO_sRGB) non-zero. */   png_byte srgb_intent; /* sRGB rendering intent [0, 1, 2, or 3] */#endif#if defined(PNG_TEXT_SUPPORTED)   /* The tEXt, and zTXt chunks contain human-readable textual data in    * uncompressed, compressed, and optionally compressed forms, respectively.    * The data in "text" is an array of pointers to uncompressed,    * null-terminated C strings. Each chunk has a keyword that describes the    * textual data contained in that chunk.  Keywords are not required to be    * unique, and the text string may be empty.  Any number of text chunks may    * be in an image.    */   int num_text; /* number of comments read/to write */   int max_text; /* current size of text array */   png_textp text; /* array of comments read/to write */#endif /* PNG_TEXT_SUPPORTED */#if defined(PNG_tIME_SUPPORTED)   /* The tIME chunk holds the last time the displayed image data was    * modified.  See the png_time struct for the contents of this struct.    */   png_time mod_time;#endif#if defined(PNG_sBIT_SUPPORTED)   /* The sBIT chunk specifies the number of significant high-order bits    * in the pixel data.  Values are in the range [1, bit_depth], and are    * only specified for the channels in the pixel data.  The contents of    * the low-order bits is not specified.  Data is valid if    * (valid & PNG_INFO_sBIT) is non-zero.    */   png_color_8 sig_bit; /* significant bits in color channels */#endif#if defined(PNG_tRNS_SUPPORTED) || defined(PNG_READ_EXPAND_SUPPORTED) || \defined(PNG_READ_BACKGROUND_SUPPORTED)   /* The tRNS chunk supplies transparency data for paletted images and    * other image types that don't need a full alpha channel.  There are    * "num_trans" transparency values for a paletted image, stored in the    * same order as the palette colors, starting from index 0.  Values    * for the data are in the range [0, 255], ranging from fully transparent    * to fully opaque, respectively.  For non-paletted images, there is a    * single color specified that should be treated as fully transparent.    * Data is valid if (valid & PNG_INFO_tRNS) is non-zero.    */   png_bytep trans; /* transparent values for paletted image */   png_color_16 trans_values; /* transparent color for non-palette image */#endif};struct png_struct_def{#ifdef PNG_SETJMP_SUPPORTED       jmp_buf jmpbuf;            /* used in png_error */#endif};#endif // QT_LSB/*  All PNG files load to the minimal QImage equivalent.  All QImage formats output to reasonably efficient PNG equivalents.  Never to grayscale.*/#if defined(Q_C_CALLBACKS)extern "C" {#endifclass QPNGImageWriter {public:    explicit QPNGImageWriter(QIODevice*);    ~QPNGImageWriter();    enum DisposalMethod { Unspecified, NoDisposal, RestoreBackground, RestoreImage };    void setDisposalMethod(DisposalMethod);    void setLooping(int loops=0); // 0 == infinity    void setFrameDelay(int msecs);    void setGamma(float);    bool writeImage(const QImage& img, int x, int y);    bool writeImage(const QImage& img, int quality, const QString &description, int x, int y);    bool writeImage(const QImage& img)        { return writeImage(img, 0, 0); }    bool writeImage(const QImage& img, int quality, const QString &description)        { return writeImage(img, quality, description, 0, 0); }    QIODevice* device() { return dev; }private:    QIODevice* dev;    int frames_written;    DisposalMethod disposal;    int looping;    int ms_delay;    float gamma;};staticvoid CALLBACK_CALL_TYPE iod_read_fn(png_structp png_ptr, png_bytep data, png_size_t length){    QIODevice *in = (QIODevice *)png_get_io_ptr(png_ptr);    while (length) {        int nr = in->read((char*)data, length);        if (nr <= 0) {            png_error(png_ptr, "Read Error");            return;        }        length -= nr;    }}staticvoid CALLBACK_CALL_TYPE qpiw_write_fn(png_structp png_ptr, png_bytep data, png_size_t length){    QPNGImageWriter* qpiw = (QPNGImageWriter*)png_get_io_ptr(png_ptr);    QIODevice* out = qpiw->device();    uint nr = out->write((char*)data, length);    if (nr != length) {        png_error(png_ptr, "Write Error");        return;    }}staticvoid CALLBACK_CALL_TYPE qpiw_flush_fn(png_structp /* png_ptr */){}#if defined(Q_C_CALLBACKS)}#endifstaticvoid setup_qt(QImage& image, png_structp png_ptr, png_infop info_ptr, float screen_gamma=0.0){    if (screen_gamma != 0.0 && png_get_valid(png_ptr, info_ptr, PNG_INFO_gAMA)) {        double file_gamma;        png_get_gAMA(png_ptr, info_ptr, &file_gamma);        png_set_gamma(png_ptr, screen_gamma, file_gamma);    }    png_uint_32 width;    png_uint_32 height;    int bit_depth;    int color_type;    png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, 0, 0, 0);    if (color_type == PNG_COLOR_TYPE_GRAY) {        // Black & White or 8-bit grayscale        if (bit_depth == 1 && info_ptr->channels == 1) {            png_set_invert_mono(png_ptr);            png_read_update_info(png_ptr, info_ptr);            if (image.size() != QSize(width, height) || image.format() != QImage::Format_Mono) {                image = QImage(width, height, QImage::Format_Mono);                if (image.isNull())                    return;            }            image.setNumColors(2);            image.setColor(1, qRgb(0,0,0));            image.setColor(0, qRgb(255,255,255));        } else if (bit_depth == 16 && png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) {            png_set_expand(png_ptr);            png_set_strip_16(png_ptr);            png_set_gray_to_rgb(png_ptr);            if (image.size() != QSize(width, height) || image.format() != QImage::Format_ARGB32) {                image = QImage(width, height, QImage::Format_ARGB32);                if (image.isNull())                    return;            }            if (QSysInfo::ByteOrder == QSysInfo::BigEndian)                png_set_swap_alpha(png_ptr);            png_read_update_info(png_ptr, info_ptr);        } else {            if (bit_depth == 16)                png_set_strip_16(png_ptr);            else if (bit_depth < 8)                png_set_packing(png_ptr);            int ncols = bit_depth < 8 ? 1 << bit_depth : 256;            png_read_update_info(png_ptr, info_ptr);            if (image.size() != QSize(width, height) || image.format() != QImage::Format_Indexed8) {                image = QImage(width, height, QImage::Format_Indexed8);                if (image.isNull())                    return;            }            image.setNumColors(ncols);            for (int i=0; i<ncols; i++) {                int c = i*255/(ncols-1);                image.setColor(i, qRgba(c,c,c,0xff));            }            if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) {                const int g = info_ptr->trans_values.gray;                if (g < ncols) {                    image.setColor(g, 0);                }            }        }    } else if (color_type == PNG_COLOR_TYPE_PALETTE               && png_get_valid(png_ptr, info_ptr, PNG_INFO_PLTE)               && info_ptr->num_palette <= 256)    {        // 1-bit and 8-bit color        if (bit_depth != 1)            png_set_packing(png_ptr);        png_read_update_info(png_ptr, info_ptr);        png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, 0, 0, 0);        QImage::Format format = bit_depth == 1 ? QImage::Format_Mono : QImage::Format_Indexed8;        if (image.size() != QSize(width, height) || image.format() != format) {            image = QImage(width, height, format);            if (image.isNull())                return;        }        image.setNumColors(info_ptr->num_palette);        int i = 0;        if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) {            while (i < info_ptr->num_trans) {                image.setColor(i, qRgba(                    info_ptr->palette[i].red,                    info_ptr->palette[i].green,                    info_ptr->palette[i].blue,                    info_ptr->trans[i]                   )               );                i++;            }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -