本文整理汇总了C++中png_create_read_struct函数的典型用法代码示例。如果您正苦于以下问题:C++ png_create_read_struct函数的具体用法?C++ png_create_read_struct怎么用?C++ png_create_read_struct使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了png_create_read_struct函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: GdDecodePNG
PSD
GdDecodePNG(buffer_t * src)
{
unsigned char hdr[8], **rows;
png_structp state;
png_infop pnginfo;
png_uint_32 width, height;
int bit_depth, color_type, i;
double file_gamma;
int channels, data_format;
PSD pmd;
GdImageBufferSeekTo(src, 0UL);
if(GdImageBufferRead(src, hdr, 8) != 8)
return NULL;
if(png_sig_cmp(hdr, 0, 8))
return NULL;
if(!(state = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL)))
goto nomem;
if(!(pnginfo = png_create_info_struct(state))) {
png_destroy_read_struct(&state, NULL, NULL);
goto nomem;
}
if(setjmp(png_jmpbuf(state))) {
png_destroy_read_struct(&state, &pnginfo, NULL);
return NULL;
}
/* Set up the input function */
png_set_read_fn(state, src, png_read_buffer);
/* png_init_io(state, src); */
png_set_sig_bytes(state, 8);
png_read_info(state, pnginfo);
png_get_IHDR(state, pnginfo, &width, &height, &bit_depth, &color_type, NULL, NULL, NULL);
/* set-up the transformations */
/* transform paletted images into full-color rgb */
if (color_type == PNG_COLOR_TYPE_PALETTE)
png_set_expand (state);
/* expand images to bit-depth 8 (only applicable for grayscale images) */
if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
png_set_expand (state);
/* transform transparency maps into full alpha-channel */
if (png_get_valid (state, pnginfo, PNG_INFO_tRNS))
png_set_expand (state);
/* downgrade 16-bit images to 8 bit */
if (bit_depth == 16)
png_set_strip_16 (state);
/* Handle transparency... */
if (png_get_valid(state, pnginfo, PNG_INFO_tRNS))
png_set_tRNS_to_alpha(state);
/* transform grayscale images into full-color */
if (color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
png_set_gray_to_rgb (state);
/* only if file has a file gamma, we do a correction */
if (png_get_gAMA (state, pnginfo, &file_gamma))
png_set_gamma (state, (double) 2.2, file_gamma);
/* all transformations have been registered; now update pnginfo data,
* get rowbytes and channels, and allocate image memory */
png_read_update_info (state, pnginfo);
/* get the new color-type and bit-depth (after expansion/stripping) */
png_get_IHDR (state, pnginfo, &width, &height, &bit_depth, &color_type, NULL, NULL, NULL);
/* calculate new number of channels and store alpha-presence */
if (color_type == PNG_COLOR_TYPE_RGB)
channels = 3;
else if (color_type == PNG_COLOR_TYPE_RGB_ALPHA)
channels = 4;
// else if (color_type == PNG_COLOR_TYPE_GRAY)
// channels = 1;
// else if (color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
// channels = 2;
else {
/* GdDrawImage currently only supports 32bpp alpha channel*/
DPRINTF("GdDecodePNG: Gray image type not supported: %d\n", color_type);
return NULL;
}
/* set image data format*/
data_format = (channels == 4)? MWIF_RGBA8888: MWIF_RGB888;
//pimage->pitch = width * channels * (bit_depth / 8);
//bpp = channels * 8;
pmd = GdCreatePixmap(&scrdev, width, height, data_format, NULL, 0);
//.........这里部分代码省略.........
开发者ID:moovel,项目名称:microwindows,代码行数:101,代码来源:image_png.c
示例2: ExtractBits
int ExtractBits(PNG_CONST TCHAR *inname, PNG_CONST TCHAR *outname)
{
static HANDLE fpin;
static HANDLE fpout; /* "static" prevents setjmp corruption */
png_structp read_ptr;
png_infop read_info_ptr, end_info_ptr;
png_structp write_ptr = NULL;
png_infop write_info_ptr = NULL;
png_infop write_end_info_ptr = NULL;
png_bytep row_buf;
png_uint_32 y;
png_uint_32 width, height;
int num_pass, pass;
int bit_depth, color_type;
char inbuf[256], outbuf[256];
row_buf = NULL;
if ((fpin = CreateFile(inname, GENERIC_READ, 0, NULL, OPEN_EXISTING, 0, NULL)) == INVALID_HANDLE_VALUE)
{
fprintf(STDERR, "Could not find input file %s\n", inname);
return (1);
}
if ((fpout = CreateFile(outname, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL)) == INVALID_HANDLE_VALUE)
{
fprintf(STDERR, "Could not open output file %s\n", outname);
FCLOSE(fpin);
return (1);
}
png_debug(0, "Allocating read and write structures");
read_ptr =
png_create_read_struct(PNG_LIBPNG_VER_STRING, png_voidp_NULL,
png_error_ptr_NULL, png_error_ptr_NULL);
png_set_error_fn(read_ptr, (png_voidp)inname, pngtest_error,
pngtest_warning);
png_debug(0, "Allocating read_info, write_info and end_info structures");
read_info_ptr = png_create_info_struct(read_ptr);
end_info_ptr = png_create_info_struct(read_ptr);
png_debug(0, "Setting jmpbuf for read struct");
if (setjmp(png_jmpbuf(read_ptr)))
{
fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname);
png_free(read_ptr, row_buf);
row_buf = NULL;
png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
FCLOSE(fpin);
FCLOSE(fpout);
return (1);
}
png_debug(0, "Initializing input and output streams");
png_set_read_fn(read_ptr, (png_voidp)fpin, pngtest_read_data);
if (status_dots_requested == 1)
{
png_set_read_status_fn(read_ptr, read_row_callback);
}
else
{
png_set_read_status_fn(read_ptr, png_read_status_ptr_NULL);
}
png_debug(0, "Reading info struct");
png_read_info(read_ptr, read_info_ptr);
png_debug(0, "Transferring info struct");
{
int interlace_type, compression_type, filter_type;
if (png_get_IHDR(read_ptr, read_info_ptr, &width, &height, &bit_depth,
&color_type, &interlace_type, &compression_type, &filter_type))
{
png_set_IHDR(write_ptr, write_info_ptr, width, height, bit_depth,
color_type, PNG_INTERLACE_NONE, compression_type, filter_type);
}
}
{
int intent;
if (png_get_sRGB(read_ptr, read_info_ptr, &intent))
png_set_sRGB(write_ptr, write_info_ptr, intent);
}
{
png_colorp palette;
int num_palette;
if (png_get_PLTE(read_ptr, read_info_ptr, &palette, &num_palette))
png_set_PLTE(write_ptr, write_info_ptr, palette, num_palette);
}
{
png_color_8p sig_bit;
if (png_get_sBIT(read_ptr, read_info_ptr, &sig_bit))
png_set_sBIT(write_ptr, write_info_ptr, sig_bit);
}
{
png_bytep trans;
int num_trans;
png_color_16p trans_values;
//.........这里部分代码省略.........
开发者ID:alexlav,项目名称:conemu,代码行数:101,代码来源:MyPng.cpp
示例3: pngLoadF
int APIENTRY pngLoadF(FILE *fp, int mipmap, int trans, pngInfo *pinfo) {
GLint pack, unpack;
unsigned char header[8];
png_structp png;
png_infop info;
png_infop endinfo;
png_bytep data, data2;
png_bytep *row_p;
double fileGamma;
png_uint_32 width, height, rw, rh;
int depth, color;
png_uint_32 i;
fread(header, 1, 8, fp);
if (!png_check_sig(header, 8)) return 0;
png = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
info = png_create_info_struct(png);
endinfo = png_create_info_struct(png);
// DH: added following lines
if (setjmp(png->jmpbuf))
{
png_destroy_read_struct(&png, &info, &endinfo);
return 0;
}
// ~DH
png_init_io(png, fp);
png_set_sig_bytes(png, 8);
png_read_info(png, info);
png_get_IHDR(png, info, &width, &height, &depth, &color, NULL, NULL, NULL);
if (pinfo != NULL) {
pinfo->Width = width;
pinfo->Height = height;
pinfo->Depth = depth;
}
if (MaxTextureSize == 0)
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &MaxTextureSize);
#ifdef SUPPORTS_PALETTE_EXT
#ifdef _WIN32
if (PalettedTextures == -1)
PalettedTextures = ExtSupported("GL_EXT_paletted_texture") && (strstr((const char *) glGetString(GL_VERSION), "1.1.0 3Dfx Beta") == NULL);
if (PalettedTextures) {
if (glColorTableEXT == NULL) {
glColorTableEXT = (PFNGLCOLORTABLEEXTPROC) wglGetProcAddress("glColorTableEXT");
if (glColorTableEXT == NULL)
PalettedTextures = 0;
}
}
#endif
#endif
if (PalettedTextures == -1)
PalettedTextures = 0;
if (color == PNG_COLOR_TYPE_GRAY || color == PNG_COLOR_TYPE_GRAY_ALPHA)
png_set_gray_to_rgb(png);
if (color&PNG_COLOR_MASK_ALPHA && trans != PNG_ALPHA) {
png_set_strip_alpha(png);
color &= ~PNG_COLOR_MASK_ALPHA;
}
if (!(PalettedTextures && mipmap >= 0 && trans == PNG_SOLID))
if (color == PNG_COLOR_TYPE_PALETTE)
png_set_expand(png);
/*--GAMMA--*/
checkForGammaEnv();
if (png_get_gAMA(png, info, &fileGamma))
png_set_gamma(png, screenGamma, fileGamma);
else
png_set_gamma(png, screenGamma, 1.0/2.2);
png_read_update_info(png, info);
data = (png_bytep) malloc(png_get_rowbytes(png, info)*height);
row_p = (png_bytep *) malloc(sizeof(png_bytep)*height);
for (i = 0; i < height; i++) {
if (StandardOrientation)
row_p[height - 1 - i] = &data[png_get_rowbytes(png, info)*i];
else
row_p[i] = &data[png_get_rowbytes(png, info)*i];
}
png_read_image(png, row_p);
free(row_p);
rw = SafeSize(width), rh = SafeSize(height);
if (rw != width || rh != height) {
const int channels = png_get_rowbytes(png, info)/width;
//.........这里部分代码省略.........
开发者ID:EMGroup,项目名称:tkeden,代码行数:101,代码来源:glpng.c
示例4: PNGImageIO_loadPNGData
BitmapImage * PNGImageIO_loadPNGData(const void * data, size_t length, int pixelFormat, bool flipVertical) {
png_byte headerBytes[PNG_HEADER_SIZE];
png_structp pngReadStruct;
png_infop pngInfoStruct;
struct memreadContext readContext;
unsigned int width, height;
png_int_32 bitDepth, colorType;
png_bytep * rows = NULL;
unsigned char * pixels = NULL;
unsigned int rowIndex;
enum BitmapPixelFormat chosenPixelFormat = BITMAP_PIXEL_FORMAT_RGBA_8888;
BitmapImage * image;
readContext = memreadContextInit(data, length);
if (!memread(&readContext, PNG_HEADER_SIZE, headerBytes) || png_sig_cmp(headerBytes, 0, PNG_HEADER_SIZE)) {
return NULL;
}
pngReadStruct = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
pngInfoStruct = png_create_info_struct(pngReadStruct);
if (setjmp(png_jmpbuf(pngReadStruct))) {
png_destroy_read_struct(&pngReadStruct, &pngInfoStruct, NULL);
free(rows);
free(pixels);
return NULL;
}
png_set_read_fn(pngReadStruct, &readContext, pngReadFnMemread);
png_set_sig_bytes(pngReadStruct, PNG_HEADER_SIZE);
png_read_info(pngReadStruct, pngInfoStruct);
width = png_get_image_width(pngReadStruct, pngInfoStruct);
height = png_get_image_height(pngReadStruct, pngInfoStruct);
bitDepth = png_get_bit_depth(pngReadStruct, pngInfoStruct);
colorType = png_get_color_type(pngReadStruct, pngInfoStruct);
if (colorType == PNG_COLOR_TYPE_PALETTE) {
png_set_palette_to_rgb(pngReadStruct);
colorType = PNG_COLOR_TYPE_RGB;
}
if (colorType == PNG_COLOR_TYPE_GRAY && bitDepth < 8) {
png_set_expand_gray_1_2_4_to_8(pngReadStruct);
}
if (png_get_valid(pngReadStruct, pngInfoStruct, PNG_INFO_tRNS)) {
png_set_tRNS_to_alpha(pngReadStruct);
}
if (bitDepth == 16) {
png_set_strip_16(pngReadStruct);
}
switch (pixelFormat) {
case PNG_PIXEL_FORMAT_AUTOMATIC:
switch (colorType) {
case PNG_COLOR_TYPE_GRAY:
chosenPixelFormat = BITMAP_PIXEL_FORMAT_GRAY_8;
break;
case PNG_COLOR_TYPE_GRAY_ALPHA:
chosenPixelFormat = BITMAP_PIXEL_FORMAT_GRAYALPHA_88;
break;
case PNG_COLOR_TYPE_RGB:
chosenPixelFormat = BITMAP_PIXEL_FORMAT_RGB_888;
break;
case PNG_COLOR_TYPE_RGB_ALPHA:
chosenPixelFormat = BITMAP_PIXEL_FORMAT_RGBA_8888;
break;
}
png_read_update_info(pngReadStruct, pngInfoStruct);
break;
case BITMAP_PIXEL_FORMAT_RGBA_8888:
if (!(colorType & PNG_COLOR_MASK_ALPHA)) {
png_set_add_alpha(pngReadStruct, 0xFF, PNG_FILLER_AFTER);
}
png_read_update_info(pngReadStruct, pngInfoStruct);
if (!(colorType & PNG_COLOR_MASK_COLOR)) {
png_set_gray_to_rgb(pngReadStruct);
}
chosenPixelFormat = BITMAP_PIXEL_FORMAT_RGBA_8888;
break;
case BITMAP_PIXEL_FORMAT_RGB_888:
if (colorType & PNG_COLOR_MASK_ALPHA) {
png_set_strip_alpha(pngReadStruct);
}
png_read_update_info(pngReadStruct, pngInfoStruct);
if (!(colorType & PNG_COLOR_MASK_COLOR)) {
png_set_gray_to_rgb(pngReadStruct);
}
chosenPixelFormat = BITMAP_PIXEL_FORMAT_RGB_888;
break;
case BITMAP_PIXEL_FORMAT_GRAYALPHA_88:
if (!(colorType & PNG_COLOR_MASK_ALPHA)) {
png_set_add_alpha(pngReadStruct, 0xFF, PNG_FILLER_AFTER);
}
png_read_update_info(pngReadStruct, pngInfoStruct);
//.........这里部分代码省略.........
开发者ID:svn2github,项目名称:libstem,代码行数:101,代码来源:PNGImageIO.c
示例5: LoadPNG
int LoadPNG(void *pRaw, int rawlen, unsigned int *puWidth, unsigned int *puHeight, void **ppData)
{
png_bytep *row_pointers;
png_uint_32 w, h;
png_structp png_ptr;
png_infop info_ptr;
int bit_depth, color_type, interlace_type;
int i;
int number_of_passes;
void *pixels;
mypngio_t *pMy;
png_ptr = NULL; info_ptr = NULL; row_pointers = NULL;
if( png_sig_cmp((png_bytep)pRaw, 0, 8) != 0 ) {
goto err_exit;
}
png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if(!png_ptr) {
goto err_exit;
}
info_ptr = png_create_info_struct(png_ptr);
if(!info_ptr) {
goto err_exit;
}
if (setjmp (png_jmpbuf (png_ptr))) {
goto err_exit;
}
pMy = (mypngio_t*)calloc(1,sizeof(mypngio_t));
pMy->pPtr = pRaw;
pMy->off = 8;
png_set_read_fn(png_ptr, (void *)pMy, user_read_fn);
png_set_sig_bytes(png_ptr, 8);
png_read_info (png_ptr, info_ptr);
png_get_IHDR (png_ptr, info_ptr, &w, &h, &bit_depth, &color_type,
&interlace_type, 0, 0);
/*** Set up some transformations to get everything in our nice ARGB format. ***/
/* 8 bits per channel: */
if (bit_depth == 16)
png_set_strip_16 (png_ptr);
/* Convert palette to RGB: */
if (color_type == PNG_COLOR_TYPE_PALETTE)
png_set_palette_to_rgb (png_ptr), color_type = PNG_COLOR_TYPE_RGB;
/* Extract 1/2/4bpp to 8bpp: */
if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
png_set_expand_gray_1_2_4_to_8 (png_ptr);
/* Convert colorkey to alpha: */
if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
png_set_tRNS_to_alpha (png_ptr);
/* Convert gray to RGB: */
if (color_type == PNG_COLOR_TYPE_GRAY)
png_set_gray_to_rgb (png_ptr),
color_type = PNG_COLOR_TYPE_RGB;
if (color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
png_set_gray_to_rgb (png_ptr),
color_type = PNG_COLOR_TYPE_RGB_ALPHA;
/* Convert RGB to RGBA */
if (color_type == PNG_COLOR_TYPE_RGB)
png_set_add_alpha (png_ptr, 0xff, PNG_FILLER_AFTER);
//png_set_bgr(png_ptr);
number_of_passes = png_set_interlace_handling (png_ptr);
/* Update the info struct. */
png_read_update_info (png_ptr, info_ptr);
/* Allocate our surface. */
pixels = malloc( w * h * 4 );
if (!pixels) {
goto err_exit;
}
row_pointers = (png_bytep*)malloc (h * sizeof(png_bytep));
if (!row_pointers) {
goto err_exit;
}
/* Build the array of row pointers. */
for (i = 0; i < (int)h; i++) {
row_pointers[i] = (png_bytep)( (unsigned char*)pixels + (i * w * 4) );
}
/* Read the thing. */
png_read_image (png_ptr, row_pointers);
/* Read the rest. */
png_read_end (png_ptr, info_ptr);
if (png_ptr)
png_destroy_read_struct (&png_ptr, info_ptr? &info_ptr : 0, 0);
if (row_pointers)
free (row_pointers);
//.........这里部分代码省略.........
开发者ID:courtc,项目名称:imager,代码行数:101,代码来源:png.c
示例6: gdImageCreateFromPngCtx
/* This routine is based in part on the Chapter 13 demo code in "PNG: The
* Definitive Guide" (http://www.cdrom.com/pub/png/pngbook.html).
*/
gdImagePtr
gdImageCreateFromPngCtx (gdIOCtx * infile)
{
png_byte sig[8];
png_structp png_ptr;
png_infop info_ptr;
png_uint_32 width, height, rowbytes;
int bit_depth, color_type, interlace_type;
int num_palette, num_trans;
png_colorp palette;
png_color_16p trans_gray_rgb;
png_color_16p trans_color_rgb;
png_bytep trans;
png_bytep image_data = NULL;
png_bytepp row_pointers = NULL;
gdImagePtr im = NULL;
int i, j, *open = NULL;
volatile int transparent = -1;
volatile int palette_allocated = FALSE;
/* Make sure the signature can't match by dumb luck -- TBB */
/* GRR: isn't sizeof(infile) equal to the size of the pointer? */
memset (infile, 0, sizeof (infile));
/* first do a quick check that the file really is a PNG image; could
* have used slightly more general png_sig_cmp() function instead */
gdGetBuf (sig, 8, infile);
if (!png_check_sig (sig, 8))
return NULL; /* bad signature */
#ifndef PNG_SETJMP_NOT_SUPPORTED
png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING, &gdPngJmpbufStruct,
gdPngErrorHandler, NULL);
#else
png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
#endif
if (png_ptr == NULL)
{
fprintf (stderr, "gd-png error: cannot allocate libpng main struct\n");
return NULL;
}
info_ptr = png_create_info_struct (png_ptr);
if (info_ptr == NULL)
{
fprintf (stderr, "gd-png error: cannot allocate libpng info struct\n");
png_destroy_read_struct (&png_ptr, NULL, NULL);
return NULL;
}
/* we could create a second info struct here (end_info), but it's only
* useful if we want to keep pre- and post-IDAT chunk info separated
* (mainly for PNG-aware image editors and converters) */
/* setjmp() must be called in every non-callback function that calls a
* PNG-reading libpng function */
#ifndef PNG_SETJMP_NOT_SUPPORTED
if (setjmp (gdPngJmpbufStruct.jmpbuf))
{
fprintf (stderr, "gd-png error: setjmp returns error condition\n");
png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
return NULL;
}
#endif
png_set_sig_bytes (png_ptr, 8); /* we already read the 8 signature bytes */
png_set_read_fn (png_ptr, (void *) infile, gdPngReadData);
png_read_info (png_ptr, info_ptr); /* read all PNG info up to image data */
png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
&interlace_type, NULL, NULL);
if ((color_type == PNG_COLOR_TYPE_RGB) ||
(color_type == PNG_COLOR_TYPE_RGB_ALPHA))
{
im = gdImageCreateTrueColor ((int) width, (int) height);
}
else
{
im = gdImageCreate ((int) width, (int) height);
}
if (im == NULL)
{
fprintf (stderr, "gd-png error: cannot allocate gdImage struct\n");
png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
gdFree (image_data);
gdFree (row_pointers);
return NULL;
}
if (bit_depth == 16)
png_set_strip_16 (png_ptr);
else if (bit_depth < 8)
png_set_packing (png_ptr); /* expand to 1 byte per pixel */
switch (color_type)
{
case PNG_COLOR_TYPE_PALETTE:
//.........这里部分代码省略.........
开发者ID:tkorhon1,项目名称:FDS-SMVgit,代码行数:101,代码来源:gd_png.c
示例7: read_png
/* Read a PNG file. You may want to return an error code if the read
* fails (depending upon the failure). There are two "prototypes" given
* here - one where we are given the filename, and we need to open the
* file, and the other where we are given an open file (possibly with
* some or all of the magic bytes read - see comments above).
*/
#ifdef open_file /* prototype 1 */
void read_png(char *file_name) /* We need to open the file */
{
png_structp png_ptr;
png_infop info_ptr;
unsigned int sig_read = 0;
png_uint_32 width, height;
int bit_depth, color_type, interlace_type;
FILE *fp;
if ((fp = fopen(file_name, "rb")) == NULL)
return (ERROR);
#else no_open_file /* prototype 2 */
void read_png(FILE *fp, unsigned int sig_read) /* File is already open */
{
png_structp png_ptr;
png_infop info_ptr;
png_uint_32 width, height;
int bit_depth, color_type, interlace_type;
#endif no_open_file /* Only use one prototype! */
/* Create and initialize the png_struct with the desired error handler
* functions. If you want to use the default stderr and longjump method,
* you can supply NULL for the last three parameters. We also supply the
* the compiler header file version, so that we know if the application
* was compiled with a compatible version of the library. REQUIRED
*/
png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING,
png_voidp user_error_ptr, user_error_fn, user_warning_fn);
if (png_ptr == NULL)
{
fclose(fp);
return (ERROR);
}
/* Allocate/initialize the memory for image information. REQUIRED. */
info_ptr = png_create_info_struct(png_ptr);
if (info_ptr == NULL)
{
fclose(fp);
png_destroy_read_struct(&png_ptr, NULL, NULL);
return (ERROR);
}
/* Set error handling if you are using the setjmp/longjmp method (this is
* the normal method of doing things with libpng). REQUIRED unless you
* set up your own error handlers in the png_create_read_struct() earlier.
*/
if (setjmp(png_jmpbuf(png_ptr)))
{
/* Free all of the memory associated with the png_ptr and info_ptr */
png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
fclose(fp);
/* If we get here, we had a problem reading the file */
return (ERROR);
}
/* One of the following I/O initialization methods is REQUIRED */
#ifdef streams /* PNG file I/O method 1 */
/* Set up the input control if you are using standard C streams */
png_init_io(png_ptr, fp);
#else no_streams /* PNG file I/O method 2 */
/* If you are using replacement read functions, instead of calling
* png_init_io() here you would call:
*/
png_set_read_fn(png_ptr, (void *)user_io_ptr, user_read_fn);
/* where user_io_ptr is a structure you want available to the callbacks */
#endif no_streams /* Use only one I/O method! */
/* If we have already read some of the signature */
png_set_sig_bytes(png_ptr, sig_read);
#ifdef hilevel
/*
* If you have enough memory to read in the entire image at once,
* and you need to specify only transforms that can be controlled
* with one of the PNG_TRANSFORM_* bits (this presently excludes
* quantizing, filling, setting background, and doing gamma
* adjustment), then you can read the entire image (including
* pixels) into the info structure with this call:
*/
png_read_png(png_ptr, info_ptr, png_transforms, NULL);
#else
/* OK, you're doing it the hard way, with the lower-level functions */
/* The call to png_read_info() gives us all of the information from the
* PNG file before the first IDAT (image data chunk). REQUIRED
*/
png_read_info(png_ptr, info_ptr);
//.........这里部分代码省略.........
开发者ID:93i,项目名称:ecere-sdk,代码行数:101,代码来源:example.c
示例8: loadPNG
int loadPNG(const char *filename) {
GLuint texture;
png_structp png_ptr = NULL;
png_infop info_ptr = NULL;
png_bytep *row_pointers = NULL;
int bitDepth, colourType;
FILE *pngFile = fopen(filename, "rb");
if (!pngFile)
return 0;
png_byte sig[8];
fread(&sig, 8, sizeof(png_byte), pngFile);
rewind(pngFile);
if (!png_check_sig(sig, 8)) {
//SDL_Log("png sig failure\n");
return 0;
}
png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (!png_ptr) {
//SDL_Log("png ptr not created\n");
return 0;
}
if (setjmp(png_jmpbuf(png_ptr))) {
//SDL_Log("set jmp failed\n");
return 0;
}
info_ptr = png_create_info_struct(png_ptr);
if (!info_ptr) {
//SDL_Log("cant get png info ptr\n");
return 0;
}
png_init_io(png_ptr, pngFile);
png_read_info(png_ptr, info_ptr);
bitDepth = png_get_bit_depth(png_ptr, info_ptr);
colourType = png_get_color_type(png_ptr, info_ptr);
if (colourType == PNG_COLOR_TYPE_PALETTE)
png_set_palette_to_rgb(png_ptr);
if (colourType == PNG_COLOR_TYPE_GRAY && bitDepth < 8)
//png_set_gray_1_2_4_to_8(png_ptr);
png_set_expand_gray_1_2_4_to_8(png_ptr); // thanks to Jesse Jaara for bug fix for newer libpng...
if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS))
png_set_tRNS_to_alpha(png_ptr);
if (bitDepth == 16)
png_set_strip_16(png_ptr);
else if (bitDepth < 8)
png_set_packing(png_ptr);
png_read_update_info(png_ptr, info_ptr);
png_uint_32 width, height;
png_get_IHDR(png_ptr, info_ptr, &width, &height, &bitDepth, &colourType, NULL, NULL, NULL);
int components; // = GetTextureInfo(colourType);
switch (colourType) {
case PNG_COLOR_TYPE_GRAY:
components = 1;
break;
case PNG_COLOR_TYPE_GRAY_ALPHA:
components = 2;
break;
case PNG_COLOR_TYPE_RGB:
components = 3;
break;
case PNG_COLOR_TYPE_RGB_ALPHA:
components = 4;
break;
default:
components = -1;
}
if (components == -1) {
if (png_ptr)
png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
//SDL_Log("%s broken?\n", filename);
return 0;
}
GLubyte *pixels =
(GLubyte *) malloc(sizeof(GLubyte) * (width * height * components));
row_pointers = (png_bytep *) malloc(sizeof(png_bytep) * height);
int i = 0;
for (i = 0; i < height; ++i) {
row_pointers[i] = (png_bytep) (pixels + (i * width * components));
}
png_read_image(png_ptr, row_pointers);
png_read_end(png_ptr, NULL);
glGenTextures(1, &texture);
glBindTexture(GL_TEXTURE_2D, texture);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
GLuint glcolours;
(components == 4) ? (glcolours = GL_RGBA) : (0);
(components == 3) ? (glcolours = GL_RGB) : (0);
(components == 2) ? (glcolours = GL_LUMINANCE_ALPHA) : (0);
(components == 1) ? (glcolours = GL_LUMINANCE) : (0);
//SDL_Log("%s has %i colour components\n",filename,components);
//glTexImage2D(GL_TEXTURE_2D, 0, components, width, height, 0, glcolours, GL_UNSIGNED_BYTE, pixels);
//.........这里部分代码省略.........
开发者ID:auuuux,项目名称:multigcs,代码行数:101,代码来源:draw.c
示例9: DisplaySplashImage
void DisplaySplashImage()
{
FILE *f = FioFOpenFile(SPLASH_IMAGE_FILE);
if (f == NULL) return;
png_byte header[8];
fread(header, sizeof(png_byte), 8, f);
if (png_sig_cmp(header, 0, 8) != 0) {
fclose(f);
return;
}
png_structp png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, (png_voidp) NULL, png_my_error, png_my_warning);
if (png_ptr == NULL) {
fclose(f);
return;
}
png_infop info_ptr = png_create_info_struct(png_ptr);
if (info_ptr == NULL) {
png_destroy_read_struct(&png_ptr, (png_infopp)NULL, (png_infopp)NULL);
fclose(f);
return;
}
png_infop end_info = png_create_info_struct(png_ptr);
if (end_info == NULL) {
png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
fclose(f);
return;
}
if (setjmp(png_jmpbuf(png_ptr))) {
png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
fclose(f);
return;
}
png_init_io(png_ptr, f);
png_set_sig_bytes(png_ptr, 8);
png_read_png(png_ptr, info_ptr, PNG_TRANSFORM_IDENTITY, NULL);
uint width = png_get_image_width(png_ptr, info_ptr);
uint height = png_get_image_height(png_ptr, info_ptr);
uint bit_depth = png_get_bit_depth(png_ptr, info_ptr);
uint color_type = png_get_color_type(png_ptr, info_ptr);
if (color_type != PNG_COLOR_TYPE_PALETTE || bit_depth != 8) {
png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
fclose(f);
return;
}
if (!png_get_valid(png_ptr, info_ptr, PNG_INFO_PLTE)) {
png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
fclose(f);
return;
}
png_colorp palette;
int num_palette;
png_get_PLTE(png_ptr, info_ptr, &palette, &num_palette);
png_bytep *row_pointers = png_get_rows(png_ptr, info_ptr);
if (width > (uint) _screen.width) width = _screen.width;
if (height > (uint) _screen.height) height = _screen.height;
uint xoff = (_screen.width - width) / 2;
uint yoff = (_screen.height - height) / 2;
switch (BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth()) {
case 8: {
uint8 *dst_ptr = (uint8 *)_screen.dst_ptr;
/* Initialize buffer */
MemSetT(dst_ptr, 0xff, _screen.pitch * _screen.height);
for (uint y = 0; y < height; y++) {
uint8 *src = row_pointers[y];
uint8 *dst = dst_ptr + (yoff + y) * _screen.pitch + xoff;
memcpy(dst, src, width);
}
for (int i = 0; i < num_palette; i++) {
_cur_palette[i].a = i == 0 ? 0 : 0xff;
_cur_palette[i].r = palette[i].red;
_cur_palette[i].g = palette[i].green;
_cur_palette[i].b = palette[i].blue;
}
_cur_palette[0xff].a = 0xff;
_cur_palette[0xff].r = 0;
_cur_palette[0xff].g = 0;
_cur_palette[0xff].b = 0;
_pal_first_dirty = 0;
_pal_count_dirty = 256;
//.........这里部分代码省略.........
开发者ID:Voxar,项目名称:OpenTTD,代码行数:101,代码来源:splash.cpp
示例10: pngReadImage
/* pngReadImage: Reads an image from a memory buffer.
Returns: non-zero if successful.
*/
int pngReadImage(int w, int h, int d, char* bits, char *data, int nBytes) {
png_bytep *row_pointers = NULL;
pngReadState rs;
png_structp png_ptr;
png_infop info_ptr;
png_uint_32 width, height;
int bit_depth, color_type, interlace_type;
DBG("pngReadImage: png_sig_cmp");
/* Compare the first PNG_BYTES_TO_CHECK bytes of the signature. */
if(png_sig_cmp(data, (png_size_t)0, PNG_BYTES_TO_CHECK)) return 0;
DBG("pngReadImage: png_create_read_struct");
/* Create the png_struct */
png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (png_ptr == NULL) return 0;
DBG("pngReadImage: png_create_info_struct");
/* Allocate/initialize the image information data. REQUIRED */
info_ptr = png_create_info_struct(png_ptr);
if (info_ptr == NULL) {
png_destroy_read_struct(&png_ptr, &info_ptr, png_infopp_NULL);
return 0;
}
/* Set error handling. REQUIRED if you aren't supplying your own
* error handling functions in the png_create_read_struct() call.
*/
if (setjmp(png_jmpbuf(png_ptr))) {
DBG("pngReadImage: triggered png_error");
/* If we get here, we had a problem reading the file */
png_destroy_read_struct(&png_ptr, &info_ptr, png_infopp_NULL);
if(row_pointers) free(row_pointers);
return 0;
}
rs.data = data;
rs.position = 0;
rs.length = nBytes;
png_set_read_fn(png_ptr, (void *)&rs, readBytes);
DBG("pngReadImage: png_read_info");
/* The call to png_read_info() gives us all of the information from the
* PNG file before the first IDAT (image data chunk). REQUIRED
*/
png_read_info(png_ptr, info_ptr);
png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
&interlace_type, int_p_NULL, int_p_NULL);
/* Set up the data transformations you want. Note that these are all
* optional. Only call them if you want/need them. Many of the
* transformations only work on specific types of images, and many
* are mutually exclusive.
*/
/* tell libpng to strip 16 bit/color files down to 8 bits/color */
png_set_strip_16(png_ptr);
/* flip the RGB pixels to BGR (or RGBA to BGRA) */
if (color_type & PNG_COLOR_MASK_COLOR) {
DBG("pngReadImage: png_set_bgr");
png_set_bgr(png_ptr);
}
if(d == 32 && color_type == PNG_COLOR_TYPE_RGB) {
/* Add filler (or alpha) byte (before/after each RGB triplet) */
DBG("pngReadImage: png_set_filler");
png_set_filler(png_ptr, 0xff, PNG_FILLER_AFTER);
}
if(0) {
/* Extract multiple pixels with bit depths of 1, 2, and 4 from a single
* byte into separate bytes (useful for paletted and grayscale images).
*/
png_set_packing(png_ptr);
/* Change the order of packed pixels to least significant bit first
* (not useful if you are using png_set_packing). */
png_set_packswap(png_ptr);
/* Expand paletted colors into true RGB triplets */
if (color_type == PNG_COLOR_TYPE_PALETTE)
png_set_palette_to_rgb(png_ptr);
}
/* Expand grayscale images to the full 8 bits from 1, 2, or 4 bits/pixel */
if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
png_set_gray_1_2_4_to_8(png_ptr);
/* Expand paletted or RGB images with transparency to full alpha channels
* so the data will be available as RGBA quartets.
*/
if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS))
png_set_tRNS_to_alpha(png_ptr);
if(0) {
//.........这里部分代码省略.........
开发者ID:JupiterSmalltalk,项目名称:openqwaq,代码行数:101,代码来源:sqPngSupport.c
示例11: error
bool PNGLoader::doDecodeImage(const byte *fileDataPtr, uint fileSize, byte *&uncompressedDataPtr, int &width, int &height, int &pitch) {
#ifndef USE_INTERNAL_PNG_DECODER
png_structp png_ptr = NULL;
png_infop info_ptr = NULL;
int bitDepth;
int colorType;
int interlaceType;
int i;
// Check for valid PNG signature
if (!doIsCorrectImageFormat(fileDataPtr, fileSize)) {
error("png_check_sig failed");
}
// Die beiden PNG Strukturen erstellen
png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (!png_ptr) {
error("Could not create libpng read struct.");
}
info_ptr = png_create_info_struct(png_ptr);
if (!info_ptr) {
error("Could not create libpng info struct.");
}
// Alternative Lesefunktion benutzen
const byte **ref = &fileDataPtr;
png_set_read_fn(png_ptr, (void *)ref, png_user_read_data);
// PNG Header einlesen
png_read_info(png_ptr, info_ptr);
// PNG Informationen auslesen
png_uint_32 w, h;
png_get_IHDR(png_ptr, info_ptr, &w, &h, &bitDepth, &colorType, &interlaceType, NULL, NULL);
width = w;
height = h;
// Pitch des Ausgabebildes berechnen
pitch = GraphicEngine::calcPitch(GraphicEngine::CF_ARGB32, width);
// Speicher für die endgültigen Bilddaten reservieren
// Dieses geschieht vor dem reservieren von Speicher für temporäre Bilddaten um die Fragmentierung des Speichers gering zu halten
uncompressedDataPtr = new byte[pitch * height];
if (!uncompressedDataPtr) {
error("Could not allocate memory for output image.");
}
// Bilder jeglicher Farbformate werden zunächst in ARGB Bilder umgewandelt
if (bitDepth == 16)
png_set_strip_16(png_ptr);
if (colorType == PNG_COLOR_TYPE_PALETTE)
png_set_expand(png_ptr);
if (bitDepth < 8)
png_set_expand(png_ptr);
if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS))
png_set_expand(png_ptr);
if (colorType == PNG_COLOR_TYPE_GRAY ||
colorType == PNG_COLOR_TYPE_GRAY_ALPHA)
png_set_gray_to_rgb(png_ptr);
png_set_bgr(png_ptr);
if (colorType != PNG_COLOR_TYPE_RGB_ALPHA)
png_set_filler(png_ptr, 0xff, PNG_FILLER_AFTER);
// Nachdem die Transformationen registriert wurden, werden die Bilddaten erneut eingelesen
png_read_update_info(png_ptr, info_ptr);
png_get_IHDR(png_ptr, info_ptr, &w, &h, &bitDepth, &colorType, NULL, NULL, NULL);
width = w;
height = h;
if (interlaceType == PNG_INTERLACE_NONE) {
// PNGs without interlacing can simply be read row by row.
for (i = 0; i < height; i++) {
png_read_row(png_ptr, uncompressedDataPtr + i * pitch, NULL);
}
} else {
// PNGs with interlacing require us to allocate an auxillary
// buffer with pointers to all row starts.
// Allocate row pointer buffer
png_bytep *pRowPtr = new png_bytep[height];
if (!pRowPtr) {
error("Could not allocate memory for row pointers.");
}
// Initialize row pointers
for (i = 0; i < height; i++)
pRowPtr[i] = uncompressedDataPtr + i * pitch;
// Read image data
png_read_image(png_ptr, pRowPtr);
// Free row pointer buffer
delete[] pRowPtr;
}
//.........这里部分代码省略.........
开发者ID:Templier,项目名称:scummvm-test,代码行数:101,代码来源:pngloader.cpp
示例12: naMain
int naMain(JNIEnv* env, jobject pObj, jstring pCmdStr, jobject pMainActObj) {
char progBuf[500];
jmethodID updateProgMID, toStringMID;
jstring progStr;
jclass mainActivityClass = (*env)->GetObjectClass(env, pMainActObj);
cachedMainActObj = (*env)->NewGlobalRef(env, pMainActObj);
// toStringMID = (*env)->GetMethodID(env, mainActivityClass, "toString", "()Ljava/lang/String;");
// jstring name = (*env)->CallObjectMethod(env, pMainActObj, toStringMID);
// const jbyte* nameStr = (*env)->GetStringUTFChars(env, name, NULL);
// LOGI(2, "toString: %s", nameStr);
// (*env)->ReleaseStringUTFChars(env, name, nameStr);
updateProgMID = (*env)->GetMethodID(env, mainActivityClass, "updateProgress", "(Ljava/lang/String;I)V");
if (NULL == updateProgMID) {
LOGE(1, "error finding method updateProgress");
return EXIT_FAILURE;
}
// char* test = "test";
// jstring jtest = (*env)->NewStringUTF(env, test);
// (*env)->CallVoidMethod(env, pMainActObj, updateProgMID, jtest);
int argc = 0;
char** argv = (char**) malloc (sizeof(char*)*4);
//the first input argument should be the program name itself
*argv = "fusch";
char** targv = argv + 1;
argc++;
jboolean isCopy;
char *cmdstr = (*env)->GetStringUTFChars(env, pCmdStr, &isCopy);
if (NULL == cmdstr) {
LOGI(2, "get string failed");
return EXIT_FAILURE;
}
char* pch;
pch = strtok(cmdstr, " ");
while (NULL != pch) {
*targv = pch;
argc++;
targv++;
pch = strtok(NULL, " ");
}
LOGI(1, "No. of arguments: %d", argc);
LOGI(1, "%s %s %s %s", argv[0], argv[1], argv[2], argv[3]);
#else
int main(int argc, char *argv[]) {
#endif
setlocale(LC_ALL, "");
setvbuf(stdout, (char*)NULL, _IONBF, 0);
if(argc != 4) {
fprintf(stderr, MSG[I_HELP1], argv[0]);
fputs(MSG[I_HELP2], stderr);
return EXIT_FAILURE;
}
char *inname = argv[1],
*outname = argv[2],
*valarg = argv[3];
/* Quelldatei oeffnen und auf PNG-Signatur ueberpruefen **********************/
#ifdef ANDROID_BUILD
// progStr = (*env)->NewStringUTF(env, MSG[I_OPEN]);
// (*env)->CallVoidMethod(env, pMainActObj, updateProgMID, progStr, 0);
#else
puts(MSG[I_OPEN]);
#endif
FILE *f;
f = fopen(inname, "rb");
if (f == NULL) {
fputs(inname, stderr);
fputs(MSG[E_OPEN], stderr);
fputc('\n', stderr);
return EXIT_FAILURE;
}
unsigned char sig[SIG_BYTES];
fread(sig, 1, SIG_BYTES, f);
if (png_sig_cmp(sig, 0, SIG_BYTES)) {
fputs(inname, stderr);
fputs(MSG[E_CORRUPTED], stderr);
fputc('\n', stderr);
fclose(f);
return EXIT_FAILURE;
}
/* PNG-Lesevorgang initialisieren *****************************************/
png_struct *png_ptr;
png_info *info_ptr, *end_info;
png_ptr = png_create_read_struct(
PNG_LIBPNG_VER_STRING,
(png_voidp)NULL, (png_error_ptr)NULL, (png_error_ptr)NULL
);
if (png_ptr == NULL) {
fputs(MSG[E_GENERIC], stderr);
//.........这里部分代码省略.........
开发者ID:GitNooby,项目名称:notes,代码行数:101,代码来源:fusch.c
示例13: png_create_read_struct
void TextureLoader::loadPNGTexture(std::ifstream& textureFile, unsigned int& width, unsigned int& height, unsigned char*& data) {
// Read and validate header
png_byte header[8];
textureFile.read((char*) header, 8);
if (png_sig_cmp(header, 0, 8)) {
return;
}
// Create PNG structs
png_structp png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (!png_ptr) {
return;
}
png_infop info_ptr = png_create_info_struct(png_ptr);
if (!info_ptr) {
png_destroy_read_struct(&png_ptr, (png_infopp) NULL, (png_infopp) NULL);
return;
}
png_infop end_info = png_create_info_struct(png_ptr);
if (!end_info) {
png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp) NULL);
return;
}
// PNG error handling
if (setjmp(png_jmpbuf(png_ptr))) {
png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
return;
}
// Setup stream read function
png_set_read_fn(png_ptr, (png_voidp)& textureFile, readPNGData);
// Read PNG info
png_set_sig_bytes(png_ptr, 8);
png_read_info(png_ptr, info_ptr);
png_set_strip_16(png_ptr);
png_set_expand_gray_1_2_4_to_8(png_ptr);
png_set_palette_to_rgb(png_ptr);
if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) {
png_set_tRNS_to_alpha(png_ptr);
}
png_read_update_info(png_ptr, info_ptr);
int channels = png_get_channels(png_ptr, info_ptr);
if(channels != 4) {
png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
return;
}
width = png_get_image_width(png_ptr, info_ptr);
height = png_get_image_height(png_ptr, info_ptr);
// Allocate memory for data
int rowbytes = png_get_rowbytes(png_ptr, info_ptr);
data = new unsigned char[rowbytes * height];
png_bytep *row_pointers = new png_bytep[height];
if (!data || !row_pointers) {
png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
return;
}
// Set up row_pointers to point at the correct offsets of data[]
for(unsigned int i = 0; i < height; ++i) {
//row_pointers[height - 1 - i] = data + i * rowbytes; // same thing
row_pointers[i] = data + (height - 1 - i) * rowbytes;
}
// Read the data
png_read_image(png_ptr, row_pointers);
}
开发者ID:akkenoth,项目名称:eel,代码行数:71,代码来源:TextureLoader.cpp
示例14: read_png
int
read_png (const char *filename,
char **data,
unsigned int *width,
unsigned int *height)
{
int i;
FILE *file;
static const int PNG_SIG_SIZE = 8;
unsigned char png_sig[PNG_SIG_SIZE];
int sig_bytes;
png_struct *png;
png_info *info;
png_uint_32 png_width, png_height;
int depth, color_type, interlace;
unsigned int pixel_size;
png_byte **row_pointers;
file = fopen (filename, "rb");
if (file == NULL)
return 1;
sig_bytes = fread (png_sig, 1, PNG_SIG_SIZE, file);
if (png_check_sig (png_sig, sig_bytes) == 0) {
fclose (file);
return 2;
}
/* XXX: Perhaps we'll want some other error handlers? */
png = png_create_read_struct (PNG_LIBPNG_VER_STRING,
NULL,
NULL,
NULL);
if (png == NULL) {
fclose (file);
return 3;
}
info = png_create_info_struct (png);
if (info == NULL) {
fclose (file);
png_destroy_read_struct (&png, NULL, NULL);
return 3;
}
png_init_io (png, file);
png_set_sig_bytes (png, sig_bytes);
png_read_info (png, info);
png_get_IHDR (png, info,
&png_width, &png_height, &depth,
&color_type, &interlace, NULL, NULL);
*width = png_width;
*height = png_height;
/* convert palette/gray image to rgb */
if (color_type == PNG_COLOR_TYPE_PALETTE)
png_set_palette_to_rgb (png);
/* expand gray bit depth if needed */
if (color_type == PNG_COLOR_TYPE_GRAY && depth < 8)
png_set_gray_1_2_4_to_8 (png);
/* transform transparency to alpha */
if (png_get_valid(png, info, PNG_INFO_tRNS))
png_set_tRNS_to_alpha (png);
if (depth == 16)
png_set_strip_16 (png);
if (depth < 8)
png_set_packing (png);
/* convert grayscale to RGB */
if (color_type == PNG_COLOR_TYPE_GRAY
|| color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
png_set_gray_to_rgb (png);
if (interlace != PNG_INTERLACE_NONE)
png_set_interlace_handling (png);
png_set_bgr (png);
png_set_filler (png, 0xff, PNG_FILLER_AFTER);
png_set_read_user_transform_fn(png, premultiply_data);
png_read_update_info (png, info);
pixel_size = 4;
*data = (char *) malloc (png_width * png_height * pixel_size);
if (*data == NULL) {
fclose (file);
return 3;
}
row_pointers = (png_byte **) malloc (png_height * sizeof(char *));
for (i=0; i < png_height; i++)
row_pointers[i] = (png_byte *) (*data + i * png_width * pixel_size);
//.........这里部分代码省略.........
开发者ID:BackupTheBerlios,项目名称:bouda,代码行数:101,代码来源:read-png.c
|
请发表评论