/usr/src/castle-game-engine-5.2.0/images/images_png.inc is in castle-game-engine-src 5.2.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 | {
Copyright 2002-2014 Michalis Kamburelis.
This file is part of "Castle Game Engine".
"Castle Game Engine" is free software; see the file COPYING.txt,
included in this distribution, for details about the copyright.
"Castle Game Engine" 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.
----------------------------------------------------------------------------
}
{ Declare utilities to deal with PNGs and libpng. }
type
ELibPngNotAvailable = class(Exception);
EPngTransformError = class(Exception);
{ Return the version of used libpng library
(taken by querying png_access_version_number).
They raise ELibPngNotAvailable exception if libpng library
was not available (not CastlePngInited) or if version of libpng
library is incompatible with interface defined in KamiPng unit.
So these functions actually not only return version of libpng,
they also check is libpng available (and has the proper version).
The three Integer functions should always match the first
3 components of SO_PNG_LIBPNG_VER_STRING.
@groupBegin }
function SO_PNG_LIBPNG_VER_STRING: PChar; forward;
function SO_PNG_LIBPNG_VER_MAJOR: Integer; forward;
function SO_PNG_LIBPNG_VER_MINOR: Integer; forward;
function SO_PNG_LIBPNG_VER_RELEASE: Integer; forward;
{ @groupEnd }
{ Use all functions below ONLY when CastlePngInited = true
(often comfortable way to check CastlePngInited is to call
one of SO_xxx functions above). }
{ }
procedure png_transform_to_g1byte(png_ptr: png_structp; info_ptr: png_infop); forward;
procedure png_transform_to_ga2byte(png_ptr: png_structp; info_ptr: png_infop); forward;
{ Apply transformations in such a way that EVERY png format wil be converted to
RGB 8bit depth, no fill, no alpha.
So, paletted and grayscales must be converted, bytes got to have appriopriate
order, alpha channel must be applied and then thrown out.}
procedure png_transform_to_rgb3byte(png_ptr: png_structp; info_ptr: png_infop); forward;
{ Apply transformation to convert EVERY png to RGBA 8 byte depth.
So, paletted and grayscales must be converted, bytes got to have appriopriate
order and alpha channel must be added (=1.0) if it is not already present
in file. }
procedure png_transform_to_rgba4byte(png_ptr: png_structp; info_ptr: png_infop); forward;
{ png file has alpha info if it is has alpha channel (grayscale or rgb)
or if it has tRNS chunk (for paletted image this stores alpha values
for each palette color, for grayscale/rgb it determines one particular
color to mean "transparent"). Function below checks it. }
function png_is_alpha(png_ptr: png_structp; info_ptr: png_infop): boolean; forward;
function png_is_grayscale(png_ptr: png_structp; info_ptr: png_infop): boolean; forward;
function PngColorTypeToStr(PngColorType: longint): string; forward;
function PngInterlaceTypeToStr(PngInterlaceType: longint): string; forward;
function PngTextCompressionToStr(PngTextCompression: longint): string; forward;
var
{ Call InitializePNG to set these variables }
fSO_VER_STRING: AnsiString;
fSO_VER_MAJOR, fSO_VER_MINOR, fSO_VER_RELEASE: integer;
procedure Check_SO_VER;
{ Wywolujemy ta funkcje tylko gdy zwracamy SO_PNG_LIBPNG_VER_LIBPNG_xxx,
bo jezeli nie uzyles tej funkcji to znaczy ze uzywasz PNG_LIBPNG_VER_xxx
a wiec polegasz na libpng ktore samo przetestuje czy wersje biblioteki
i tego unitu sa kompatybilne.
Oczywiscie - zrobilem wlasne funkcje SO_PNG_LIBPNG_VER_xx bo
libpng wedlug mnie testowalo za ostro wersje biblioteki. Wiec tutaj
chcemy robic sprawdzanie wersji mniej restrykcyjne.}
begin
if not CastlePngInited then
raise ELibPngNotAvailable.Create('LibPng (or it''s dependency, ZLib) is not available. Make sure that the dynamic libraries for LibPng and ZLib are installed (or placed alongside the exe file on Windows).');
if fSO_VER_MAJOR <> 1 then
raise ELibPngNotAvailable.CreateFmt('LibPng major version is %d, ' +
'but 1 is required -- cannot use available LibPng library', [fSO_VER_MAJOR]);
end;
function SO_PNG_LIBPNG_VER_STRING: PChar;
begin Check_SO_VER; result := PChar(fSO_VER_STRING) end;
function SO_PNG_LIBPNG_VER_MAJOR: integer;
begin Check_SO_VER; result := fSO_VER_MAJOR end;
function SO_PNG_LIBPNG_VER_MINOR: integer;
begin Check_SO_VER; result := fSO_VER_MINOR end;
function SO_PNG_LIBPNG_VER_RELEASE: integer;
begin Check_SO_VER; result := fSO_VER_RELEASE end;
{ ------------------------------------------------------------------------------------ }
{ Kilka notek do pisania transformacji libpng :
pamietaj ze transformacje uaktualniaja stan strukturki png_ptr
(typu png_structp), natomiast nie uaktualniaja info_ptr
(typu png_infop). Jak po zaaplikowaniu transformacji w
uniwersalny sposob dowiedziec sie jaki mamy teraz ColorType
i BitDepth ? Wydaje sie ze sensowny sposob to png_read_update_info
a potem png_get_IHDR (samo png_get_IHDR nie wystarczy, musi byc
png_read_update_info aby uaktualnic strukturke info_ptr;
w ogole nie wiem po co png_get_IHDR pobiera jako parametr takze
png_ptr - na png_get_IHDR trzeba patrzec jako na rozkodowanie
wnetrza strukturki info_ptr) ale nie - read_update_info powoduje
niezrozumialy warning a potem sprawia ze poprawny odczyt jest
niemozliwy.
po zaaplikowaniu kazdej transformacji musimy odswiezyc wartosc ColorType
i bitDepth. Niestety nie mozemy do tego uzywac png_read_update_info +
png_get_IHDR. Naprawde nie wiem czemu, ale
uzywanie png_read_update_info wiecej niz raz powoduje warningi
libpng "Ignoring extra png_read_update_info() call; row buffer not reallocated"
ktorych sens pozostaje dla mnie nieodgadniony (dlaczego je ignoruje ?
przeciez uaktualnia info_ptr a chyba taki jest sens tej funkcji ?).
Potem przy odczytywaniu obrazka jest blad "Decompression error"
wiec wniosek - nie uzywac png_read_update_info wiecej niz raz.
Czyli wolno tego uzywac tylko w taki sposob w jaki napisali w manualu -
jednorazowo, juz po wykonaniu wszystkich transformacji. }
{ Make sure you have grayscale image, with 8 bits per color.
Assumes we already have stripped palette, so it's "true" color per pixel.
Alpha channel is never added/stripped by this, although it will
be converted to 8 bits too if exists. }
procedure png_transform_rgb_to_grayscale8bit(png_ptr: png_structp;
var ColorType, BitDepth: LongWord);
begin
{ rgb -> grayscale }
if (ColorType and PNG_COLOR_MASK_COLOR) <> 0 then
begin
png_set_rgb_to_gray_fixed(png_ptr,
{ Error_action = 1 means "silently do the conversion" }
1,
{ Negative weights means "use the default weight" (matches my
GrayscaleValuesByte weights, actually my GrayscaleValuesByte
was copied from libpng documentation...) }
-1, -1);
ColorType := ColorType and (not PNG_COLOR_MASK_COLOR);
end;
{ grayscale-non-8-bit -> 8bit grayscale }
if BitDepth < 8 then
begin
{$ifdef CASTLE_PNG_STATIC}
png_set_expand_gray_1_2_4_to_8(png_ptr);
{$else}
if Assigned(png_set_expand_gray_1_2_4_to_8) then
png_set_expand_gray_1_2_4_to_8(png_ptr) else
raise EPngTransformError.Create('Your png library doesn''t have png_set_expand_gray_1_2_4_to_8, needed to handle this image');
{$endif}
BitDepth := 8;
end;
{now he have grayscale 8/16 bitDepth + maybe alpha, maybe unapplied tRNS}
{rgb 16 bitdepth -> rgb 8 bitdepth}
if BitDepth = 16 then
begin
png_set_strip_16(png_ptr);
BitDepth := 8;
end;
end;
{ Make sure you have RGB (not grayscale) image, with 8 bits per color.
Assumes we already have stripped palette, so it's "true" color per pixel.
Alpha channel is never added/stripped by this, although it will
be converted to 8 bits too if exists. }
procedure png_transform_rgb_to_rgb8bit(png_ptr: png_structp;
var ColorType, BitDepth: LongWord);
begin
{ grayscale -> 8bit rgb }
if (ColorType and PNG_COLOR_MASK_COLOR) = 0 then
begin
if BitDepth < 8 then
begin
{$ifdef CASTLE_PNG_STATIC}
png_set_expand_gray_1_2_4_to_8(png_ptr);
{$else}
if Assigned(png_set_expand_gray_1_2_4_to_8) then
png_set_expand_gray_1_2_4_to_8(png_ptr) else
raise EPngTransformError.Create('Your png library doesn''t have png_set_expand_gray_1_2_4_to_8, needed to handle this image');
{$endif}
BitDepth := 8;
end;
png_set_gray_to_rgb(png_ptr);
{gray color means ColorType = PNG_COLOR_TYPE_GRAY or GRAY_ALPHA
= 0 or MASK_ALPHA
and that's why here we can simply combine it bitwise with MASK_COOR }
ColorType := ColorType or PNG_COLOR_MASK_COLOR;
end;
{now he have rgb 8/16 bitDepth + maybe alpha, maybe unapplied tRNS}
{rgb 16 bitdepth -> rgb 8 bitdepth}
if BitDepth = 16 then
begin
png_set_strip_16(png_ptr);
BitDepth := 8;
end;
end;
procedure png_transform_remove_alpha(png_ptr: png_structp;
info_ptr: png_infop;
var ColorType, BitDepth: LongWord);
var
bKGD_col_ptr: png_color_16p;
{my_background_col: png_color_16;}
begin
{ handle alpha and tRNS by combining image with color in bKGD header part
(we do it just to get rid of alpha channel; in case of PngGraphic bedziemy
aplikowac pozniej filler jako czwarty bajt i bedziemy ten czwarty bajt
ignorowac ale generalnie tak czy siak nalezy skombinowac alpha channel
z obrazkiem zeby obrazek wygladal tak jakby sie tego mogl spodziewac
autor obrazka.) }
if (ColorType and PNG_COLOR_MASK_ALPHA) <> 0 then
begin
{ combinig with background requires a few parameters.
We set need_expand (4th parameter) to 1 when we take color from file because
in file it's written in file's original format and so it must be expanded
to the currently set format (8 bit rgb). However, we are supplying
my_background_col in 8bit rgb format already so there we set need_expand to 0.
We set background_gamma (5th parameter) always as 1.0 - bacause that's
considered the "default" and we want do just the default thing
(we want to do what author of the image expected). }
if png_get_bKGD(png_ptr, info_ptr, @bKGD_col_ptr) <> 0 then
begin { combine it with supplied bKGD color }
png_set_background(png_ptr, bKGD_col_ptr, PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
end else
begin
{ What should we do now ?
We can apply image on an arbitrary background color
(but which one ?) or we can just strip alpha channel.
Some interesting case from testing:
- png/bufferfs.png: requires stripping, only then looks good.
Possibly it's just a bad image ? Opening in GIMP, it shows
only as a text (butterflies not visible), everything else
is completely transparent. That's why
- doing png_set_background with my_background_col = white
makes this image just a text on clear white background and
- doing png_set_background with my_background_col = black
makes this image just a text on clear black background
If you want to see butterflies there, you cannot use
png_set_background, you must just strip alpha channel.
- png/moose/customize-m.png (online, similar version on
http://lofotenmoose.info/css/destroy/buttons/xl.png):
This is an interesting hack... The intended result is the
grayscale image of Michelle Pfeiffer (visible on webpage when composed
against white bg: http://lofotenmoose.info/css/destroy/buttons/).
The image file has an alpha channel, that contains the grayscale
*negative* of the image, and pure black color in normal RGB channels.
The effect: when applied against white background, the image looks
good (black alpha channel means to take background, which is white,
and white alpha channel means to take image, which is black...).
In some other circumstances, it may look unsensible, e.g. composing
the image against black background, or simply stripping the alpha
channel, leaves you with pure black image...
IOW, to convert this image to RGB, I have to use the alpha channel and
combine it with white background to make the result look good.
So when loading to TRGBImage, I should do png_set_background like this:
with my_background_col do
begin
// my_background_col := white color
red := $FF; green := $FF; blue := $FF;
end;
png_set_background(png_ptr, @my_background_col, PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
But this is non-standard, by default I simply strip alpha
when converting RGBA image to RGB memory, so I don't do it.
Image doesn't contain bKGD chunk, so I cannot arbitrarily choose
to compose it against white background. So I'll strip alpha,
thereby destroying the image (making it black).
This image can be viewed correctly when loaded to (default for this
PNG color type) TRGBAlphaImage, and presented against white background.
So my reading code is correct, the image can be rendered correctly.
}
{ Version with stripping }
png_set_strip_alpha(png_ptr);
end;
ColorType := ColorType and LongWord(not PNG_COLOR_MASK_ALPHA);
end;
end;
{ Removes palette from the image, making the image RGB (possibly with alpha). }
procedure png_transform_palette_to_rgb(png_ptr: png_structp;
info_ptr: png_infop;
var ColorType, BitDepth: LongWord);
begin
{ palette -> rgb, maybe with alpha }
if (ColorType and PNG_COLOR_MASK_PALETTE) <> 0 then
begin
png_set_palette_to_rgb(png_ptr);
{ we converted palette to rgb; actually it may be RGB or RGBA;
paletted images can contain alpha channel only using tRNS chunk
so here we can check whether we got RGB or RGBA by checking
whether there exists tRNS chunk;
Ufff; this was a bug corrected after a long day : 21.12.2002}
if png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) <> 0 then
ColorType := PNG_COLOR_TYPE_RGB_ALPHA else
ColorType := PNG_COLOR_TYPE_RGB;
{ when expanding palette we always get 8 bit depth because pallete entries
are always in 8bit RGB }
BitDepth := 8;
end;
end;
procedure png_transform_to_g1byte(png_ptr: png_structp; info_ptr: png_infop);
var
ColorType, BitDepth: LongWord;
begin
BitDepth := png_get_bit_depth(png_ptr, info_ptr);
ColorType := png_get_color_type(png_ptr, info_ptr);
png_transform_palette_to_rgb(png_ptr, info_ptr, ColorType, BitDepth);
png_transform_rgb_to_grayscale8bit(png_ptr, ColorType, BitDepth);
png_transform_remove_alpha(png_ptr, info_ptr, ColorType, BitDepth);
{ Test ColorType and BitDepth are as expected. }
Assert((ColorType = PNG_COLOR_TYPE_GRAY) and (BitDepth = 8),
'png_transform_to_g1byte failed to apply good png transformations');
end;
procedure png_transform_to_ga2byte(png_ptr: png_structp; info_ptr: png_infop);
var
ColorType, BitDepth: LongWord;
TRNSHandled: boolean;
begin
BitDepth := png_get_bit_depth(png_ptr, info_ptr);
ColorType := png_get_color_type(png_ptr, info_ptr);
{ At the beginning: tRNS chunk is already handled if it doesn't
exist, right ? }
TRNSHandled := png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) = 0;
{ palette -> 8bit rgb }
if (ColorType and PNG_COLOR_MASK_PALETTE) <> 0 then
begin
png_set_palette_to_rgb(png_ptr);
{ paletted images can contain alpha channel only using tRNS chunk
so here we can check whether we got RGB or RGBA by checking
whether there exists tRNS chunk;
Ufff; this was a bug corrected after a long day : 21.12.2002 }
if not TRNSHandled then
begin
ColorType := PNG_COLOR_TYPE_RGB_ALPHA;
TRNSHandled := true;
end else
ColorType := PNG_COLOR_TYPE_RGB;
{ When expanding palette we always get 8 bit depth because
pallete entries are always in 8bit RGB }
BitDepth := 8;
end;
png_transform_rgb_to_grayscale8bit(png_ptr, ColorType, BitDepth);
if (not TRNSHandled) and
(ColorType and PNG_COLOR_MASK_ALPHA = 0) then
begin
png_set_tRNS_to_alpha(png_ptr);
TRNSHandled := true;
end;
{ In case of some invalid image (Like an image with alpha channel
and also tRNS chunk ? Does libPNG allow such things ?)
probably (not confirmed) I may be left here with TRNSHandled = false.
Ignore this. }
if (ColorType and PNG_COLOR_MASK_ALPHA = 0) and
(BitDepth = 8) then
begin
png_set_filler(png_ptr, High(byte), PNG_FILLER_AFTER);
ColorType := ColorType or PNG_COLOR_MASK_ALPHA;
end;
{ Test ColorType and BitDepth are as expected. }
Assert((ColorType = PNG_COLOR_TYPE_GRAY_ALPHA) and (BitDepth = 8),
'png_transform_to_ga2byte failed to apply good png transformations');
end;
procedure png_transform_to_rgb3byte(png_ptr: png_structp; info_ptr: png_infop);
var
ColorType, BitDepth: LongWord;
begin
BitDepth := png_get_bit_depth(png_ptr, info_ptr);
ColorType := png_get_color_type(png_ptr, info_ptr);
png_transform_palette_to_rgb(png_ptr, info_ptr, ColorType, BitDepth);
png_transform_rgb_to_rgb8bit(png_ptr, ColorType, BitDepth);
png_transform_remove_alpha(png_ptr, info_ptr, ColorType, BitDepth);
Assert((ColorType = PNG_COLOR_TYPE_RGB) and (BitDepth = 8),
'png_transform_to_rgb3byte failed to apply good png transformations');
end;
procedure png_transform_to_rgba4byte(png_ptr: png_structp; info_ptr: png_infop);
var
ColorType, BitDepth: LongWord;
TRNSHandled: boolean;
begin
BitDepth := png_get_bit_depth(png_ptr, info_ptr);
ColorType := png_get_color_type(png_ptr, info_ptr);
{ At the beginning: tRNS chunk is already handled if it doesn't
exist, right ? }
TRNSHandled := png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) = 0;
{ palette -> 8bit rgb }
if (ColorType and PNG_COLOR_MASK_PALETTE) <> 0 then
begin
png_set_palette_to_rgb(png_ptr);
{ paletted images can contain alpha channel only using tRNS chunk
so here we can check whether we got RGB or RGBA by checking
whether there exists tRNS chunk;
Ufff; this was a bug corrected after a long day : 21.12.2002 }
if not TRNSHandled then
begin
ColorType := PNG_COLOR_TYPE_RGB_ALPHA;
TRNSHandled := true;
end else
ColorType := PNG_COLOR_TYPE_RGB;
{ When expanding palette we always get 8 bit depth because
pallete entries are always in 8bit RGB }
BitDepth := 8;
end;
png_transform_rgb_to_rgb8bit(png_ptr, ColorType, BitDepth);
if (not TRNSHandled) and
(ColorType and PNG_COLOR_MASK_ALPHA = 0) then
begin
png_set_tRNS_to_alpha(png_ptr);
TRNSHandled := true;
end;
{ In case of some invalid image (Like an image with alpha channel
and also tRNS chunk ? Does libPNG allow such things ?)
probably (not confirmed) I may be left here with TRNSHandled = false.
Ignore this. }
if (ColorType and PNG_COLOR_MASK_ALPHA = 0) and
(BitDepth = 8) then
begin
png_set_filler(png_ptr, High(byte), PNG_FILLER_AFTER);
ColorType := ColorType or PNG_COLOR_MASK_ALPHA;
end;
Assert((ColorType = PNG_COLOR_TYPE_RGB_ALPHA) and (BitDepth = 8),
'png_transform_to_rgba4byte failed to apply good png transformations');
end;
function png_is_grayscale(png_ptr: png_structp; info_ptr: png_infop): boolean;
var
ColorType: LongWord;
begin
ColorType := png_get_color_type(png_ptr, info_ptr);
Result := (ColorType and PNG_COLOR_MASK_COLOR) = 0;
end;
function png_is_alpha(png_ptr: png_structp; info_ptr: png_infop): boolean;
var
ColorType: LongWord;
begin
ColorType := png_get_color_type(png_ptr, info_ptr);
result := ( (ColorType and PNG_COLOR_MASK_ALPHA) <> 0) or
(png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) <> 0);
end;
{ *ToStr -------------------------------------------------------------- }
function PngColorTypeToStr(PngColorType: longint): string;
begin
case PngColorType of
PNG_COLOR_TYPE_GRAY :result := 'Gray';
PNG_COLOR_TYPE_GRAY_ALPHA :result := 'Gray with alpha';
PNG_COLOR_TYPE_PALETTE :result := 'Paletted';
PNG_COLOR_TYPE_RGB :result := 'RGB';
PNG_COLOR_TYPE_RGB_ALPHA :result := 'RGB with alpha';
else result := 'unknown';
end;
end;
function PngInterlaceTypeToStr(PngInterlaceType: longint): string;
begin
case PngInterlaceType of
PNG_INTERLACE_NONE :result := 'None';
PNG_INTERLACE_ADAM7 :result := 'Adam7';
else result := 'unknown';
end;
end;
function PngTextCompressionToStr(PngTextCompression: longint): string;
begin
case PngTextCompression of
PNG_TEXT_COMPRESSION_NONE: result := 'None';
PNG_TEXT_COMPRESSION_zTXT: result := 'zTXT';
else result := 'unknown';
end;
end;
{ initialize ----------------------------------------------------------------- }
procedure InitializePNG;
var
ver: png_uint_32;
begin
if CastlePngInited then
begin
ver := png_access_version_number();
fSO_VER_RELEASE := ver mod 100;
fSO_VER_MINOR := (ver mod 10000) div 100;
fSO_VER_MAJOR := ver div 10000;
fSO_VER_STRING := Format('%d.%d.%d',
[fSO_VER_MAJOR, fSO_VER_MINOR, fSO_VER_RELEASE]);
end;
end;
{ error / warning handlers --------------------------------------------------- }
{ function our_png_error_fn and our_png_warning_fn are used as libpng
error and warning handlers in both SavePNG and LoadPNG.
They could use png_get_error_ptr(png_ptr) for some pointer data,
but for now it is not used. }
procedure our_png_error_fn(png_ptr : png_structp; s : png_const_charp);
{$ifndef LIBPNG_CDECL} stdcall {$else} cdecl {$endif};
begin
raise EInvalidPng.Create('PNG error ' + S);
end;
procedure our_png_warning_fn(png_ptr : png_structp; s : png_const_charp);
{$ifndef LIBPNG_CDECL} stdcall {$else} cdecl {$endif};
begin
OnWarning(wtMinor, 'PNG', S);
end;
{ read / write functions -----------------------------------------------------
Both treat png_get_io_ptr(png_ptr) as TStream
and read/write from/to that stream. Exceptions are raised if operation
is not posiible (for example, stream end --- this will happen if PNG file
is truncated; since we never give back to PNG the number of bytes read,
it is obvious that we have to detect unexpected stream end ourselves). }
{ We dereference here memory allocated with PNG, so pointer checks
will make false errors. }
{$checkpointer off}
procedure our_png_read_fn(png_ptr: png_structp; data: png_bytep; len: png_size_t);
{$ifndef LIBPNG_CDECL} stdcall {$else} cdecl {$endif};
begin
TStream(png_get_io_ptr(png_ptr)).ReadBuffer(data^, len);
end;
procedure our_png_write_fn(png_ptr: png_structp; data: png_bytep; len: png_size_t);
{$ifndef LIBPNG_CDECL} stdcall {$else} cdecl {$endif};
begin
TStream(png_get_io_ptr(png_ptr)).WriteBuffer(data^, len);
end;
procedure our_png_flush_fn(png_ptr: png_structp);
{$ifndef LIBPNG_CDECL} stdcall {$else} cdecl {$endif};
begin
{ we would like to do here something like TStream(png_get_io_ptr(png_ptr)).Flush;
but there is no "flush" method in TStream. }
end;
{$ifdef KAMBI_CHECK_POINTER}
{ Turn checkpointer back on }
{$checkpointer on}
{$endif}
{ LoadPNG ------------------------------------------------------------------- }
function LoadPNG(Stream: TStream;
const AllowedImageClasses: array of TEncodedImageClass): TEncodedImage;
function ClassAllowed(ImageClass: TEncodedImageClass): boolean;
begin
Result := CastleImages.ClassAllowed(ImageClass, AllowedImageClasses);
end;
var
PNGResult: TCastleImage absolute Result;
AllocateWidth, AllocateHeight: Cardinal;
png_ptr: png_structp;
info_ptr: png_infop;
{ Allocates Result to given class and applies libpng transforms to
make resulting data matching given Result class.
Does this (and returns @true) only if ImageClass is allowed. }
function TransformPng(ImageClass: TCastleImageClass): boolean;
begin
Result := ClassAllowed(ImageClass);
if Result then
begin
PNGResult := ImageClass.Create(AllocateWidth, AllocateHeight);
if ImageClass = TGrayscaleImage then
png_transform_to_g1byte(png_ptr, info_ptr) else
if ImageClass = TGrayscaleAlphaImage then
png_transform_to_ga2byte(png_ptr, info_ptr) else
if ImageClass = TRGBImage then
png_transform_to_rgb3byte(png_ptr, info_ptr) else
if ImageClass = TRGBAlphaImage then
png_transform_to_rgba4byte(png_ptr, info_ptr);
end;
end;
var
row_pointers: TFPList;
i: Cardinal;
IsAlpha, IsGrayscale: boolean;
begin
png_ptr := nil;
try
png_ptr := png_create_read_struct(SO_PNG_LIBPNG_VER_STRING,
nil { we could pass here data to warning/error handlers },
{$ifdef FPC_OBJFPC} @ {$endif} our_png_error_fn,
{$ifdef FPC_OBJFPC} @ {$endif} our_png_warning_fn);
Check( png_ptr <> nil, 'png_create_read_struct failed');
info_ptr := png_create_info_struct(png_ptr);
Check( info_ptr <> nil, 'png_create_info_struct failed');
png_set_read_fn(png_ptr, Stream,
{$ifdef FPC_OBJFPC} @ {$endif} our_png_read_fn);
{ TODO -- uzyj tu png_set_read_status_fn aby miec progressa }
png_read_info(png_ptr, info_ptr);
AllocateWidth := png_get_image_width(png_ptr, info_ptr);
AllocateHeight := png_get_image_height(png_ptr, info_ptr);
result := nil; { zeby mozna bylo ponizej zapisac wygodnie try..except }
try
IsAlpha := png_is_alpha(png_ptr, info_ptr);
IsGrayscale := png_is_grayscale(png_ptr, info_ptr);
{ First, check to what TEncodedImage descendant our image file most matches.
If it's not on the list of allowed classes, try to transform
it to the most matching class. When doing this, we try to perform
the most lossless convertion --- this means that we prefer to
add image channel or expand grayscale->RGB than the other way around.
For example, if image file is grayscale+alpha, we prefer to make
it RGB+alpha (expand grayscale to RGB) than to grayscale (strip alpha).
}
if IsGrayScale then
begin
if IsAlpha then
begin
if not TransformPng(TGrayscaleAlphaImage) then
if not TransformPng(TRGBAlphaImage) then
if not TransformPng(TGrayscaleImage) then
if not TransformPng(TRGBImage) then
raise EUnableToLoadImage.CreateFmt('Cannot load PNG image to %s', [LoadEncodedImageParams(AllowedImageClasses)]);
end else
begin
if not TransformPng(TGrayscaleImage) then
if not TransformPng(TGrayscaleAlphaImage) then
if not TransformPng(TRGBImage) then
if not TransformPng(TRGBAlphaImage) then
raise EUnableToLoadImage.CreateFmt('Cannot load PNG image to %s', [LoadEncodedImageParams(AllowedImageClasses)]);
end;
end else
begin
if IsAlpha then
begin
if not TransformPng(TRGBAlphaImage) then
if not TransformPng(TRGBImage) then
if not TransformPng(TGrayscaleAlphaImage) then
if not TransformPng(TGrayscaleImage) then
raise EUnableToLoadImage.CreateFmt('Cannot load PNG image to %s', [LoadEncodedImageParams(AllowedImageClasses)]);
end else
begin
if not TransformPng(TRGBImage) then
if not TransformPng(TRGBAlphaImage) then
if not TransformPng(TGrayscaleImage) then
if not TransformPng(TGrayscaleAlphaImage) then
raise EUnableToLoadImage.CreateFmt('Cannot load PNG image to %s', [LoadEncodedImageParams(AllowedImageClasses)]);
end;
end;
png_read_update_info(png_ptr, info_ptr);
Assert(png_get_rowbytes(png_ptr, info_ptr) = PngResult.PixelSize * PngResult.Width,
SysUtils.Format('internal error : applied wrong png transformations, width '+
'%d with %d bytes per pixel gave row byte length %d instead of %d',
[ PngResult.Width, PngResult.PixelSize,
png_get_rowbytes(png_ptr, info_ptr),
PngResult.PixelSize * PngResult.Width]));
{ now ready row_pointers as ScanLines }
row_pointers := TFPList.Create;
try
row_pointers.Count := result.Height;
for i := 0 to result.Height-1 do
row_pointers[i] := PngResult.RowPtr(PngResult.Height -i -1);
{ and go : uncompress image to result.data, therefore loading png image }
png_read_image(png_ptr, PPPng_Byte(row_pointers.List));
finally
row_pointers.Free;
end;
png_read_end(png_ptr, nil);
except Result.Free; raise end;
finally
if png_ptr <> nil then
begin
if info_ptr = nil then
png_destroy_read_struct(@png_ptr, nil, nil) else
png_destroy_read_struct(@png_ptr, @info_ptr, nil);
end;
end;
end;
{ SavePNG --------------------------------------------------------------------- }
procedure SavePNG(Img: TEncodedImage; Stream: TStream; Interlaced: boolean);
var png_ptr: png_structp;
info_ptr: png_infop;
InterlaceType: LongWord;
row_pointers: TFPList;
i: Cardinal;
ColorType: LongInt;
begin
if not (Img is TCastleImage) then
raise EImageSaveError.CreateFmt('Saving to PNG image class %s not possible', [Img.ClassName]);
png_ptr := nil;
try
png_ptr := png_create_write_struct(SO_PNG_LIBPNG_VER_STRING,
nil { we could pass here data to warning/error handlers },
{$ifdef FPC_OBJFPC} @ {$endif} our_png_error_fn,
{$ifdef FPC_OBJFPC} @ {$endif} our_png_warning_fn);
Check( png_ptr <> nil, 'png_create_write_struct failed');
info_ptr := png_create_info_struct(png_ptr);
Check( info_ptr <> nil, 'png_create_info_struct failed');
png_set_write_fn(png_ptr, Stream,
{$ifdef FPC_OBJFPC} @ {$endif} our_png_write_fn,
{$ifdef FPC_OBJFPC} @ {$endif} our_png_flush_fn);
{ TODO -- uzyj tu png_set_write_status_fn aby miec progressa }
if interlaced then
interlaceType := PNG_INTERLACE_ADAM7 else
interlaceType := PNG_INTERLACE_NONE;
if Img is TRGBImage then
ColorType := PNG_COLOR_TYPE_RGB else
if Img is TRGBAlphaImage then
ColorType := PNG_COLOR_TYPE_RGBA else
if Img is TGrayscaleImage then
ColorType := PNG_COLOR_TYPE_GRAY else
if Img is TGrayscaleAlphaImage then
ColorType := PNG_COLOR_TYPE_GRAY_ALPHA else
raise EImageSaveError.CreateFmt('Saving to PNG image class %s not possible', [Img.ClassName]);
png_set_IHDR(png_ptr, info_ptr, Img.Width, Img.Height, 8, ColorType,
interlaceType, PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
png_write_info(png_ptr, info_ptr);
{ zapisalismy header i jestesmy bardzo happy bo nie musimy teraz robic tego
co bylo nasza bieda w LoadPNG : nakladanie odpowiednich transformacji.
Zawsze zapisujemy obrazek w takim formacie w jakim go przechowujemy w
TCastleImage - a wiec bitdepth = 8. }
{ wiec ready row_pointers and go }
row_pointers := TFPList.Create;
try
row_pointers.Count := Img.Height;
for i := 0 to Img.Height-1 do
row_pointers[i] := TCastleImage(Img).RowPtr(Img.Height-i-1);
png_write_image(png_ptr, PPPng_Byte(row_pointers.List));
finally
row_pointers.Free;
end;
png_write_end(png_ptr, nil);
finally
if png_ptr <> nil then
begin
if info_ptr <> nil then
png_destroy_write_struct(@png_ptr, @info_ptr) else
png_destroy_write_struct(@png_ptr, nil);
end;
end;
end;
procedure SavePNG(Img: TEncodedImage; Stream: TStream); { interlaced = false }
begin
SavePNG(Img, Stream, false)
end;
|