1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
|
/*
Copyright (C) 2006 Serge "(515)" Ziryukin, Forest "LordHavoc" Hale
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
*/
//[515]: png implemented into DP ONLY FOR TESTING 2d stuff with csqc
// so delete this bullshit :D
//
//LordHavoc: rewrote most of this.
#ifdef LINK_TO_PNG
# include <png.h>
#endif
#include "quakedef.h"
#include "image.h"
#include "image_png.h"
#ifdef LINK_TO_PNG
#define qpng_set_sig_bytes png_set_sig_bytes
#define qpng_sig_cmp png_sig_cmp
#define qpng_create_read_struct png_create_read_struct
#define qpng_create_write_struct png_create_write_struct
#define qpng_create_info_struct png_create_info_struct
#define qpng_read_info png_read_info
#define qpng_set_compression_level png_set_compression_level
#define qpng_set_filter png_set_filter
#define qpng_set_expand png_set_expand
#define qpng_set_palette_to_rgb png_set_palette_to_rgb
#define qpng_set_tRNS_to_alpha png_set_tRNS_to_alpha
#define qpng_set_gray_to_rgb png_set_gray_to_rgb
#define qpng_set_filler png_set_filler
#define qpng_set_IHDR png_set_IHDR
#define qpng_set_packing png_set_packing
#define qpng_set_bgr png_set_bgr
#define qpng_set_interlace_handling png_set_interlace_handling
#define qpng_read_update_info png_read_update_info
#define qpng_read_image png_read_image
#define qpng_read_end png_read_end
#define qpng_destroy_read_struct png_destroy_read_struct
#define qpng_destroy_write_struct png_destroy_write_struct
#define qpng_set_read_fn png_set_read_fn
#define qpng_set_write_fn png_set_write_fn
#define qpng_get_valid png_get_valid
#define qpng_get_rowbytes png_get_rowbytes
#define qpng_get_channels png_get_channels
#define qpng_get_bit_depth png_get_bit_depth
#define qpng_get_IHDR png_get_IHDR
#define qpng_access_version_number png_access_version_number
#define qpng_write_info png_write_info
#define qpng_write_row png_write_row
#define qpng_write_end png_write_end
#define qpng_jmpbuf png_jmpbuf
#else
/*
* Without LINK_TO_PNG, DarkPlaces assumes libpng 1.2 (in which png_uint_32
* is always unsigned long even if that's 64-bit), and then attempts
* to correct for it if it's actually 1.4 or 1.5 (where png_uint_32 is
* unsigned int if that's at least 32 bits, or unsigned long otherwise).
*
* With LINK_TO_PNG we use the library API/ABI as intended.
*/
typedef unsigned long png_uint_32;
typedef struct png_struct_def *png_structp;
typedef struct png_struct_def **png_structpp;
typedef struct png_info_struct *png_infop;
typedef struct png_info_struct **png_infopp;
static void (*qpng_set_sig_bytes) (void*, int);
static int (*qpng_sig_cmp) (unsigned char*, size_t, size_t);
static void* (*qpng_create_read_struct) (const char*, void*, void(*)(png_structp png, const char *message), void(*)(png_structp png, const char *message));
static void* (*qpng_create_write_struct) (const char*, void*, void(*)(png_structp png, const char *message), void(*)(png_structp png, const char *message));
static void* (*qpng_create_info_struct) (void*);
static void (*qpng_read_info) (void*, void*);
static void (*qpng_set_compression_level) (void*, int);
static void (*qpng_set_filter) (void*, int, int);
static void (*qpng_set_expand) (void*);
static void (*qpng_set_palette_to_rgb) (void*);
static void (*qpng_set_tRNS_to_alpha) (void*);
static void (*qpng_set_gray_to_rgb) (void*);
static void (*qpng_set_filler) (void*, unsigned int, int);
static void (*qpng_set_IHDR) (void*, void*, png_uint_32, png_uint_32, int, int, int, int, int);
static void (*qpng_set_packing) (void*);
static void (*qpng_set_bgr) (void*);
static int (*qpng_set_interlace_handling) (void*);
static void (*qpng_read_update_info) (void*, void*);
static void (*qpng_read_image) (void*, unsigned char**);
static void (*qpng_read_end) (void*, void*);
static void (*qpng_destroy_read_struct) (png_structpp, png_infopp, void**);
static void (*qpng_destroy_write_struct) (png_structpp, png_infopp);
static void (*qpng_set_read_fn) (void*, void*, void(*)(png_structp png, unsigned char *data, size_t length));
static void (*qpng_set_write_fn) (void*, void*, void(*)(png_structp png, unsigned char *data, size_t length), void(*)(png_structp png));
static unsigned int (*qpng_get_valid) (void*, void*, unsigned int);
static unsigned int (*qpng_get_rowbytes) (void*, void*);
static unsigned char (*qpng_get_channels) (void*, void*);
static unsigned char (*qpng_get_bit_depth) (void*, void*);
static png_uint_32 (*qpng_get_IHDR) (void*, void*, png_uint_32 *, png_uint_32 *, int *, int *, int *, int *, int *);
static unsigned int (*qpng_access_version_number) (void); // FIXME is this return type right? It is a png_uint_32 in libpng
static void (*qpng_write_info) (void*, void*);
static void (*qpng_write_row) (void*, unsigned char*);
static void (*qpng_write_end) (void*, void*);
// libpng 1.4+ longjmp hack
typedef void (*qpng_longjmp_ptr) (jmp_buf, int);
static jmp_buf* (*qpng_set_longjmp_fn) (void *, qpng_longjmp_ptr, size_t);
#define qpng_jmpbuf_14(png_ptr) (*qpng_set_longjmp_fn((png_ptr), longjmp, sizeof (jmp_buf)))
// libpng 1.2 longjmp hack
#define qpng_jmpbuf_12(png_ptr) (*((jmp_buf *) png_ptr))
// all version support
#define qpng_jmpbuf(png_ptr) \
(qpng_set_longjmp_fn ? qpng_jmpbuf_14(png_ptr) : qpng_jmpbuf_12(png_ptr))
static dllfunction_t pngfuncs[] =
{
{"png_set_sig_bytes", (void **) &qpng_set_sig_bytes},
{"png_sig_cmp", (void **) &qpng_sig_cmp},
{"png_create_read_struct", (void **) &qpng_create_read_struct},
{"png_create_write_struct", (void **) &qpng_create_write_struct},
{"png_create_info_struct", (void **) &qpng_create_info_struct},
{"png_read_info", (void **) &qpng_read_info},
{"png_set_compression_level", (void **) &qpng_set_compression_level},
{"png_set_filter", (void **) &qpng_set_filter},
{"png_set_expand", (void **) &qpng_set_expand},
{"png_set_palette_to_rgb", (void **) &qpng_set_palette_to_rgb},
{"png_set_tRNS_to_alpha", (void **) &qpng_set_tRNS_to_alpha},
{"png_set_gray_to_rgb", (void **) &qpng_set_gray_to_rgb},
{"png_set_filler", (void **) &qpng_set_filler},
{"png_set_IHDR", (void **) &qpng_set_IHDR},
{"png_set_packing", (void **) &qpng_set_packing},
{"png_set_bgr", (void **) &qpng_set_bgr},
{"png_set_interlace_handling", (void **) &qpng_set_interlace_handling},
{"png_read_update_info", (void **) &qpng_read_update_info},
{"png_read_image", (void **) &qpng_read_image},
{"png_read_end", (void **) &qpng_read_end},
{"png_destroy_read_struct", (void **) &qpng_destroy_read_struct},
{"png_destroy_write_struct", (void **) &qpng_destroy_write_struct},
{"png_set_read_fn", (void **) &qpng_set_read_fn},
{"png_set_write_fn", (void **) &qpng_set_write_fn},
{"png_get_valid", (void **) &qpng_get_valid},
{"png_get_rowbytes", (void **) &qpng_get_rowbytes},
{"png_get_channels", (void **) &qpng_get_channels},
{"png_get_bit_depth", (void **) &qpng_get_bit_depth},
{"png_get_IHDR", (void **) &qpng_get_IHDR},
{"png_access_version_number", (void **) &qpng_access_version_number},
{"png_write_info", (void **) &qpng_write_info},
{"png_write_row", (void **) &qpng_write_row},
{"png_write_end", (void **) &qpng_write_end},
{NULL, NULL}
};
static dllfunction_t png14funcs[] =
{
{"png_set_longjmp_fn", (void **) &qpng_set_longjmp_fn},
{NULL, NULL}
};
// Handle for PNG DLL
dllhandle_t png_dll = NULL;
dllhandle_t png14_dll = NULL;
#endif
/*
=================================================================
DLL load & unload
=================================================================
*/
/*
====================
PNG_OpenLibrary
Try to load the PNG DLL
====================
*/
qboolean PNG_OpenLibrary (void)
{
#ifdef LINK_TO_PNG
return TRUE;
#else
const char* dllnames [] =
{
#if WIN32
"libpng16.dll",
"libpng16-16.dll",
"libpng15-15.dll",
"libpng15.dll",
"libpng14-14.dll",
"libpng14.dll",
"libpng12.dll",
#elif defined(MACOSX)
"libpng16.16.dylib",
"libpng15.15.dylib",
"libpng14.14.dylib",
"libpng12.0.dylib",
#else
"libpng16.so.16",
"libpng15.so.15", // WTF libtool guidelines anyone?
"libpng14.so.14", // WTF libtool guidelines anyone?
"libpng12.so.0",
"libpng.so", // FreeBSD
#endif
NULL
};
// Already loaded?
if (png_dll)
return true;
// Load the DLL
if(!Sys_LoadLibrary (dllnames, &png_dll, pngfuncs))
return false;
if(qpng_access_version_number() / 100 >= 104)
if(!Sys_LoadLibrary (dllnames, &png14_dll, png14funcs))
{
Sys_UnloadLibrary (&png_dll);
return false;
}
return true;
#endif
}
/*
====================
PNG_CloseLibrary
Unload the PNG DLL
====================
*/
void PNG_CloseLibrary (void)
{
#ifndef LINK_TO_PNG
Sys_UnloadLibrary (&png14_dll);
Sys_UnloadLibrary (&png_dll);
#endif
}
/*
=================================================================
PNG decompression
=================================================================
*/
#ifndef LINK_TO_PNG
#define PNG_LIBPNG_VER_STRING_12 "1.2.4"
#define PNG_LIBPNG_VER_STRING_14 "1.4.0"
#define PNG_LIBPNG_VER_STRING_15 "1.5.0"
#define PNG_LIBPNG_VER_STRING_16 "1.6.0"
#define PNG_COLOR_MASK_PALETTE 1
#define PNG_COLOR_MASK_COLOR 2
#define PNG_COLOR_MASK_ALPHA 4
#define PNG_COLOR_TYPE_GRAY 0
#define PNG_COLOR_TYPE_PALETTE (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_PALETTE)
#define PNG_COLOR_TYPE_RGB (PNG_COLOR_MASK_COLOR)
#define PNG_COLOR_TYPE_RGB_ALPHA (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_ALPHA)
#define PNG_COLOR_TYPE_GRAY_ALPHA (PNG_COLOR_MASK_ALPHA)
#define PNG_COLOR_TYPE_RGBA PNG_COLOR_TYPE_RGB_ALPHA
#define PNG_COLOR_TYPE_GA PNG_COLOR_TYPE_GRAY_ALPHA
#define PNG_INFO_tRNS 0x0010
#endif
// this struct is only used for status information during loading
static struct
{
const unsigned char *tmpBuf;
int tmpBuflength;
int tmpi;
//int FBgColor;
//int FTransparent;
unsigned int FRowBytes;
//double FGamma;
//double FScreenGamma;
unsigned char **FRowPtrs;
unsigned char *Data;
//char *Title;
//char *Author;
//char *Description;
int BitDepth;
int BytesPerPixel;
int ColorType;
png_uint_32 Height;
png_uint_32 Width;
int Interlace;
int Compression;
int Filter;
//double LastModified;
//int Transparent;
qfile_t *outfile;
} my_png;
//LordHavoc: removed __cdecl prefix, added overrun protection, and rewrote this to be more efficient
static void PNG_fReadData(png_structp png, unsigned char *data, size_t length)
{
size_t l;
l = my_png.tmpBuflength - my_png.tmpi;
if (l < length)
{
Con_Printf("PNG_fReadData: overrun by %i bytes\n", (int)(length - l));
// a read going past the end of the file, fill in the remaining bytes
// with 0 just to be consistent
memset(data + l, 0, length - l);
length = l;
}
memcpy(data, my_png.tmpBuf + my_png.tmpi, length);
my_png.tmpi += (int)length;
//Com_HexDumpToConsole(data, (int)length);
}
static void PNG_fWriteData(png_structp png, unsigned char *data, size_t length)
{
FS_Write(my_png.outfile, data, length);
}
static void PNG_fFlushData(png_structp png)
{
}
static void PNG_error_fn(png_structp png, const char *message)
{
Con_Printf("PNG_LoadImage: error: %s\n", message);
}
static void PNG_warning_fn(png_structp png, const char *message)
{
Con_Printf("PNG_LoadImage: warning: %s\n", message);
}
unsigned char *PNG_LoadImage_BGRA (const unsigned char *raw, int filesize, int *miplevel)
{
unsigned int c;
unsigned int y;
png_structp png;
png_infop pnginfo;
unsigned char *imagedata = NULL;
unsigned char ioBuffer[8192];
// FIXME: register an error handler so that abort() won't be called on error
#ifndef LINK_TO_PNG
// No DLL = no PNGs
if (!png_dll)
return NULL;
#endif
// png_sig_cmp is not fully const-correct
if(qpng_sig_cmp((unsigned char *) raw, 0, filesize))
return NULL;
png = (void *)qpng_create_read_struct(
#ifdef LINK_TO_PNG
PNG_LIBPNG_VER_STRING,
#else
(qpng_access_version_number() / 100 == 102) ? PNG_LIBPNG_VER_STRING_12 :
(qpng_access_version_number() / 100 == 104) ? PNG_LIBPNG_VER_STRING_14 :
(qpng_access_version_number() / 100 == 105) ? PNG_LIBPNG_VER_STRING_15 :
PNG_LIBPNG_VER_STRING_16, // nasty hack... whatever
#endif
0, PNG_error_fn, PNG_warning_fn
);
if(!png)
return NULL;
// this must be memset before the setjmp error handler, because it relies
// on the fields in this struct for cleanup
memset(&my_png, 0, sizeof(my_png));
// NOTE: this relies on jmp_buf being the first thing in the png structure
// created by libpng! (this is correct for libpng 1.2.x)
if (setjmp(qpng_jmpbuf(png)))
{
if (my_png.Data)
Mem_Free(my_png.Data);
my_png.Data = NULL;
if (my_png.FRowPtrs)
Mem_Free(my_png.FRowPtrs);
my_png.FRowPtrs = NULL;
qpng_destroy_read_struct(&png, &pnginfo, 0);
return NULL;
}
//
pnginfo = qpng_create_info_struct(png);
if(!pnginfo)
{
qpng_destroy_read_struct(&png, &pnginfo, 0);
return NULL;
}
qpng_set_sig_bytes(png, 0);
my_png.tmpBuf = raw;
my_png.tmpBuflength = filesize;
my_png.tmpi = 0;
//my_png.Data = NULL;
//my_png.FRowPtrs = NULL;
//my_png.Height = 0;
//my_png.Width = 0;
my_png.ColorType = PNG_COLOR_TYPE_RGB;
//my_png.Interlace = 0;
//my_png.Compression = 0;
//my_png.Filter = 0;
qpng_set_read_fn(png, ioBuffer, PNG_fReadData);
qpng_read_info(png, pnginfo);
qpng_get_IHDR(png, pnginfo, &my_png.Width, &my_png.Height,&my_png.BitDepth, &my_png.ColorType, &my_png.Interlace, &my_png.Compression, &my_png.Filter);
#ifndef LINK_TO_PNG
// this check guards against pngconf.h with unsigned int *width/height parameters on big endian systems by detecting the strange values and shifting them down 32bits
// (if it's little endian the unwritten bytes are the most significant
// ones and we don't worry about that)
//
// this is only necessary because of retarded 64bit png_uint_32 types in libpng 1.2, which can (conceivably) vary by platform
//
// If LINK_TO_PNG is defined, we should never need this,
// because we get the correct definition of png_uint_32 from the
// system libpng header.
#if LONG_MAX > 4000000000
if (my_png.Width > LONG_MAX || my_png.Height > LONG_MAX)
{
my_png.Width >>= 32;
my_png.Height >>= 32;
}
#endif
#endif
if (my_png.ColorType == PNG_COLOR_TYPE_PALETTE)
qpng_set_palette_to_rgb(png);
if (my_png.ColorType == PNG_COLOR_TYPE_GRAY || my_png.ColorType == PNG_COLOR_TYPE_GRAY_ALPHA)
qpng_set_gray_to_rgb(png);
if (qpng_get_valid(png, pnginfo, PNG_INFO_tRNS))
qpng_set_tRNS_to_alpha(png);
if (my_png.BitDepth == 8 && !(my_png.ColorType & PNG_COLOR_MASK_ALPHA))
qpng_set_filler(png, 255, 1);
if (( my_png.ColorType == PNG_COLOR_TYPE_GRAY) || (my_png.ColorType == PNG_COLOR_TYPE_GRAY_ALPHA ))
qpng_set_gray_to_rgb(png);
if (my_png.BitDepth < 8)
qpng_set_expand(png);
qpng_read_update_info(png, pnginfo);
my_png.FRowBytes = qpng_get_rowbytes(png, pnginfo);
my_png.BytesPerPixel = qpng_get_channels(png, pnginfo);
my_png.FRowPtrs = (unsigned char **)Mem_Alloc(tempmempool, my_png.Height * sizeof(*my_png.FRowPtrs));
if (my_png.FRowPtrs)
{
imagedata = (unsigned char *)Mem_Alloc(tempmempool, my_png.Height * my_png.FRowBytes);
if(imagedata)
{
my_png.Data = imagedata;
for(y = 0;y < my_png.Height;y++)
my_png.FRowPtrs[y] = my_png.Data + y * my_png.FRowBytes;
qpng_read_image(png, my_png.FRowPtrs);
}
else
{
Con_Printf("PNG_LoadImage : not enough memory\n");
qpng_destroy_read_struct(&png, &pnginfo, 0);
Mem_Free(my_png.FRowPtrs);
return NULL;
}
Mem_Free(my_png.FRowPtrs);
my_png.FRowPtrs = NULL;
}
else
{
Con_Printf("PNG_LoadImage : not enough memory\n");
qpng_destroy_read_struct(&png, &pnginfo, 0);
return NULL;
}
qpng_read_end(png, pnginfo);
qpng_destroy_read_struct(&png, &pnginfo, 0);
image_width = (int)my_png.Width;
image_height = (int)my_png.Height;
if (my_png.BitDepth != 8)
{
Con_Printf ("PNG_LoadImage : bad color depth\n");
Mem_Free(imagedata);
return NULL;
}
// swizzle RGBA to BGRA
for (y = 0;y < (unsigned int)(image_width*image_height*4);y += 4)
{
c = imagedata[y+0];
imagedata[y+0] = imagedata[y+2];
imagedata[y+2] = c;
}
return imagedata;
}
/*
=================================================================
PNG compression
=================================================================
*/
#define Z_BEST_SPEED 1
#define Z_BEST_COMPRESSION 9
#define PNG_INTERLACE_NONE 0
#define PNG_INTERLACE_ADAM7 1
#define PNG_FILTER_TYPE_BASE 0
#define PNG_FILTER_TYPE_DEFAULT PNG_FILTER_TYPE_BASE
#define PNG_COMPRESSION_TYPE_BASE 0
#define PNG_COMPRESSION_TYPE_DEFAULT PNG_COMPRESSION_TYPE_BASE
#define PNG_NO_FILTERS 0x00
#define PNG_FILTER_NONE 0x08
#define PNG_FILTER_SUB 0x10
#define PNG_FILTER_UP 0x20
#define PNG_FILTER_AVG 0x40
#define PNG_FILTER_PAETH 0x80
#define PNG_ALL_FILTERS (PNG_FILTER_NONE | PNG_FILTER_SUB | PNG_FILTER_UP | \
PNG_FILTER_AVG | PNG_FILTER_PAETH)
/*
====================
PNG_SaveImage_preflipped
Save a preflipped PNG image to a file
====================
*/
qboolean PNG_SaveImage_preflipped (const char *filename, int width, int height, qboolean has_alpha, unsigned char *data)
{
unsigned int offset, linesize;
qfile_t* file = NULL;
png_structp png;
png_infop pnginfo;
unsigned char ioBuffer[8192];
int passes, i, j;
#ifndef LINK_TO_PNG
// No DLL = no JPEGs
if (!png_dll)
{
Con_Print("You need the libpng library to save PNG images\n");
return false;
}
#endif
png = qpng_create_write_struct(
#ifdef LINK_TO_PNG
PNG_LIBPNG_VER_STRING,
#else
(qpng_access_version_number() / 100 == 102) ? PNG_LIBPNG_VER_STRING_12 :
(qpng_access_version_number() / 100 == 104) ? PNG_LIBPNG_VER_STRING_14 :
(qpng_access_version_number() / 100 == 105) ? PNG_LIBPNG_VER_STRING_15 :
PNG_LIBPNG_VER_STRING_16, // nasty hack... whatever
#endif
0, PNG_error_fn, PNG_warning_fn
);
if(!png)
return false;
pnginfo = qpng_create_info_struct(png);
if(!pnginfo)
{
qpng_destroy_write_struct(&png, NULL);
return false;
}
// this must be memset before the setjmp error handler, because it relies
// on the fields in this struct for cleanup
memset(&my_png, 0, sizeof(my_png));
if (setjmp(qpng_jmpbuf(png)))
{
qpng_destroy_write_struct(&png, &pnginfo);
return false;
}
// Open the file
file = FS_OpenRealFile(filename, "wb", true);
if (!file)
return false;
my_png.outfile = file;
qpng_set_write_fn(png, ioBuffer, PNG_fWriteData, PNG_fFlushData);
//qpng_set_compression_level(png, Z_BEST_COMPRESSION);
qpng_set_compression_level(png, Z_BEST_SPEED);
qpng_set_IHDR(png, pnginfo, width, height, 8, has_alpha ? PNG_COLOR_TYPE_RGB_ALPHA : PNG_COLOR_TYPE_RGB, PNG_INTERLACE_ADAM7, PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
qpng_set_filter(png, 0, PNG_NO_FILTERS);
qpng_write_info(png, pnginfo);
qpng_set_packing(png);
qpng_set_bgr(png);
passes = qpng_set_interlace_handling(png);
linesize = width * (has_alpha ? 4 : 3);
offset = linesize * (height - 1);
for(i = 0; i < passes; ++i)
for(j = 0; j < height; ++j)
qpng_write_row(png, &data[offset - j * linesize]);
qpng_write_end(png, NULL);
qpng_destroy_write_struct(&png, &pnginfo);
FS_Close (file);
return true;
}
|