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 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707
|
/*****************************************************************************
* png_pov.cpp
*
* This module contains the code to read and write the PNG output file
*
* from Persistence of Vision(tm) Ray Tracer version 3.6.
* Copyright 1991-2003 Persistence of Vision Team
* Copyright 2003-2004 Persistence of Vision Raytracer Pty. Ltd.
*---------------------------------------------------------------------------
* NOTICE: This source code file is provided so that users may experiment
* with enhancements to POV-Ray and to port the software to platforms other
* than those supported by the POV-Ray developers. There are strict rules
* regarding how you are permitted to use this file. These rules are contained
* in the distribution and derivative versions licenses which should have been
* provided with this file.
*
* These licences may be found online, linked from the end-user license
* agreement that is located at http://www.povray.org/povlegal.html
*---------------------------------------------------------------------------
* This program is based on the popular DKB raytracer version 2.12.
* DKBTrace was originally written by David K. Buck.
* DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
*---------------------------------------------------------------------------
* $File: //depot/povray/3.6-release/source/png_pov.cpp $
* $Revision: #3 $
* $Change: 3032 $
* $DateTime: 2004/08/02 18:43:41 $
* $Author: chrisc $
* $Log$
*****************************************************************************/
/*****************************************************************************
* This code requires the use of libpng, Group 42's PNG reference library.
* libpng is Copyright (c) 1995 Guy Eric Schalnat, Group 42, Inc.
*
* This code also requires the use of Zlib,
* Zlib is Copyright (C) 1995 Jean-loup Gailly and Mark Adler
*
* The latest version of these libraries are available at ftp.uu.net as
*
* /graphics/png/libpngXX.tar.gz.
* /archiver/zlib/zlib-XX.tar.gz.
*
* where XX is the latest version of the library.
*
*****************************************************************************/
#include "frame.h"
#include "povray.h"
#include "optout.h"
#include "png.h"
#include "png_pov.h"
#include "pov_util.h"
#include "povmsend.h"
#include "colour.h"
USING_POV_NAMESPACE
/*****************************************************************************
* Local preprocessor defines
******************************************************************************/
/* Number of scanlines between output flushes, and hence the maximum number of
* lines lost for an interrupted render. Note that making it much smaller
* than about 10 for a 640x480 image will noticably degrade compression.
* If a very small buffer is specified, we don't want to flush more than once
* every 10 lines or so (assuming a 2:1 compression ratio).
*/
const int FLUSH_DIST = 16; // Set to 16 and removed complicated math [trf]
const int NTEXT = 15; // Maximum number of tEXt comment blocks
const int MAXTEXT = 1024; // Maximum length of a tEXt message
/*****************************************************************************
* Local typedefs
******************************************************************************/
/*****************************************************************************
* Local variables
******************************************************************************/
static png_struct *png_ptr = NULL; // GLOBAL VARIABLE
static png_info *info_ptr = NULL; // GLOBAL VARIABLE
static png_struct *o_png_ptr = NULL; // GLOBAL VARIABLE
static png_byte *row_ptr = NULL; // GLOBAL VARIABLE
static int png_stride; // GLOBAL VARIABLE
static char tmp_fname[FILE_NAME_LENGTH]; // GLOBAL VARIABLE
static IStream *tmp_fp = NULL; // GLOBAL VARIABLE
int PNG_Image::line_number = 0; // GLOBAL VARIABLE
IStream *PNG_Image::in_file = NULL; // GLOBAL VARIABLE
OStream *PNG_Image::out_file = NULL; // GLOBAL VARIABLE
/*****************************************************************************
* Static functions
******************************************************************************/
extern "C"
{
// These are replacement error and warning functions for the libpng code
void png_pov_err(png_structp, png_const_charp);
void png_pov_warn(png_structp, png_const_charp);
void png_pov_read_data(png_structp, png_bytep, png_size_t);
void png_pov_write_data(png_structp, png_bytep, png_size_t);
void png_pov_flush_data(png_structp);
// This is an internal function for libpng
void png_write_finish_row(png_structp);
/*****************************************************************************
*
* FUNCTION : png_pov_warn
*
* ARGUMENTS : png_struct *png_ptr; char *msg;
*
* MODIFIED ARGS :
*
* RETURN VALUE :
*
* AUTHOR : Andreas Dilger
*
* DESCRIPTION
*
* Prints an warning message using the POV I/O functions. This uses the
* png io_ptr to determine whether error messages should be printed or
* not.
*
* CHANGES
*
******************************************************************************/
void png_pov_warn(png_structp png_ptr, png_const_charp msg)
{
if (png_get_error_ptr(png_ptr))
Warning(0,"libpng: %s",msg);
}
/*****************************************************************************
*
* FUNCTION : png_pov_err
*
* ARGUMENTS : png_struct *png_ptr; char *msg;
*
* MODIFIED ARGS :
*
* RETURN VALUE :
*
* AUTHOR : Andreas Dilger
*
* DESCRIPTION
*
* If the png io_ptr is true, this prints an error message using the POV
* I/O function. It will return to the location of the last setjmp call
* for this stream in any case.
*
* CHANGES
*
******************************************************************************/
void png_pov_err(png_structp png_ptr, png_const_charp msg)
{
if (png_get_error_ptr(png_ptr))
PossibleError("libpng: %s",msg);
longjmp(png_ptr->jmpbuf,1);
}
/*****************************************************************************
*
* FUNCTION : png_pov_read_data
*
* ARGUMENTS : png_structp png_ptr; png_bytep data; png_uint_32 length;
*
* MODIFIED ARGS :
*
* RETURN VALUE :
*
* AUTHOR : Thorsten Froehlich
*
* DESCRIPTION
*
* Replacement read function.
*
* CHANGES
*
******************************************************************************/
void png_pov_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
{
IStream *file = (IStream *)png_get_io_ptr(png_ptr);
if (!file->read ((char *)data, length))
PossibleError("Cannot read PNG data.");
}
/*****************************************************************************
*
* FUNCTION : png_pov_write_data
*
* ARGUMENTS : png_structp png_ptr; png_bytep data; png_uint_32 length;
*
* MODIFIED ARGS :
*
* RETURN VALUE :
*
* AUTHOR : Thorsten Froehlich
*
* DESCRIPTION
*
* Replacement write function.
*
* CHANGES
*
******************************************************************************/
void png_pov_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
{
OStream *file = (OStream *)png_get_io_ptr(png_ptr);
if (!file->write ((char *)data, length))
PossibleError("Cannot write PNG data.");
}
/*****************************************************************************
*
* FUNCTION : png_pov_flush_data
*
* ARGUMENTS : png_structp png_ptr;
*
* MODIFIED ARGS :
*
* RETURN VALUE :
*
* AUTHOR : Thorsten Froehlich
*
* DESCRIPTION
*
* Replacement flush function.
*
* CHANGES
*
******************************************************************************/
void png_pov_flush_data(png_structp png_ptr)
{
OStream *file = (OStream *)png_get_io_ptr(png_ptr);
file->flush();
}
}
BEGIN_POV_NAMESPACE
/*****************************************************************************
*
* FUNCTION : Open_Png_File
*
* ARGUMENTS : FILE_HANDLE *handle; char *name; int *width; int *height;
* int buffer_size; int mode;
*
* MODIFIED ARGS : handle, width, height
*
* RETURN VALUE : 1 or 0 for success or failure
*
* AUTHOR : Andreas Dilger
*
* DESCRIPTION
*
* Open a PNG file and allocate the needed PNG structure buffers
*
* CHANGES
*
* Updated for POV-Ray 3.X - [TIW]
* Updated to handle resuming interrupted traces, Sept 1995 - [AED]
* Updated to output grayscale heightfield if requested - [AED]
* Updated to allow grayscale and alpha together, Oct 1995 - [AED]
* Updated to write gamma differently based on file type, Nov 1995 - [AED]
* Changed temp file name from TEMP_FILE_BASE to scene name, Feb 1996 - [AED]
* Changed temp file from scene name to path + scene name, Jun 1996 - [AED]
*
******************************************************************************/
PNG_Image::PNG_Image(char *name, int w, int h, int m, int l)
{
mode = m;
filename = name;
initial_line_number = line_number = l;
width = w ;
height = h ;
switch (mode)
{
case READ_MODE:
in_file = NULL;
out_file = NULL;
// We can't resume from stdout.
if (opts.Options & TO_STDOUT)
return;
/* Initialize PNG output routines using temporary file name. We
* need to use the path, or the rename will fail if the temp file
* is not on the same drive as the output file.
*/
// [NC] fix for potential buffer overrun.
{
long n1 = strlen(opts.Output_Path);
long n2 = strlen(opts.Scene_Name);
// "5" is strlen(".tpn") + '\0'
if (n1 + n2 + 5 < FILE_NAME_LENGTH)
sprintf(tmp_fname, "%s%s.tpn", opts.Output_Path, opts.Scene_Name);
else // sadly we can't use the path
sprintf(tmp_fname, "%.*s.tpn", FILE_NAME_LENGTH-5, opts.Scene_Name);
}
/* Move the old output file to a temporary file, so it can be
* read in and simultaneously written out to the new output file.
* Note that this can potentially be destructive, but it is
* impossible to change the output stream in mid-write. We have
* to check if a temp file already exists, in case the transfer
* has been previously aborted.
*/
if ((tmp_fp = New_Checked_IStream(tmp_fname, POV_File_Image_PNG)) == NULL)
{
// The temp file doesn't exist. Try the original file.
if ((tmp_fp = New_Checked_IStream(name, POV_File_Image_PNG)) == NULL)
{
return; // Neither file exists - start from scratch.
}
else // The original file exists, but the temp file doesn't.
{
delete tmp_fp;
if (RENAME_FILE(name,tmp_fname) == RENAME_FILE_ERR)
{
Error("Cannot make temporary PNG file for continuing trace.");
}
// Open the original file (now with a new name) for reading
if ((tmp_fp = New_Checked_IStream(tmp_fname, POV_File_Image_PNG)) == NULL)
{
RENAME_FILE(tmp_fname,name); // Try to rename back - not crucial
Error("Cannot open temporary PNG file for continuing trace.");
}
}
}
else if ((in_file = New_Checked_IStream(name, POV_File_Image_PNG)) != NULL)
{
/* The temp file already exists. If we can open the original file
* as well, then there is something wrong, and we can't automatically
* decide which file to delete.
*/
delete tmp_fp;
delete in_file;
Error ("Both original and temporary PNG files exist after an interrupted trace.\n"
"Please delete either %s or %s (preferrably the smaller).",name,tmp_fname);
}
/* Try to open the new output file for writing. If we can't, try
* to move the old one back so that users don't fret if it's missing.
* PNG will be able to continue without loss of data either way.
*/
if ((out_file = New_Checked_OStream(name, POV_File_Image_PNG, false)) == NULL)
{
delete tmp_fp;
RENAME_FILE(tmp_fname,name);
return;
}
// The original input file
if ((o_png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING,
(png_voidp)false, png_pov_err, png_pov_warn)) == NULL ||
(info_ptr = png_create_info_struct(o_png_ptr)) == NULL)
{
Error("Cannot allocate PNG data structures");
}
if (setjmp(o_png_ptr->jmpbuf))
{
// If we get here, we had a problem reading the file
png_destroy_read_struct(&o_png_ptr, &info_ptr, (png_infopp)NULL);
delete out_file;
out_file = NULL;
delete tmp_fp;
tmp_fp = NULL;
return;
}
// Set up the compression structure
png_set_read_fn(o_png_ptr, tmp_fp, png_pov_read_data);
// Read in header info from the file
png_read_info(o_png_ptr, info_ptr);
if (info_ptr->width != w || info_ptr->height != h)
{
png_destroy_read_struct(&o_png_ptr, &info_ptr, (png_infopp)NULL);
delete tmp_fp;
tmp_fp = NULL;
delete out_file;
out_file = NULL;
// Try to get the original file back
if (DELETE_FILE(name) != DELETE_FILE_ERR)
RENAME_FILE(tmp_fname,name);
Error("PNG file dimensions do not match render resolution.");
}
if (info_ptr->color_type & ~(PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_ALPHA))
{
return;
}
Send_Progress("Resuming interrupted trace", PROGRESS_RESUMING_INTERRUPTED_TRACE);
// The new output file. Thank god for re-entrant libpng/libz code!
if ((png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING,
(png_voidp)true, png_pov_err, png_pov_warn)) == NULL)
{
Error("Cannot allocate PNG data structures");
}
if (setjmp(png_ptr->jmpbuf))
{
// If we get here, we had a problem writing the file
png_destroy_read_struct(&o_png_ptr, &info_ptr, (png_infopp)NULL);
png_destroy_write_struct(&png_ptr, (png_infopp)NULL);
delete tmp_fp;
tmp_fp = NULL;
if (DELETE_FILE(name) != DELETE_FILE_ERR)
{
RENAME_FILE(tmp_fname,name); // Try to get the original file back
}
return;
}
// Set up the compression structure
png_set_write_fn(png_ptr, out_file, png_pov_write_data, png_pov_flush_data);
// Fill in the relevant image information from the resumed file
width = info_ptr->width;
height = info_ptr->height;
// Find out if file is a valid format, and if it had Alpha in it
if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
{
opts.Options |= OUTPUT_ALPHA;
}
if ((info_ptr->color_type & PNG_COLOR_MASK_COLOR) == PNG_COLOR_TYPE_GRAY)
{
opts.Options |= HF_GRAY_16;
opts.PaletteOption = GREY; // Force grayscale preview
}
#if defined(PNG_READ_sBIT_SUPPORTED)
if (info_ptr->valid & PNG_INFO_sBIT)
{
if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
{
opts.OutputQuality = info_ptr->sig_bit.red;
}
else
{
opts.OutputQuality = info_ptr->sig_bit.gray;
}
}
#else // !PNG_READ_sBIT_SUPPORTED
if (info_ptr->bit_depth == 8 && opts.OutputQuality > 8 ||
info_ptr->bit_depth == 16 && opts.OutputQuality <= 8)
{
Error("Specified color depth +fn%d not the same as depth %d in %s",
opts.OutputQuality, info_ptr->bit_depth, name);
}
#endif // !PNG_READ_sBIT_SUPPORTED
#if defined(PNG_READ_oFFs_SUPPORTED)
opts.First_Column = info_ptr->x_offset;
opts.First_Line = info_ptr->y_offset;
#endif // PNG_READ_oFFs_SUPPORTED
png_write_info(png_ptr, info_ptr);
png_stride = info_ptr->color_type & PNG_COLOR_MASK_COLOR ? 3 : 1;
if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
png_stride++;
png_stride *= (opts.OutputQuality + 7) / 8;
row_ptr = (png_byte *)POV_MALLOC(w*png_stride,"PNG read row buffer");
break;
case WRITE_MODE:
in_file = NULL;
out_file = NULL;
if (opts.Options & TO_STDOUT)
{
out_file = New_OStream("stdout", POV_File_Image_PNG, false);
}
else if ((out_file = New_Checked_OStream(name, POV_File_Image_PNG, false)) == NULL)
{
return;
}
if ((png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING,
(png_voidp)true, png_pov_err, png_pov_warn)) == NULL ||
(info_ptr = png_create_info_struct(png_ptr)) == NULL)
{
Error("Cannot allocate PNG data structures");
}
if (setjmp(png_ptr->jmpbuf))
{
// If we get here, we had a problem writing the file
png_destroy_write_struct(&png_ptr, &info_ptr);
delete out_file;
out_file = NULL;
return;
}
// Set up the compression structure
// png_set_read_fn(png_ptr, out_file, png_pov_read_data);
png_set_write_fn(png_ptr, out_file, png_pov_write_data, png_pov_flush_data);
// Fill in the relevant image information
info_ptr->width = width = w;
info_ptr->height = height = h;
info_ptr->bit_depth = 8 * ((opts.OutputQuality + 7) / 8);
if (opts.Options & HF_GRAY_16)
{
if ( info_ptr->bit_depth < 16 ) {
info_ptr->bit_depth = 16;
opts.OutputQuality = 16;
}
info_ptr->color_type = PNG_COLOR_TYPE_GRAY;
}
else
{
info_ptr->color_type = PNG_COLOR_TYPE_RGB;
}
if (opts.Options & OUTPUT_ALPHA)
{
info_ptr->color_type |= PNG_COLOR_MASK_ALPHA;
}
#if defined(PNG_WRITE_sBIT_SUPPORTED)
if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
{
info_ptr->sig_bit.red =
info_ptr->sig_bit.green =
info_ptr->sig_bit.blue = opts.OutputQuality;
}
else
{
info_ptr->sig_bit.gray = opts.OutputQuality;
}
if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
{
info_ptr->sig_bit.alpha = opts.OutputQuality;
}
info_ptr->valid |= PNG_INFO_sBIT;
#endif // PNG_WRITE_sBIT_SUPPORTED
#if defined(PNG_WRITE_gAMA_SUPPORTED)
if (!opts.histogram_on)
{
info_ptr->gamma = 1.0/opts.DisplayGamma;
info_ptr->valid |= PNG_INFO_gAMA;
}
else
{
info_ptr->gamma = 1.0;
info_ptr->valid |= PNG_INFO_gAMA;
}
#endif // PNG_WRITE_gAMA_SUPPORTED
#if defined(PNG_WRITE_oFFs_SUPPORTED)
if (opts.First_Column != 0 || opts.First_Line != 0)
{
info_ptr->x_offset = opts.First_Column;
info_ptr->y_offset = opts.First_Line;
info_ptr->offset_unit_type = PNG_OFFSET_PIXEL;
info_ptr->valid |= PNG_INFO_oFFs;
}
#endif // PNG_WRITE_oFFs_SUPPORTED
if (opts.histogram_on)
{
/* If we are writing a histogram file, we could potentially output
* a pCAL chunk with the max histogram value, to allow recovery of
* the original timing data. However, pCAL is not yet official at
* the time of this writing.
*/
}
png_write_info(png_ptr, info_ptr);
png_stride = info_ptr->color_type & PNG_COLOR_MASK_COLOR ? 3 : 1;
if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
png_stride++;
png_stride *= (opts.OutputQuality + 7) / 8;
row_ptr = (png_byte *)POV_MALLOC(w*png_stride, "PNG write row buffer");
#if defined(PNG_WRITE_FLUSH_SUPPORTED)
/* Set libpng to flush the output buffers every few lines, so that
* in case of a rude crash we don't lose very much data.
*/
png_set_flush(png_ptr, FLUSH_DIST);
#endif // PNG_WRITE_FLUSH_SUPPORTED
break;
case APPEND_MODE:
#if defined(PNG_WRITE_FLUSH_SUPPORTED)
if (setjmp(png_ptr->jmpbuf))
{
// If we get here, we had a problem writing the file
png_destroy_write_struct(&png_ptr, &info_ptr);
delete out_file;
out_file = NULL;
return;
}
/* Write out the data in the PNG/zlib buffers, and set automatic
* flushing for every few scanlines, in case of a rude crash.
*/
png_write_flush(png_ptr);
png_set_flush(png_ptr, FLUSH_DIST);
#else // !PNG_WRITE_FLUSH_SUPPORTED
fflush(file);
#endif // PNG_WRITE_FLUSH_SUPPORTED
if (!(opts.Options & TO_STDOUT))
{
delete out_file;
out_file = New_Checked_OStream(name, POV_File_Image_PNG, true);
if (out_file == NULL)
{
png_destroy_write_struct(&png_ptr, &info_ptr);
return;
}
png_set_write_fn(png_ptr, out_file, png_pov_write_data, png_pov_flush_data);
}
/* Delete the temporary data file. Note that the new output file
* is all ready to go - nothing needs to be done here.
*/
if (tmp_fp != NULL)
{
delete tmp_fp;
tmp_fp = NULL;
if (DELETE_FILE(tmp_fname) == DELETE_FILE_ERR)
{
Warning(0,"Cannot delete temporary PNG file %s.\nPlease delete it.",tmp_fname);
}
}
}
valid = true;
}
/*****************************************************************************
*
* FUNCTION : Close_Png_File
*
* ARGUMENTS : FILE_HANDLE *handle
*
* MODIFIED ARGS : handle
*
* RETURN VALUE : none
*
* AUTHOR : Andreas Dilger
*
* DESCRIPTION
*
* Write any chunks coming after image (eg comments), and free all the
* memory associated with the PNG IO streams. Will output some rendering
* stats and info into tEXt chunks if POV_COMMENTS is #defined, and will
* also record the rendering time if CTIME is #defined.
*
* CHANGES
*
* Updated for POV-Ray 3.X - [TIW]
*
******************************************************************************/
PNG_Image::~PNG_Image()
{
#ifdef POV_COMMENTS
int n, index = - 1;
png_text *text_ptr = NULL;
char allocated[NTEXT]; // Boolean array if text is MALLOCed
char bigtext[MAXTEXT]; // Large temporary string to print into
# ifdef CAMERA
CAMERA *Camera = Frame.Camera;
# endif
#ifdef CTIME
char months[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
#endif
#endif
// Why are we here?
if (mode == WRITE_MODE || mode == APPEND_MODE)
{
// If no line was written to the file
if(initial_line_number == line_number)
{
if(png_ptr != NULL)
png_destroy_write_struct(&png_ptr, &info_ptr);
png_ptr = NULL;
}
if (png_ptr != NULL)
{
if (setjmp(png_ptr->jmpbuf))
{
// If we get here, we had a problem writing the file
png_destroy_write_struct(&png_ptr, &info_ptr);
if (row_ptr != NULL)
{
POV_FREE(row_ptr);
row_ptr = NULL;
}
if (out_file != NULL)
{
delete out_file;
out_file = NULL;
}
Error("Cannot write PNG file.");
}
// have to check png_ptr again as it can be set to NULL by png_destroy_write_struct above.
if (png_ptr->row_number < png_ptr->num_rows)
{
// finished prematurely - trick into thinking done
png_ptr->num_rows = png_ptr->row_number;
png_write_finish_row(png_ptr);
}
#ifdef POV_COMMENTS // temporarily skip comment writing code
if (info_ptr != NULL)
{
#if defined(PNG_WRITE_tIME_SUPPORTED)
png_convert_from_time_t(&info_ptr->mod_time, tstart);
info_ptr->valid = PNG_INFO_tIME;
#endif // PNG_WRITE_tIME_SUPPORTED
#if defined(PNG_WRITE_tEXt_SUPPORTED)
text_ptr = (png_text *)POV_MALLOC(NTEXT*sizeof(png_text), "PNG comment structure");
// Init allocation flags.
for (n = 0; n < NTEXT; n++)
{
allocated[n] = false;
text_ptr[n].compression = - 1;
}
#ifdef TRACER
text_ptr[++index].key = "Author";
text_ptr[index].text = TRACER;
text_ptr[index].text_length = strlen(text_ptr[index].text);
#endif
#ifdef COPYRIGHT
text_ptr[++index].key = "Copyright";
// 0xA9 is the ISO-8859-1 (used in PNG tEXt) copyright character
sprintf(bigtext, "Copyright %c %d %s", 0xA9, info_ptr->mod_time.year,
COPYRIGHT);
text_ptr[index].text_length = strlen(bigtext);
text_ptr[index].text = (char *)POV_MALLOC(text_ptr[index].text_length + 1, "PNG comment");
strcpy(text_ptr[index].text, bigtext);
allocated[index] = true;
if (text_ptr[index].text_length > 200) // Compress if long copyright
text_ptr[index].compression = 0;
#endif
#ifdef CTIME
// Print the image "creation" time in RFC 1123 format
text_ptr[++index].key = "Creation Time";
sprintf(bigtext, "%02d %3s %4d %02d:%02d:%02d GMT",
info_ptr->mod_time.day, months[info_ptr->mod_time.month],
info_ptr->mod_time.year, info_ptr->mod_time.hour,
info_ptr->mod_time.minute, info_ptr->mod_time.second);
text_ptr[index].text_length = strlen(bigtext);
text_ptr[index].text = (char *)POV_MALLOC(text_ptr[index].text_length + 1, "PNG comment");
strcpy(text_ptr[index].text, bigtext);
allocated[index] = true;
#endif
text_ptr[++index].key = "Source";
sprintf(bigtext, "Persistence of Vision(tm) Ray Tracer v%s%s",
POV_RAY_VERSION, COMPILER_VER);
text_ptr[index].text_length = strlen(bigtext);
text_ptr[index].text = (char *)POV_MALLOC(text_ptr[index].text_length + 1, "PNG comment");
strcpy(text_ptr[index].text, bigtext);
allocated[index] = true;
if (!(opts.Options & FROM_STDIN))
{
text_ptr[++index].key = "Input File";
text_ptr[index].text = opts.Input_File_Name;
text_ptr[index].text_length = strlen(text_ptr[index].text);
}
#ifdef CAMERA
text_ptr[++index].key = "POV Camera";
sprintf(bigtext, "Location: %7g %7g %7g\n"
" Direction: %7g %7g %7g\n"
" Up: %7g %7g %7g\n"
" Right: %7g %7g %7g\n"
" Sky: %7g %7g %7g",
Camera->Location[X], Camera->Location[Y], Camera->Location[Z],
Camera->Direction[X], Camera->Direction[Y], Camera->Direction[Z],
Camera->Up[X], Camera->Up[Y], Camera->Up[Z],
Camera->Right[X], Camera->Right[Y], Camera->Right[Z],
Camera->Sky[X], Camera->Sky[Y], Camera->Sky[Z]);
text_ptr[index].text_length = strlen(bigtext);
text_ptr[index].text = (char *)POV_MALLOC(text_ptr[index].text_length + 1, "PNG comment");
strcpy(text_ptr[index].text, bigtext);
allocated[index] = true;
#endif
if (opts.FrameSeq.Clock_Value != 0)
{
text_ptr[++index].key = "POV Clock";
sprintf(bigtext, "%g", opts.FrameSeq.Clock_Value);
text_ptr[index].text_length = strlen(bigtext);
text_ptr[index].text = (char *)POV_MALLOC(text_ptr[index].text_length + 1, "PNG comment");
strcpy(text_ptr[index].text, bigtext);
allocated[index] = true;
}
if (opts.Quality != 9)
{
text_ptr[++index].key = "Rendering Quality";
sprintf(bigtext, "%d", opts.Quality);
text_ptr[index].text_length = strlen(bigtext);
text_ptr[index].text = (char *)POV_MALLOC(text_ptr[index].text_length + 1, "PNG comment");
strcpy(text_ptr[index].text, bigtext);
allocated[index] = true;
}
text_ptr[++index].key = "Rendering Time";
sprintf(bigtext, "%g s", trender);
text_ptr[index].text_length = strlen(bigtext);
text_ptr[index].text = (char *)POV_MALLOC(text_ptr[index].text_length + 1, "PNG comment");
strcpy(text_ptr[index].text, bigtext);
allocated[index] = true;
info_ptr->num_text = index + 1;
info_ptr->max_text = NTEXT;
info_ptr->text = text_ptr;
#endif // PNG_WRITE_tEXt_SUPPORTED
}
#endif // POV_COMMENTS
png_write_end(png_ptr, info_ptr);
png_destroy_write_struct(&png_ptr, &info_ptr);
#ifdef POV_COMMENTS
if (text_ptr != NULL)
{
for (n = 0; n <= index; n++)
{
if (allocated[n])
{
POV_FREE(text_ptr[n].text);
}
}
POV_FREE(text_ptr);
text_ptr = NULL;
}
#endif // POV_COMMENTS
}
if (row_ptr != NULL)
{
POV_FREE(row_ptr);
row_ptr = NULL;
}
if (out_file != NULL && !(opts.Options & TO_STDOUT))
{
delete out_file;
out_file = NULL;
}
}
else // READ_MODE
{
if (in_file != NULL)
{
delete in_file;
in_file = NULL;
}
if (o_png_ptr != NULL)
{
png_destroy_read_struct(&o_png_ptr, (png_infopp)NULL, (png_infopp)NULL);
}
}
}
/*****************************************************************************
*
* FUNCTION : Write_Png_Line
*
* ARGUMENTS : handle, line_data, line_number
*
* MODIFIED ARGS : none
*
* RETURN VALUE : none
*
* AUTHOR : Andreas Dilger
*
* DESCRIPTION
*
* Write a line of data to the PNG file
*
* CHANGES
*
* Updated for POV-Ray 3.X - [TIW]
* Updated to do flush output to reduce data loss - [AED]
* Updated to output Alpha channel if requested - [AED]
* Updated to output grayscale heightfield if requested - [AED]
* Updated to allow grayscale in 5-8 bpp if desired, Oct 1995 - [AED]
* Updated to allow grayscale and alpha together, Oct 1995 - [AED]
* Changed how bit-depths 9-15 get promoted to 16 bits based on new
* recommendations from the PNG Group, Nov 1995 - [AED]
*
******************************************************************************/
void PNG_Image::Write_Line(COLOUR *line_data)
{
if(valid == false)
Error("Cannot access output image file.");
register int col, j;
int himask;
int color;
/*
* We must copy all the values because PNG expects RGBRGB bytes, but
* POV-Ray stores RGB components in separate arrays as floats. In
* order to use the full scale values at the lower bit depth, PNG
* recommends filling the low-order bits with a copy of the high-order
* bits. However, studies have shown that filling the low order bits
* with constant bits significantly improves compression, which I'm
* doing here. Note that since the true bit depth is stored in the
* sBIT chunk, the extra packed bits are not important.
*/
switch (opts.OutputQuality)
{
case 5:
case 6:
case 7:
// Handle shifting for arbitrary output bit depth
himask = 0xFF ^ ((1 << (8 - opts.OutputQuality)) - 1);
if ((info_ptr->color_type & PNG_COLOR_MASK_COLOR) == PNG_COLOR_TYPE_GRAY)
{
for (col = j = 0; col < width; col++, j += png_stride)
{
color = (png_byte)floor((GREY_SCALE(line_data[col])) * 255.0);
// Use left-bit replication (LBR) for bit depths < 8
row_ptr[j] = color & himask;
row_ptr[j] |= color >> opts.OutputQuality;
/* Handle Alpha here if needed - must use exact bit replication
* instead of truncation or 100... termination
*/
if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
{
color = 255 - (int)floor(line_data[col][pTRANSM] * 255.0);
row_ptr[j + 1] = color & himask;
row_ptr[j + 1] |= color >> opts.OutputQuality;
}
}
}
else
{
for (col = j = 0; col < width; col++, j += png_stride)
{
color = (int)floor(line_data[col][pRED] * 255.0);
row_ptr[j] = color & himask;
row_ptr[j] |= color >> opts.OutputQuality;
color = (int)floor(line_data[col][pGREEN] * 255.0);
row_ptr[j + 1] = color & himask;
row_ptr[j + 1] |= color >> opts.OutputQuality;
color = (int)floor(line_data[col][pBLUE] * 255.0);
row_ptr[j + 2] = color & himask;
row_ptr[j + 2] |= color >> opts.OutputQuality;
// Handle Alpha here if needed
if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
{
color = 255 - (int)floor(line_data[col][pTRANSM] * 255.0);
row_ptr[j + 3] = color & himask;
row_ptr[j + 3] |= color >> opts.OutputQuality;
}
}
}
break;
case 8:
if ((info_ptr->color_type & PNG_COLOR_MASK_COLOR) == PNG_COLOR_TYPE_GRAY)
{
for (col = j = 0; col < width; col++, j += png_stride)
{
row_ptr[j] = (png_byte)floor((GREY_SCALE( line_data[col] )) * 255.0);
// Handle Alpha here if needed
if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
{
row_ptr[j+1] = (png_byte)(255-floor(line_data[col][pTRANSM]*255.0));
}
}
}
else
{
for (col = j = 0; col < width; col++, j += png_stride)
{
row_ptr[j] = (png_byte)floor(line_data[col][pRED] * 255.0);
row_ptr[j + 1] = (png_byte)floor(line_data[col][pGREEN] * 255.0);
row_ptr[j + 2] = (png_byte)floor(line_data[col][pBLUE] * 255.0);
// Handle Alpha here if needed
if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
{
row_ptr[j+3] = (png_byte)(255-floor(line_data[col][pTRANSM]*255.0));
}
}
}
break;
case 16:
if ((info_ptr->color_type & PNG_COLOR_MASK_COLOR) == PNG_COLOR_TYPE_GRAY)
{
for (col = j = 0; col < width; col++, j += png_stride)
{
color = (int)floor((GREY_SCALE( line_data[col] )) * 65535.0);
row_ptr[j] = color >> 8;
row_ptr[j+1] = color & 0xff;
// Handle Alpha here if needed
if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
{
color = 65535 - (int)floor(line_data[col][pTRANSM] * 65535.0);
row_ptr[j+2] = color >> 8;
row_ptr[j+3] = color & 0xff;
}
}
}
else
{
for (col = j = 0; col < width; col++, j += png_stride)
{
color = (int)floor(line_data[col][pRED] * 65535.0);
row_ptr[j] = color >> 8;
row_ptr[j + 1] = color & 0xFF;
color = (int)floor(line_data[col][pGREEN] * 65535.0);
row_ptr[j + 2] = color >> 8;
row_ptr[j + 3] = color & 0xFF;
color = (int)floor(line_data[col][pBLUE] * 65535.0);
row_ptr[j + 4] = color >> 8;
row_ptr[j + 5] = color & 0xFF;
// Handle Alpha here if needed
if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
{
color = 65535 - (int)floor(line_data[col][pTRANSM] * 65535.0);
row_ptr[j + 6] = color >> 8;
row_ptr[j + 7] = color & 0xFF;
}
}
}
break;
default: // OutputQuality 9 - 15
// Handle shifting for arbitrary output bit depth
himask = 0xFF ^ ((1 << (16 - opts.OutputQuality)) - 1);
if ((info_ptr->color_type & PNG_COLOR_MASK_COLOR) == PNG_COLOR_TYPE_GRAY)
{
for (col = j = 0; col < width; col++, j += png_stride)
{
color = (int)floor((GREY_SCALE( line_data[col] )) * 65535.0);
row_ptr[j] = color >> 8;
row_ptr[j + 1] = color & himask;
row_ptr[j + 1] |= color >> opts.OutputQuality;
if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
{
color = 65535 - (int)floor(line_data[col][pTRANSM] * 65535.0);
row_ptr[j + 2] = color >> 8;
row_ptr[j + 3] = color & himask;
row_ptr[j + 3] |= color >> opts.OutputQuality;
}
}
}
else
{
for (col = j = 0; col < width; col++, j += png_stride)
{
color = (int)floor(line_data[col][pRED] * 65535.0);
row_ptr[j] = color >> 8;
row_ptr[j + 1] = color & himask;
row_ptr[j + 1] |= color >> opts.OutputQuality;
color = (int)floor(line_data[col][pGREEN] * 65535.0);
row_ptr[j + 2] = color >> 8;
row_ptr[j + 3] = color & himask;
row_ptr[j + 3] |= color >> opts.OutputQuality;
color = (int)floor(line_data[col][pBLUE] * 65535.0);
row_ptr[j + 4] = color >> 8;
row_ptr[j + 5] = color & himask;
row_ptr[j + 5] |= color >> opts.OutputQuality;
// Handle Alpha here if needed
if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
{
color = 65535 - (int)floor(line_data[col][pTRANSM] * 65535.0);
row_ptr[j + 6] = color >> 8;
row_ptr[j + 7] = color & himask;
row_ptr[j + 7] |= color >> opts.OutputQuality;
}
}
}
}
if (setjmp(png_ptr->jmpbuf))
{
// If we get here, we had a problem writing the file
delete out_file;
out_file = NULL;
Error("Cannot write PNG output data to %s.", filename);
}
// Write out a scanline
png_write_row(png_ptr, row_ptr);
line_number++;
out_file->flush();
}
/*****************************************************************************
*
* FUNCTION : Read_Png_Line
*
* ARGUMENTS : FILE_HANDLE *handle; COLOUR *line_data; int *line_number;
*
* MODIFIED ARGS : none
*
* RETURN VALUE : 1 if no error exit
*
* AUTHOR : Andreas Dilger
*
* DESCRIPTION
*
* Read a line of PNG data
*
* CHANGES
*
* Updated for POV-Ray 3.X - [TIW]
* Updated to handle interrupted file resuming Sept 1995 - [AED]
* Updated to support grayscale and alpha together, Oct 1995 - [AED]
*
******************************************************************************/
int PNG_Image::Read_Line(COLOUR *line_data)
{
if(valid == false)
Error("Cannot access output image file.");
register int col, j, step;
if (setjmp(o_png_ptr->jmpbuf))
{
/* If we get here, we had a problem reading the file, which probably
* means that we have read all the available data, rather than a real
* error, but there is no sure way to know.
*/
return 0;
}
if (setjmp(png_ptr->jmpbuf))
{
// If we get here, we had a problem writing the new file
delete in_file;
in_file = NULL;
delete tmp_fp;
tmp_fp = NULL;
if (DELETE_FILE(filename) != DELETE_FILE_ERR)
{
RENAME_FILE(tmp_fname,filename); // Move original file back
}
return -1;
}
// Read in another row if available
png_read_row(o_png_ptr, row_ptr, NULL);
// We won't get here if there was a read error
png_write_row(png_ptr, row_ptr);
/*
* We must copy all the values because PNG supplies RGBRGB, but POV-Ray
* stores RGB components in separate arrays. Note that since we have
* already written the data out to the temporary file, we only need to
* use the top 8 bits for the line_data info as it is only used for
* potential screen output.
*/
// How many bytes in a sample
step = (info_ptr->bit_depth <= 8) ? 1 : 2;
if ((info_ptr->color_type & PNG_COLOR_MASK_COLOR) == PNG_COLOR_TYPE_GRAY)
{
for (col = j = 0; col < width; col++, j += png_stride)
{
line_data[col][pRED] = (DBL)row_ptr[j] / 255.0;
line_data[col][pGREEN] = (DBL)row_ptr[j] / 255.0;
line_data[col][pBLUE] = (DBL)row_ptr[j] / 255.0;
if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
{
line_data[col][pTRANSM] = (DBL)(255 - row_ptr[j + step]) / 255.0;
}
}
}
else
{
for (col = j = 0; col < width; col++, j += png_stride)
{
line_data[col][pRED] = (DBL)row_ptr[j] / 255.0;
line_data[col][pGREEN] = (DBL)row_ptr[j + step] / 255.0;
line_data[col][pBLUE] = (DBL)row_ptr[j + 2*step] / 255.0;
if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
{
line_data[col][pTRANSM] = (DBL)(255 - row_ptr[j + 3*step]) / 255.0;
}
}
}
// Note that line_number is that of the first blank (i.e. missing) row
#if defined(PNG_READ_oFFs_SUPPORTED)
line_number = info_ptr->y_offset + png_ptr->row_number ;
#else
line_number = png_ptr->row_number ;
#endif
return 1;
}
/*****************************************************************************
*
* FUNCTION : Read_Png_Image
*
* ARGUMENTS : IMAGE *Image; char *name;
*
* MODIFIED ARGS : Image
*
* RETURN VALUE : none
*
* AUTHOR : Andreas Dilger
*
* DESCRIPTION
*
* Reads a PNG image into an RGB image buffer
*
* CHANGES
*
* Updated for POV-Ray 3.X - [TIW]
* Updated to allow grayscale and alpha together, Oct 1995 - [AED]
* Fixed palette size for grayscale images with bit-depth <= 8, Nov 1995 [AED]
* Changed how grayscale images > 8bpp are stored based on use, Nov 1995 [AED]
*
******************************************************************************/
void Read_Png_Image(IMAGE *Image, char *name)
{
unsigned int width, height;
int row, col, j;
int stride;
IStream *filep;
png_struct *r_png_ptr;
png_info *r_info_ptr;
png_byte **row_ptrs;
// Start by trying to open the file
if((filep = Locate_File(name,POV_File_Image_PNG,NULL,true)) == NULL)
Error("Cannot open PNG file.");
if(((r_png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, (png_voidp)true, png_pov_err, png_pov_warn)) == NULL) ||
((r_info_ptr = png_create_info_struct(r_png_ptr)) == NULL))
Error("Cannot allocate PNG data structures");
if(setjmp(r_png_ptr->jmpbuf))
{
// If we get here, we had a problem reading the file
png_destroy_read_struct(&r_png_ptr, &r_info_ptr, (png_infopp)NULL);
Error("Cannot read PNG image.");
}
// set up the input control
png_set_read_fn(r_png_ptr, filep, png_pov_read_data);
// read the file information
png_read_info(r_png_ptr, r_info_ptr);
width = r_info_ptr->width;
height = r_info_ptr->height;
Image->iwidth = width;
Image->iheight = height;
Image->width = (DBL)width;
Image->height = (DBL)height;
// Allocate buffers for the image
stride = 1;
// color palette image
if(r_info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
{
IMAGE_COLOUR *cmap;
png_color *png_cmap;
int cmap_len = r_info_ptr->num_palette;
int index;
Image->Colour_Map_Size = cmap_len;
cmap = (IMAGE_COLOUR *)POV_MALLOC(cmap_len*sizeof(IMAGE_COLOUR), "PNG image color map");
Image->Colour_Map = cmap;
png_cmap = r_info_ptr->palette;
for(index = 0; index < cmap_len; index++)
{
cmap[index].Red = png_cmap[index].red;
cmap[index].Green = png_cmap[index].green;
cmap[index].Blue = png_cmap[index].blue;
cmap[index].Filter = 0;
cmap[index].Transmit = 0;
}
if(r_info_ptr->valid & PNG_INFO_tRNS)
{
for (index = 0; index < r_info_ptr->num_trans; index++)
cmap[index].Transmit = 255 - r_info_ptr->trans[index];
}
Image->data.map_lines = (unsigned char **)POV_MALLOC(height * sizeof(unsigned char *), "PNG image");
// tellg pnglib to expand data to 1 pixel/byte
png_set_packing(r_png_ptr);
}
// grayscale palette image
else if((r_info_ptr->color_type == PNG_COLOR_TYPE_GRAY) && (r_info_ptr->bit_depth <= 8))
{
IMAGE_COLOUR *cmap;
int cmap_len;
int index;
Image->Colour_Map_Size = cmap_len = 1 << r_info_ptr->bit_depth;
cmap = (IMAGE_COLOUR *)POV_MALLOC(cmap_len*sizeof(IMAGE_COLOUR), "PNG image color map");
Image->Colour_Map = cmap;
for(index = 0; index < cmap_len; index++)
{
cmap[index].Red =
cmap[index].Green =
cmap[index].Blue = index * 255 / (cmap_len - 1);
cmap[index].Filter = 0;
cmap[index].Transmit = 0;
}
if(r_info_ptr->valid & PNG_INFO_tRNS)
{
for (index = 0; index < r_info_ptr->num_trans; index++)
cmap[index].Transmit = 255 - r_info_ptr->trans[index];
}
Image->data.map_lines = (unsigned char **)POV_MALLOC(height * sizeof(unsigned char *), "PNG image");
// tellg pnglib to expand data to 1 pixel/byte
png_set_packing(r_png_ptr);
}
// grayscale image
else if((r_info_ptr->color_type & PNG_COLOR_MASK_COLOR) == PNG_COLOR_TYPE_GRAY)
{
Image->Colour_Map = NULL;
if(r_png_ptr->color_type & PNG_COLOR_MASK_ALPHA)
{
if(r_info_ptr->bit_depth <= 8)
{
Image->data.rgb8_lines = (IMAGE8_LINE *)POV_MALLOC(height * sizeof(IMAGE8_LINE), "PNG image");
stride = 2;
}
else
{
Image->data.rgb16_lines = (IMAGE16_LINE *)POV_MALLOC(height * sizeof(IMAGE16_LINE), "PNG image");
stride = 4;
}
}
else
{
if(r_info_ptr->bit_depth <= 8)
{
Image->data.map_lines = (unsigned char **)POV_MALLOC(height * sizeof(unsigned char *), "PNG image");
stride = 1;
}
else
{
Image->Image_Type |= IS16BITIMAGE;
Image->Image_Type |= IS16GRAYIMAGE;
Image->data.gray16_lines = (unsigned short **)POV_MALLOC(height * sizeof(unsigned short *), "PNG image");
stride = 2;
}
}
}
// color image
else if((r_info_ptr->color_type == PNG_COLOR_TYPE_RGB) || (r_info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA))
{
Image->Colour_Map = NULL;
if(r_info_ptr->bit_depth > 8)
{
Image->Image_Type |= IS16BITIMAGE;
Image->data.rgb16_lines = (IMAGE16_LINE *)POV_MALLOC(height * sizeof(IMAGE16_LINE), "PNG image");
if(r_info_ptr->color_type == PNG_COLOR_TYPE_RGB)
stride = 6;
else // PNG_COLOR_TYPE_RGB_ALPHA
stride = 8;
}
else
{
Image->data.rgb8_lines = (IMAGE8_LINE *)POV_MALLOC(height * sizeof(IMAGE8_LINE), "PNG image");
if(r_info_ptr->color_type == PNG_COLOR_TYPE_RGB)
stride = 3;
else // PNG_COLOR_TYPE_RGB_ALPHA
stride = 4;
}
}
else // Unknown PNG type
Error("Unsupported color type %d in PNG image.", r_info_ptr->color_type);
// tellg pnglib to handle the gamma conversion for you. Note that
// GammaFactor * DisplayFactor = assumed_gamma, so we are converting
// images into the "internal gamma" space of POV (rather than to a
// gamma of 1.0) to avoid doing gamma correction on image maps twice for
// those scene files which don't have a gamma of 1.0. For POV 3.0,
// we will only do input gamma conversion on those files which will be
// used as image maps, and the other types will load the raw pixel values.
#if defined(PNG_READ_GAMMA_SUPPORTED) && defined(PNG_READ_gAMA_SUPPORTED)
if (r_info_ptr->valid & PNG_INFO_gAMA && (Image->Image_Type & IMAGE_FTYPE))
png_set_gamma(r_png_ptr, opts.GammaFactor*opts.DisplayGamma, r_info_ptr->gamma);
#endif // PNG_READ_GAMMA_SUPPORTED and PNG_READ_gAMA_SUPPORTED
png_set_interlace_handling(r_png_ptr);
png_read_update_info(r_png_ptr, r_info_ptr);
// Allocate row buffers for the input
row_ptrs = (png_byte **)POV_MALLOC(height*sizeof(png_byte *), "PNG image");
for(row = 0; row < height; row++)
row_ptrs[row] = (png_byte *)POV_MALLOC(r_info_ptr->rowbytes, "PNG image line");
// Read in the entire image
png_read_image(r_png_ptr, row_ptrs);
// We must copy all the values because PNG supplies RGBRGB, but POV-Ray
// stores RGB components in separate arrays
if(Image->Colour_Map == NULL)
{
for(row = 0; row < height; row++)
{
// grayscale image
if((r_info_ptr->color_type & PNG_COLOR_MASK_COLOR) == PNG_COLOR_TYPE_GRAY)
{
// with alpha channel
if(r_png_ptr->color_type & PNG_COLOR_MASK_ALPHA)
{
if(r_info_ptr->bit_depth <= 8)
{
IMAGE8_LINE *rgb8_lines = &Image->data.rgb8_lines[row];
rgb8_lines->red = (unsigned char *)POV_MALLOC(width, "PNG image line");
rgb8_lines->green = (unsigned char *)POV_MALLOC(width, "PNG image line");
rgb8_lines->blue = (unsigned char *)POV_MALLOC(width, "PNG image line");
rgb8_lines->transm = (unsigned char *)POV_MALLOC(width,"PNG image line");
for(col = j = 0; col < width; col ++, j += stride)
{
rgb8_lines->red[col] =
rgb8_lines->green[col] =
rgb8_lines->blue[col] = row_ptrs[row][j];
rgb8_lines->transm[col] = 255 - row_ptrs[row][j + 1];
}
POV_FREE(row_ptrs[row]);
}
else
{
IMAGE16_LINE *rgb16_lines = &Image->data.rgb16_lines[row];
rgb16_lines->red = (unsigned short *)POV_MALLOC(width * 2, "PNG image line");
rgb16_lines->green = (unsigned short *)POV_MALLOC(width * 2, "PNG image line");
rgb16_lines->blue = (unsigned short *)POV_MALLOC(width * 2, "PNG image line");
rgb16_lines->transm = (unsigned short *)POV_MALLOC(width * 2,"PNG image line");
for(col = j = 0; col < width; col ++, j += stride)
{
rgb16_lines->red[col] =
rgb16_lines->green[col] =
rgb16_lines->blue[col] = ((unsigned short)row_ptrs[row][j] << 8) | row_ptrs[row][j + 1];
rgb16_lines->transm[col] = 65535 - (((unsigned short)row_ptrs[row][j + 2] << 8) | row_ptrs[row][j + 1]);
}
POV_FREE(row_ptrs[row]);
}
}
// without alpha channel
else
{
if(r_info_ptr->bit_depth <= 8)
{
Image->data.map_lines[row] = row_ptrs[row];
// Do not free row_ptrs[row] here!
}
else
{
unsigned short *gray16_lines;
gray16_lines = Image->data.gray16_lines[row] = (unsigned short *)POV_MALLOC(width * 2, "PNG image line");
for(col = j = 0; col < width; col ++, j += stride)
gray16_lines[col] = ((unsigned short)row_ptrs[row][j] << 8) | row_ptrs[row][j + 1];
POV_FREE(row_ptrs[row]);
}
}
}
// color image
else // r_info_ptr->color_type & PNG_COLOR_MASK_COLOR
{
if(r_info_ptr->bit_depth <= 8)
{
IMAGE8_LINE *rgb8_lines = &Image->data.rgb8_lines[row];
rgb8_lines->red = (unsigned char *)POV_MALLOC(width, "PNG image line");
rgb8_lines->green = (unsigned char *)POV_MALLOC(width, "PNG image line");
rgb8_lines->blue = (unsigned char *)POV_MALLOC(width, "PNG image line");
if(r_png_ptr->color_type & PNG_COLOR_MASK_ALPHA)
rgb8_lines->transm = (unsigned char *)POV_MALLOC(width, "PNG image line");
else
rgb8_lines->transm = NULL;
for(col = j = 0; col < width; col ++, j += stride)
{
rgb8_lines->red[col] = row_ptrs[row][j];
rgb8_lines->green[col] = row_ptrs[row][j + 1];
rgb8_lines->blue[col] = row_ptrs[row][j + 2];
if(r_png_ptr->color_type & PNG_COLOR_MASK_ALPHA)
rgb8_lines->transm[col] = 255 - row_ptrs[row][j + 3];
}
POV_FREE(row_ptrs[row]);
}
else
{
IMAGE16_LINE *rgb16_lines = &Image->data.rgb16_lines[row];
rgb16_lines->red = (unsigned short *)POV_MALLOC(width * 2, "PNG image line");
rgb16_lines->green = (unsigned short *)POV_MALLOC(width * 2, "PNG image line");
rgb16_lines->blue = (unsigned short *)POV_MALLOC(width * 2, "PNG image line");
if(r_png_ptr->color_type & PNG_COLOR_MASK_ALPHA)
rgb16_lines->transm = (unsigned short *)POV_MALLOC(width * 2, "PNG image line");
else
rgb16_lines->transm = NULL;
for(col = j = 0; col < width; col ++, j += stride)
{
rgb16_lines->red[col] = ((unsigned short)row_ptrs[row][j] << 8) | row_ptrs[row][j + 1];
rgb16_lines->green[col] = ((unsigned short)row_ptrs[row][j + 2] << 8) | row_ptrs[row][j + 3];
rgb16_lines->blue[col] = ((unsigned short)row_ptrs[row][j + 4] << 8) | row_ptrs[row][j + 5];
if(r_png_ptr->color_type & PNG_COLOR_MASK_ALPHA)
rgb16_lines->transm[col] = 65535 - (((unsigned short)row_ptrs[row][j + 6] << 8) | row_ptrs[row][j + 7]);
}
POV_FREE(row_ptrs[row]);
}
}
}
}
else // grayscale palette image or color palette image
{
for(row = 0; row < height; row++)
Image->data.map_lines[row] = row_ptrs[row];
// Do not free row_ptrs[row] here!
}
// Clean up the rest of the PNG memory and such
POV_FREE(row_ptrs);
// read the rest of the file, getting any additional chunks in png_info
png_read_end(r_png_ptr, r_info_ptr);
// clean up after the read, and free any memory allocated
png_destroy_read_struct(&r_png_ptr, &r_info_ptr, (png_infopp)NULL);
delete filep;
}
END_POV_NAMESPACE
|