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 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798
|
/* Copyright (C) 2001-2024 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
CA 94129, USA, for further information.
*/
/* PhotoShop (PSD) export device, supporting DeviceN color models. */
#include "math_.h"
#include "gxiodev.h"
#include "gdevprn.h"
#include "gsparam.h"
#include "gscrd.h"
#include "gscrdp.h"
#include "gxlum.h"
#include "gdevdcrd.h"
#include "gstypes.h"
#include "gxdcconv.h"
#include "gdevdevn.h"
#include "gsequivc.h"
#include "gsicc_cache.h"
#include "gsicc_manage.h"
#include "gxgetbit.h"
#include "gdevppla.h"
#include "gxdownscale.h"
#include "gdevdevnprn.h"
#include "gdevpsd.h"
#include "gxdevsop.h"
#include "gsicc_cms.h"
#ifndef MAX_CHAN
# define MAX_CHAN 15
#endif
/* Define the device parameters. */
#ifndef X_DPI
# define X_DPI 72
#endif
#ifndef Y_DPI
# define Y_DPI 72
#endif
#define ENABLE_COLOR_REPLACE 0
/* The device descriptor */
static dev_proc_open_device(psd_prn_open);
static dev_proc_close_device(psd_prn_close);
static dev_proc_get_params(psd_get_params);
static dev_proc_put_params(psd_put_params);
static dev_proc_put_params(psd_put_params_tag);
static dev_proc_get_params(psd_get_params_cmyk);
static dev_proc_put_params(psd_put_params_cmyk);
static dev_proc_put_params(psd_put_params_cmyktag);
static dev_proc_print_page(psd_print_page);
static dev_proc_map_color_rgb(psd_map_color_rgb);
static dev_proc_get_color_mapping_procs(get_psdrgb_color_mapping_procs);
static dev_proc_get_color_mapping_procs(get_psdrgbtags_color_mapping_procs);
static dev_proc_get_color_mapping_procs(get_psd_color_mapping_procs);
static dev_proc_get_color_comp_index(psd_get_color_comp_index);
/* This is redundant with color_info.cm_name. We may eliminate this
typedef and use the latter string for everything. */
typedef enum {
psd_DEVICE_GRAY,
psd_DEVICE_RGB,
psd_DEVICE_RGBT,
psd_DEVICE_CMYK,
psd_DEVICE_CMYKT,
psd_DEVICE_N
} psd_color_model;
fixed_colorant_name DevCMYKTComponents[] = {
"Cyan",
"Magenta",
"Yellow",
"Black",
"Tags",
0 /* List terminator */
};
fixed_colorant_name DevRGBTComponents[] = {
"Red",
"Green",
"Blue",
"Tags",
0 /* List terminator */
};
/*
* A structure definition for a DeviceN type device
*/
typedef struct psd_device_s {
gx_devn_prn_device_common;
psd_color_model color_model;
int max_spots;
bool lock_colorants;
gx_downscaler_params downscale;
/* ICC color profile objects, for color conversion.
These are all device link profiles. At least that
is how it appears looking at how this code
was written to work with the old icclib. Just
doing minimal updates here so that it works
with the new CMM API. I would be interested
to hear how people are using this. */
char profile_rgb_fn[256];
cmm_profile_t *rgb_profile;
gcmmhlink_t rgb_icc_link;
char profile_cmyk_fn[256];
cmm_profile_t *cmyk_profile;
gcmmhlink_t cmyk_icc_link;
char profile_out_fn[256];
cmm_profile_t *output_profile;
gcmmhlink_t output_icc_link;
bool warning_given; /* Used to notify the user that max colorants reached */
#if ENABLE_COLOR_REPLACE
bool color_replace_warning_given;
#endif
} psd_device;
/* GC procedures */
static
ENUM_PTRS_WITH(psd_device_enum_ptrs, psd_device *pdev)
{
ENUM_PREFIX(st_gx_devn_prn_device, 0);
(void)pdev; /* Stop unused var warning */
return 0;
}
ENUM_PTRS_END
static RELOC_PTRS_WITH(psd_device_reloc_ptrs, psd_device *pdev)
{
RELOC_PREFIX(st_gx_devn_prn_device);
(void)pdev; /* Stop unused var warning */
}
RELOC_PTRS_END
static int
psd_spec_op(gx_device *pdev, int op, void *data, int datasize)
{
psd_device *pdev_psd = (psd_device*)pdev;
if (op == gxdso_supports_devn || op == gxdso_skip_icc_component_validation) {
return true;
}
if (op == gxdso_is_sep_supporting_additive_device &&
pdev->color_info.polarity == GX_CINFO_POLARITY_ADDITIVE)
return 3; /* We must be RGB */
if (op == gxdso_supports_saved_pages)
return 0;
if (op == gxdso_adjust_colors)
{
int nc;
bool has_tags = (pdev_psd->color_model == psd_DEVICE_CMYKT ||
pdev_psd->color_model == psd_DEVICE_RGBT);
/* With planar the depth can be more than 64. Update the color
info to reflect the proper depth and number of planes. Also note
that the number of spot colors can change from page to page.
Update things so that we only output separations for the
inks on that page. */
int num_proc_cols = pdev->color_info.polarity == GX_CINFO_POLARITY_SUBTRACTIVE ? 4 : 3;
if (pdev_psd->devn_params.page_spot_colors >= 0) {
cmm_dev_profile_t *profile_struct;
int code = dev_proc(pdev, get_profile)((gx_device *)pdev, &profile_struct);
if (code < 0)
return code;
/* PDF case, as the page spot colors are known. */
if (profile_struct->spotnames != NULL) {
/* PDF case, NCLR ICC profile with spot names. The ICC spots
will use up some of the max_spots values. If max_spots is
too small to accomodate even the ICC spots, throw an error */
if (profile_struct->spotnames->count - num_proc_cols > pdev_psd->max_spots ||
profile_struct->spotnames->count < num_proc_cols ||
profile_struct->spotnames->count <
profile_struct->device_profile[0]->num_comps) {
gs_warn("ICC profile colorant names count error");
return_error(gs_error_rangecheck);
}
pdev->color_info.num_components =
(profile_struct->spotnames->count
+ pdev_psd->devn_params.page_spot_colors + has_tags);
if (pdev->color_info.num_components > pdev->color_info.max_components)
pdev->color_info.num_components = pdev->color_info.max_components;
if (pdev->num_planar_planes)
pdev->num_planar_planes = pdev->color_info.num_components;
} else {
/* Use the information that is in the page spot color. We should
be here if we are processing a PDF and we do not have a DeviceN
ICC profile specified for output */
if (!(pdev_psd->lock_colorants)) {
pdev->color_info.num_components =
(pdev_psd->devn_params.page_spot_colors
+ pdev_psd->devn_params.num_std_colorant_names + has_tags);
if (pdev->color_info.num_components > pdev->color_info.max_components)
pdev->color_info.num_components = pdev->color_info.max_components;
if (pdev->num_planar_planes)
pdev->num_planar_planes = pdev->color_info.num_components;
}
}
} else {
/* We do not know how many spots may occur on the page.
For this reason we go ahead and allocate the maximum that we
have available. Note, lack of knowledge only occurs in the case
of PS files. With PDF we know a priori the number of spot
colorants. However, the first time the device is opened,
pdev_psd->devn_params.page_spot_colors is -1 even if we are
dealing with a PDF file, so we will first find ourselves here,
which will set num_comp based upon max_spots + 4. If -dMaxSpots
was set (Default is GS_SOFT_MAX_SPOTS which is 10),
it is made use of here. */
if (!(pdev_psd->lock_colorants)) {
int num_comp = pdev_psd->max_spots + num_proc_cols + has_tags; /* Spots + CMYK */
if (num_comp > GS_CLIENT_COLOR_MAX_COMPONENTS)
num_comp = GS_CLIENT_COLOR_MAX_COMPONENTS;
pdev->color_info.num_components = num_comp;
pdev->color_info.max_components = num_comp;
pdev->num_planar_planes = num_comp;
}
}
nc = pdev->color_info.num_components;
pdev->color_info.depth = nc * pdev_psd->devn_params.bitspercomponent;
return 0;
}
#if ENABLE_COLOR_REPLACE
/* Demo of doing color replacement in the device in place of
standard ICC color management. Only works for CMYK psd devices */
if (op == gxdso_replacecolor && pdev->color_info.num_components >= 4) {
color_replace_t *replace_data = (color_replace_t *)data;
gx_device_color *pdc = replace_data->pdc;
const gs_color_space *pcs = replace_data->pcs;
const gs_client_color *pcc = replace_data->pcc;
const gs_gstate *pgs = replace_data->pgs; /* Perhaps needed for named color profile information */
/* Just a warning here for now. When pdf14_profile is set, the user
may need to do some extra work to get a desired color replacement.
Note that the pdf14 color space can be completely different
than the target device color space, which is what this will indicate.
If the color space is gray or rgb we don't fool with any remap in this
example. */
if (replace_data->pdf14_iccprofile != NULL && !(pdev_psd->color_replace_warning_given)) {
dmlprintf(pdev_psd->memory, "Warning. Doing color replacement for PDF14 device!\n");
pdev_psd->color_replace_warning_given = true;
if (replace_data->pdf14_iccprofile->num_comps == 3 ||
replace_data->pdf14_iccprofile->num_comps == 1) {
return false;
}
}
/* CMYK or CIELAB source colors that are vector fills. */
if ((pcs->cmm_icc_profile_data->data_cs == gsCMYK ||
pcs->cmm_icc_profile_data->data_cs == gsCIELAB ||
pcs->cmm_icc_profile_data->data_cs == gsRGB ) &&
pdev->graphics_type_tag == GS_VECTOR_TAG) {
int jj, ii;
int values[4];
int replace = 0;
/* Zero out all the device values including any spots */
for (ii = 0; ii < pdev->color_info.num_components; ii++) {
pdc->colors.devn.values[ii] = 0;
}
if (pcs->cmm_icc_profile_data->data_cs == gsCMYK) {
for (jj = 0; jj < 4; jj++) {
values[jj] = 65535 * pcc->paint.values[jj];
}
if (values[0] == 40959 && values[1] == 0 && values[2] == 11730 && values[3] == 0) {
replace = 1;
pdc->colors.devn.values[1] = 32000;
} else if (values[0] == 0 && values[1] == 49741 && values[2] == 65535 && values[3] == 0) {
replace = 1;
pdc->colors.devn.values[0] = 48000;
} else {
/* Test of shading.... */
replace = 1;
for (ii = 0; ii < 3; ii++) {
pdc->colors.devn.values[ii] = 65535 - values[ii];
}
}
} else if (pcs->cmm_icc_profile_data->data_cs == gsCIELAB) {
/* CIELAB case. Lets make color K only based upon luminance */
int luminance = 65535 * pcc->paint.values[0] / 100.0;
replace = 1;
if (luminance > 65535)
luminance = 65535;
pdc->colors.devn.values[3] = luminance;
} else {
/* Source is RGB case */
/* Lets invert these as C = R, M = G, Y = B, K = 0 */
replace = 1;
for (ii = 0; ii < 3; ii++) {
pdc->colors.devn.values[ii] = 65535 * pcc->paint.values[ii];
}
}
if (replace) {
/* This is only for devn type devices. */
pdc->type = gx_dc_type_devn;
/* Save original color space and color info into dev color */
ii = pcs->cmm_icc_profile_data->num_comps;
for (ii--; ii >= 0; ii--)
pdc->ccolor.paint.values[ii] = pcc->paint.values[ii];
pdc->ccolor_valid = true;
return true;
} else
return false; /* No replacement */
} else
return false;
}
#endif
return gdev_prn_dev_spec_op(pdev, op, data, datasize);
}
/* Even though psd_device_finalize is the same as gx_devn_prn_device_finalize,
* we need to implement it separately because st_composite_final
* declares all 3 procedures as private. */
static void
psd_device_finalize(const gs_memory_t *cmem, void *vpdev)
{
gx_devn_prn_device_finalize(cmem, vpdev);
}
gs_private_st_composite_final(st_psd_device, psd_device,
"psd_device", psd_device_enum_ptrs, psd_device_reloc_ptrs,
psd_device_finalize);
static gx_color_index
psd_rgbtags_encode_color(gx_device *dev, const gx_color_value colors[])
{
int bpc = ((gx_devn_prn_device *)dev)->devn_params.bitspercomponent;
gx_color_index color = 0;
int i = 0;
uchar ncomp = dev->num_planar_planes;
COLROUND_VARS;
COLROUND_SETUP(bpc);
for (; i<ncomp; i++) {
color <<= bpc;
color |= COLROUND_ROUND(colors[i]);
}
/* FIXME: We are writing both tags and colors[ncomp-1] to the lower bits.
* Is this really safe? */
color |= (dev->graphics_type_tag & ~GS_DEVICE_ENCODES_TAGS);
return (color == gx_no_color_index ? color ^ 1 : color);
}
static int
psd_rgbtags_decode_color(gx_device * dev, gx_color_index color, gx_color_value * out)
{
int bpc = ((gx_devn_prn_device *)dev)->devn_params.bitspercomponent;
int mask = (1 << bpc) - 1;
int i = 0;
uchar ncomp = dev->num_planar_planes;
COLDUP_VARS;
COLDUP_SETUP(bpc);
for (; i<ncomp; i++) {
out[ncomp - i - 1] = COLDUP_DUP(color & mask);
color >>= bpc;
}
return 0;
}
static void
psd_initialize_device_procs(gx_device *dev)
{
gdev_prn_initialize_device_procs_bg(dev);
set_dev_proc(dev, open_device, psd_prn_open);
set_dev_proc(dev, close_device, psd_prn_close);
set_dev_proc(dev, map_color_rgb, psd_map_color_rgb);
set_dev_proc(dev, get_params, psd_get_params);
set_dev_proc(dev, put_params, psd_put_params);
set_dev_proc(dev, get_color_mapping_procs, get_psdrgb_color_mapping_procs);
set_dev_proc(dev, get_color_comp_index, psd_get_color_comp_index);
set_dev_proc(dev, encode_color, gx_devn_prn_encode_color);
set_dev_proc(dev, decode_color, gx_devn_prn_decode_color);
set_dev_proc(dev, update_spot_equivalent_colors, gx_devn_prn_update_spot_equivalent_colors);
set_dev_proc(dev, ret_devn_params, gx_devn_prn_ret_devn_params);
set_dev_proc(dev, dev_spec_op, psd_spec_op);
}
static void
psdtags_initialize_device_procs(gx_device *dev)
{
psd_initialize_device_procs(dev);
set_dev_proc(dev, get_color_mapping_procs, get_psdrgbtags_color_mapping_procs);
set_dev_proc(dev, put_params, psd_put_params_tag);
set_dev_proc(dev, encode_color, psd_rgbtags_encode_color);
set_dev_proc(dev, decode_color, psd_rgbtags_decode_color);
}
#define psd_device_body(procs, dname, ncomp, pol, depth, mg, mc, sl, cn)\
std_device_full_body_type_extended(psd_device, &procs, dname,\
&st_psd_device,\
(int)((long)(DEFAULT_WIDTH_10THS) * (X_DPI) / 10),\
(int)((long)(DEFAULT_HEIGHT_10THS) * (Y_DPI) / 10),\
X_DPI, Y_DPI,\
GX_DEVICE_COLOR_MAX_COMPONENTS, /* MaxComponents */\
ncomp, /* NumComp */\
pol, /* Polarity */\
depth, 0, /* Depth, GrayIndex */\
mg, mc, /* MaxGray, MaxColor */\
mg + 1, mc + 1, /* DitherGray, DitherColor */\
sl, /* Linear & Separable? */\
cn, /* Process color model name */\
0, 0, /* offsets */\
0, 0, 0, 0 /* margins */\
),\
prn_device_body_rest_(psd_print_page)
/*
* PSD device with RGB process color model.
*/
const psd_device gs_psdrgb_device =
{
psd_device_body(psd_initialize_device_procs, "psdrgb",
ARCH_SIZEOF_GX_COLOR_INDEX, /* Number of components - need a nominal 1 bit for each */
GX_CINFO_POLARITY_ADDITIVE,
ARCH_SIZEOF_GX_COLOR_INDEX * 8, 255, 255, GX_CINFO_SEP_LIN, "DeviceRGB"),
/* devn_params specific parameters */
{ 8, /* Bits per color - must match ncomp, depth, etc. above */
DeviceRGBComponents, /* Names of color model colorants */
3, /* Number colorants for RGB */
0, /* MaxSeparations has not been specified */
-1, /* PageSpotColors has not been specified */
{0}, /* SeparationNames */
0, /* SeparationOrder names */
{0, 1, 2, 3, 4, 5, 6, 7 } /* Initial component SeparationOrder */
},
{ true }, /* equivalent CMYK colors for spot colors */
/* PSD device specific parameters */
psd_DEVICE_RGB, /* Color model */
GS_SOFT_MAX_SPOTS, /* max_spots */
false, /* colorants not locked */
GX_DOWNSCALER_PARAMS_DEFAULTS
};
const psd_device gs_psdrgb16_device =
{
psd_device_body(psd_initialize_device_procs, "psdrgb16",
ARCH_SIZEOF_GX_COLOR_INDEX, /* Number of components - need a nominal 1 bit for each */
GX_CINFO_POLARITY_ADDITIVE,
ARCH_SIZEOF_GX_COLOR_INDEX * 16, 65535, 65535, GX_CINFO_SEP_LIN, "DeviceRGB"),
/* devn_params specific parameters */
{ 16, /* Bits per color - must match ncomp, depth, etc. above */
DeviceRGBComponents, /* Names of color model colorants */
3, /* Number colorants for RGB */
0, /* MaxSeparations has not been specified */
-1, /* PageSpotColors has not been specified */
{ 0 }, /* SeparationNames */
0, /* SeparationOrder names */
{0, 1, 2, 3, 4, 5, 6, 7 } /* Initial component SeparationOrder */
},
{ true }, /* equivalent CMYK colors for spot colors */
/* PSD device specific parameters */
psd_DEVICE_RGB, /* Color model */
GS_SOFT_MAX_SPOTS, /* max_spots */
false, /* colorants not locked */
GX_DOWNSCALER_PARAMS_DEFAULTS
};
/*
* PSD device with RGB process color model.
*/
const psd_device gs_psdrgbtags_device =
{
psd_device_body(psdtags_initialize_device_procs, "psdrgbtags",
ARCH_SIZEOF_GX_COLOR_INDEX, /* Number of components - need a nominal 1 bit for each */
GX_CINFO_POLARITY_ADDITIVE,
ARCH_SIZEOF_GX_COLOR_INDEX * 8, 255, 255, GX_CINFO_SEP_LIN, "DeviceRGB"),
/* devn_params specific parameters */
{ 8, /* Bits per color - must match ncomp, depth, etc. above */
DevRGBTComponents, /* Names of color model colorants */
3, /* Number colorants for RGB. Tags added to extra in DevRGBTComponents */
0, /* MaxSeparations has not been specified */
-1, /* PageSpotColors has not been specified */
{0}, /* SeparationNames */
0, /* SeparationOrder names */
{0, 1, 2, 3, 4, 5, 6, 7 },/* Initial component SeparationOrder */
1 /* Num reserved components */
},
{ true }, /* equivalent CMYK colors for spot colors */
/* PSD device specific parameters */
psd_DEVICE_RGBT, /* Color model */
GS_SOFT_MAX_SPOTS, /* max_spots */
false, /* colorants not locked */
GX_DOWNSCALER_PARAMS_DEFAULTS
};
/*
* PSD device with CMYK process color model and spot color support.
*/
static void
psdcmyk_initialize_device_procs(gx_device *dev)
{
psd_initialize_device_procs(dev);
set_dev_proc(dev, get_params, psd_get_params_cmyk);
set_dev_proc(dev, put_params, psd_put_params_cmyk);
set_dev_proc(dev, get_color_mapping_procs, get_psd_color_mapping_procs);
}
/*
* PSD device with CMYK process color model, spot color support, and tags.
*/
static void
psdcmyktag_initialize_device_procs(gx_device *dev)
{
psd_initialize_device_procs(dev);
set_dev_proc(dev, get_params, psd_get_params_cmyk);
set_dev_proc(dev, put_params, psd_put_params_cmyktag);
set_dev_proc(dev, get_color_mapping_procs, get_psd_color_mapping_procs);
}
const psd_device gs_psdcmyk_device =
{
psd_device_body(psdcmyk_initialize_device_procs, "psdcmyk",
ARCH_SIZEOF_GX_COLOR_INDEX, /* Number of components - need a nominal 1 bit for each */
GX_CINFO_POLARITY_SUBTRACTIVE,
ARCH_SIZEOF_GX_COLOR_INDEX * 8, /* 8 bits per component (albeit in planes) */
255, 255, GX_CINFO_SEP_LIN, "DeviceCMYK"),
/* devn_params specific parameters */
{ 8, /* Bits per color - must match ncomp, depth, etc. above */
DeviceCMYKComponents, /* Names of color model colorants */
4, /* Number colorants for CMYK */
0, /* MaxSeparations has not been specified */
-1, /* PageSpotColors has not been specified */
{0}, /* SeparationNames */
0, /* SeparationOrder names */
{0, 1, 2, 3, 4, 5, 6, 7 } /* Initial component SeparationOrder */
},
{ true }, /* equivalent CMYK colors for spot colors */
/* PSD device specific parameters */
psd_DEVICE_CMYK, /* Color model */
GS_SOFT_MAX_SPOTS, /* max_spots */
false, /* colorants not locked */
GX_DOWNSCALER_PARAMS_DEFAULTS
};
const psd_device gs_psdcmyktags_device =
{
psd_device_body(psdcmyktag_initialize_device_procs, "psdcmyktags",
ARCH_SIZEOF_GX_COLOR_INDEX, /* Number of components - need a nominal 1 bit for each */
GX_CINFO_POLARITY_SUBTRACTIVE,
ARCH_SIZEOF_GX_COLOR_INDEX * 8, /* 8 bits per component (albeit in planes) */
255, 255, GX_CINFO_SEP_LIN, "DeviceCMYK"),
/* devn_params specific parameters */
{ 8, /* Bits per color - must match ncomp, depth, etc. above */
DevCMYKTComponents, /* Names of color model colorants */
4, /* Number colorants for CMYK. Tags added to extra in DevCMYKTComponents */
0, /* MaxSeparations has not been specified */
-1, /* PageSpotColors has not been specified */
{0}, /* SeparationNames */
0, /* SeparationOrder names */
{0, 1, 2, 3, 4, 5, 6, 7 },/* Initial component SeparationOrder */
1 /* Num reserved components */
},
{ true }, /* equivalent CMYK colors for spot colors */
/* PSD device specific parameters */
psd_DEVICE_CMYKT, /* Color model */
GS_SOFT_MAX_SPOTS, /* max_spots */
false, /* colorants not locked */
GX_DOWNSCALER_PARAMS_DEFAULTS
};
const psd_device gs_psdcmyk16_device =
{
psd_device_body(psdcmyk_initialize_device_procs, "psdcmyk16",
ARCH_SIZEOF_GX_COLOR_INDEX, /* Number of components - need a nominal 1 bit for each */
GX_CINFO_POLARITY_SUBTRACTIVE,
ARCH_SIZEOF_GX_COLOR_INDEX * 16, /* 8 bits per component (albeit in planes) */
65535, 65535, GX_CINFO_SEP_LIN, "DeviceCMYK"),
/* devn_params specific parameters */
{ 16, /* Bits per color - must match ncomp, depth, etc. above */
DeviceCMYKComponents, /* Names of color model colorants */
4, /* Number colorants for CMYK */
0, /* MaxSeparations has not been specified */
-1, /* PageSpotColors has not been specified */
{ 0 }, /* SeparationNames */
0, /* SeparationOrder names */
{0, 1, 2, 3, 4, 5, 6, 7 } /* Initial component SeparationOrder */
},
{ true }, /* equivalent CMYK colors for spot colors */
/* PSD device specific parameters */
psd_DEVICE_CMYK, /* Color model */
GS_SOFT_MAX_SPOTS, /* max_spots */
false, /* colorants not locked */
GX_DOWNSCALER_PARAMS_DEFAULTS
};
const psd_device gs_psdcmyktags16_device =
{
psd_device_body(psdcmyktag_initialize_device_procs, "psdcmyktags16",
ARCH_SIZEOF_GX_COLOR_INDEX, /* Number of components - need a nominal 1 bit for each */
GX_CINFO_POLARITY_SUBTRACTIVE,
ARCH_SIZEOF_GX_COLOR_INDEX * 16, /* 8 bits per component (albeit in planes) */
65535, 65535, GX_CINFO_SEP_LIN, "DeviceCMYK"),
/* devn_params specific parameters */
{ 16, /* Bits per color - must match ncomp, depth, etc. above */
DevCMYKTComponents, /* Names of color model colorants */
4, /* Number colorants for CMYK. Tags added to extra in DevCMYKTComponents */
0, /* MaxSeparations has not been specified */
-1, /* PageSpotColors has not been specified */
{ 0 }, /* SeparationNames */
0, /* SeparationOrder names */
{0, 1, 2, 3, 4, 5, 6, 7 },/* Initial component SeparationOrder */
1 /* Num reserved components */
},
{ true }, /* equivalent CMYK colors for spot colors */
/* PSD device specific parameters */
psd_DEVICE_CMYKT, /* Color model */
GS_SOFT_MAX_SPOTS, /* max_spots */
false, /* colorants not locked */
GX_DOWNSCALER_PARAMS_DEFAULTS
};
/* Open the psd devices */
int
psd_prn_open(gx_device * pdev)
{
psd_device *pdev_psd = (psd_device *) pdev;
int code;
int k, nc;
#ifdef TEST_PAD_AND_ALIGN
pdev->pad = 5;
pdev->log2_align_mod = 6;
#endif
pdev_psd->warning_given = false;
#if ENABLE_COLOR_REPLACE
pdev_psd->color_replace_warning_given = false;
#endif
/* The default code thinks that any number of spots over 4 must mean
* that it's a CMYK space. Correct that for psdrgb and psdrgbtags. */
if (strcmp(pdev->dname, "psdrgb") == 0 || strcmp(pdev->dname, "psdrgbtags") == 0) {
if (pdev->icc_struct &&
pdev->icc_struct->device_profile[gsDEFAULTPROFILE]) {
rc_decrement(pdev->icc_struct->device_profile[gsDEFAULTPROFILE], "psd_prn_open");
}
code = gsicc_set_device_profile(pdev, pdev->memory,
(char *)DEFAULT_RGB_ICC, gsDEFAULTPROFILE);
if (code < 0)
return code;
}
/* For the planar device we need to set up the bit depth of each plane.
For other devices this is handled in check_device_separable where
we compute the bit shift for the components etc. */
for (k = 0; k < GS_CLIENT_COLOR_MAX_COMPONENTS; k++) {
pdev->color_info.comp_bits[k] = 8;
}
code = psd_spec_op(pdev, gxdso_adjust_colors, NULL, 0);
if (code < 0)
return code;
/* Push this to the max amount as a default if someone has not set it */
if (pdev_psd->devn_params.num_separation_order_names == 0)
for (k = 0; k < GS_CLIENT_COLOR_MAX_COMPONENTS; k++) {
pdev_psd->devn_params.separation_order_map[k] = k;
}
nc = pdev->color_info.num_components;
pdev->color_info.separable_and_linear = GX_CINFO_SEP_LIN;
set_linear_color_bits_mask_shift(pdev);
pdev->icc_struct->supports_devn = true;
code = gdev_prn_open_planar(pdev, nc);
return code;
}
/* 2007/05/04
psdgray device
*/
static void
gray_cs_to_psdgray_cm(const gx_device * dev, frac gray, frac out[])
{
out[0] = gray;
}
static void
rgb_cs_to_psdgray_cm(const gx_device * dev, const gs_gstate *pgs,
frac r, frac g, frac b, frac out[])
{
out[0] = color_rgb_to_gray(r, g, b, NULL);
}
static void
cmyk_cs_to_psdgray_cm(const gx_device * dev, frac c, frac m, frac y, frac k, frac out[])
{
out[0] = color_cmyk_to_gray(c, m, y, k, NULL);
}
/*
* The following procedures are used to map the standard color spaces into
* the color components for the psdrgb device.
*/
static void
gray_cs_to_psdrgb_cm(const gx_device * dev, frac gray, frac out[])
{
/* Previous code here has tried to set
* int i = ((psd_device *)dev)->devn_params.separations.num_separations;
* but during the fillpage at least that's 0, even for pages with
* separations on. The psdcmyk code seems to use num_components instead
* and that works, so move to that here too. */
int i = dev->color_info.num_components - 3;
out[0] = out[1] = out[2] = gray;
for(; i>0; i--) /* Clear spot colors */
out[2 + i] = 0;
}
static void
rgb_cs_to_psdrgb_cm(const gx_device * dev, const gs_gstate *pgs,
frac r, frac g, frac b, frac out[])
{
/* see note above */
int i = dev->color_info.num_components - 3;
out[0] = r;
out[1] = g;
out[2] = b;
for(; i>0; i--) /* Clear spot colors */
out[2 + i] = 0;
}
static void
cmyk_cs_to_psdrgb_cm(const gx_device * dev,
frac c, frac m, frac y, frac k, frac out[])
{
/* see note above */
int i = dev->color_info.num_components - 3;
color_cmyk_to_rgb(c, m, y, k, NULL, out, dev->memory);
for(; i>0; i--) /* Clear spot colors */
out[2 + i] = 0;
}
static void
cmyk_cs_to_psdrgbtags_cm(const gx_device * dev,
frac c, frac m, frac y, frac k, frac out[])
{
int ncomps = dev->color_info.num_components;
/* see note above */
int i = dev->color_info.num_components - 4;
color_cmyk_to_rgb(c, m, y, k, NULL, out, dev->memory);
for(; i>0; i--) /* Clear spot colors */
out[2 + i] = 0;
out[ncomps - 1] = (dev->graphics_type_tag & ~GS_DEVICE_ENCODES_TAGS);
}
/* Color mapping routines for the psdcmyk device */
static void
gray_cs_to_psdcmyk_cm(const gx_device * dev, frac gray, frac out[])
{
int * map = ((psd_device *) dev)->devn_params.separation_order_map;
gray_cs_to_devn_cm(dev, map, gray, out);
}
static void
rgb_cs_to_psdcmyk_cm(const gx_device * dev, const gs_gstate *pgs,
frac r, frac g, frac b, frac out[])
{
int * map = ((psd_device *) dev)->devn_params.separation_order_map;
rgb_cs_to_devn_cm(dev, map, pgs, r, g, b, out);
}
static void
cmyk_cs_to_psdcmyktags_cm(const gx_device *dev,
frac c, frac m, frac y, frac k, frac out[])
{
const gs_devn_params *devn = gx_devn_prn_ret_devn_params_const(dev);
const int *map = devn->separation_order_map;
int j;
int ncomps = dev->color_info.num_components;
if (devn->num_separation_order_names > 0) {
/* This is to set only those that we are using */
for (j = 0; j < ncomps; j++)
out[j] = 0;
for (j = 0; j < devn->num_separation_order_names; j++) {
switch (map[j]) {
case 0:
out[0] = c;
break;
case 1:
out[1] = m;
break;
case 2:
out[2] = y;
break;
case 3:
out[3] = k;
break;
default:
break;
}
}
} else {
cmyk_cs_to_devn_cm(dev, map, c, m, y, k, out);
}
/* And set the tags. At this point, the color values
are frac representation for the range [0.0 1.0]. We
need to encode the graphics type, which is 0 to 255
accordingly, as it goes through the same mappings on
its way to devn and then eventually to 8 or 16 bit values */
if (map[ncomps - 1] != GX_DEVICE_COLOR_MAX_COMPONENTS)
out[ncomps - 1] = (dev->graphics_type_tag & ~GS_DEVICE_ENCODES_TAGS);
}
static void
cmyk_cs_to_psdcmyk_cm(const gx_device * dev,
frac c, frac m, frac y, frac k, frac out[])
{
const gs_devn_params *devn = gx_devn_prn_ret_devn_params_const(dev);
const int *map = devn->separation_order_map;
int j;
if (devn->num_separation_order_names > 0) {
/* This is to set only those that we are using */
int ncomps = dev->color_info.num_components;
for (j = 0; j < ncomps; j++)
out[j] = 0;
for (j = 0; j < devn->num_separation_order_names; j++) {
switch (map[j]) {
case 0 :
out[0] = c;
break;
case 1:
out[1] = m;
break;
case 2:
out[2] = y;
break;
case 3:
out[3] = k;
break;
default:
break;
}
}
} else {
cmyk_cs_to_devn_cm(dev, map, c, m, y, k, out);
}
}
static void
cmyk_cs_to_spotn_cm(const gx_device * dev, frac c, frac m, frac y, frac k, frac out[])
{
psd_device *xdev = (psd_device *)dev;
int n = xdev->devn_params.separations.num_separations;
gcmmhlink_t link = xdev->cmyk_icc_link;
int i;
if (link != NULL) {
unsigned short in[4];
unsigned short tmp[MAX_CHAN];
int outn = xdev->cmyk_profile->num_comps_out;
in[0] = frac2ushort(c);
in[1] = frac2ushort(m);
in[2] = frac2ushort(y);
in[3] = frac2ushort(k);
gscms_transform_color_const(dev, link, &(in[0]),
&(tmp[0]), 2);
for (i = 0; i < outn; i++)
out[i] = ushort2frac(tmp[i]);
for (; i < n + 4; i++)
out[i] = 0;
} else {
/* If no profile given, assume CMYK */
out[0] = c;
out[1] = m;
out[2] = y;
out[3] = k;
for(i = 0; i < n; i++) /* Clear spot colors */
out[4 + i] = 0;
}
}
static void
gray_cs_to_spotn_cm(const gx_device * dev, frac gray, frac out[])
{
cmyk_cs_to_spotn_cm(dev, 0, 0, 0, (frac)(frac_1 - gray), out);
}
static void
rgb_cs_to_spotn_cm(const gx_device * dev, const gs_gstate *pgs,
frac r, frac g, frac b, frac out[])
{
psd_device *xdev = (psd_device *)dev;
int n = xdev->devn_params.separations.num_separations;
gcmmhlink_t link = xdev->rgb_icc_link;
int i;
if (link != NULL) {
unsigned short in[3];
unsigned short tmp[MAX_CHAN];
int outn = xdev->rgb_profile->num_comps_out;
in[0] = frac2ushort(r);
in[1] = frac2ushort(g);
in[2] = frac2ushort(b);
gscms_transform_color_const(dev, link, &(in[0]),
&(tmp[0]), 2);
for (i = 0; i < outn; i++)
out[i] = ushort2frac(tmp[i]);
for (; i < n + 4; i++)
out[i] = 0;
} else {
frac cmyk[4];
color_rgb_to_cmyk(r, g, b, pgs, cmyk, dev->memory);
cmyk_cs_to_spotn_cm(dev, cmyk[0], cmyk[1], cmyk[2], cmyk[3],
out);
}
}
static const gx_cm_color_map_procs psdGray_procs = {/* 2007/05/04 Test */
gray_cs_to_psdgray_cm, rgb_cs_to_psdgray_cm, cmyk_cs_to_psdgray_cm
};
static const gx_cm_color_map_procs psdRGB_procs = {
gray_cs_to_psdrgb_cm, rgb_cs_to_psdrgb_cm, cmyk_cs_to_psdrgb_cm
};
static const gx_cm_color_map_procs psdRGBtags_procs = {
gray_cs_to_psdrgb_cm, rgb_cs_to_psdrgb_cm, cmyk_cs_to_psdrgbtags_cm
};
static const gx_cm_color_map_procs psdCMYK_procs = {
gray_cs_to_psdcmyk_cm, rgb_cs_to_psdcmyk_cm, cmyk_cs_to_psdcmyk_cm
};
static const gx_cm_color_map_procs psdCMYKtags_procs = {
gray_cs_to_psdcmyk_cm, rgb_cs_to_psdcmyk_cm, cmyk_cs_to_psdcmyktags_cm
};
static const gx_cm_color_map_procs psdN_procs = {
gray_cs_to_spotn_cm, rgb_cs_to_spotn_cm, cmyk_cs_to_spotn_cm
};
/*
* These are the handlers for returning the list of color space
* to color model conversion routines.
*/
static const gx_cm_color_map_procs *
get_psdrgb_color_mapping_procs(const gx_device * dev, const gx_device **map_dev)
{
*map_dev = dev;
return &psdRGB_procs;
}
static const gx_cm_color_map_procs *
get_psdrgbtags_color_mapping_procs(const gx_device * dev, const gx_device **map_dev)
{
*map_dev = dev;
return &psdRGBtags_procs;
}
static const gx_cm_color_map_procs *
get_psd_color_mapping_procs(const gx_device * dev, const gx_device **map_dev)
{
const psd_device *xdev = (const psd_device *)dev;
*map_dev = dev;
if (xdev->color_model == psd_DEVICE_RGB)
return &psdRGB_procs;
else if (xdev->color_model == psd_DEVICE_RGBT)
return &psdRGBtags_procs;
else if (xdev->color_model == psd_DEVICE_CMYK)
return &psdCMYK_procs;
else if (xdev->color_model == psd_DEVICE_CMYKT)
return &psdCMYKtags_procs;
else if (xdev->color_model == psd_DEVICE_N)
return &psdN_procs;
else if (xdev->color_model == psd_DEVICE_GRAY)
return &psdGray_procs;
else
return NULL;
}
/*
* Convert a gx_color_index to RGB.
*/
static int
psd_map_color_rgb(gx_device *dev, gx_color_index color, gx_color_value rgb[3])
{
psd_device *xdev = (psd_device *)dev;
if (xdev->color_model == psd_DEVICE_RGB)
return gx_devn_prn_decode_color(dev, color, rgb);
if (xdev->color_model == psd_DEVICE_RGBT)
return gx_devn_prn_decode_color(dev, color>>8, rgb);
/* TODO: return reasonable values. */
rgb[0] = 0;
rgb[1] = 0;
rgb[2] = 0;
return 0;
}
/* Get parameters. We provide a default CRD. */
static int
psd_get_params_generic(gx_device * pdev, gs_param_list * plist, int cmyk)
{
psd_device *xdev = (psd_device *)pdev;
int code;
code = gx_devn_prn_get_params(pdev, plist);
if (code < 0)
return code;
code = gx_downscaler_write_params(plist, &xdev->downscale,
cmyk ? GX_DOWNSCALER_PARAMS_TRAP : 0);
if (code < 0)
return code;
code = param_write_int(plist, "MaxSpots", &xdev->max_spots);
if (code < 0)
return code;
code = param_write_bool(plist, "LockColorants", &xdev->lock_colorants);
return code;
}
static int
psd_get_params(gx_device * pdev, gs_param_list * plist)
{
return psd_get_params_generic(pdev, plist, 0);
}
static int
psd_get_params_cmyk(gx_device * pdev, gs_param_list * plist)
{
return psd_get_params_generic(pdev, plist, 1);
}
/* Set parameters. We allow setting the number of bits per component. */
static int
psd_put_params_generic(gx_device * pdev, gs_param_list * plist, int cmyk)
{
psd_device * const pdevn = (psd_device *) pdev;
int code = 0, max_spots = pdevn->max_spots;
code = gx_downscaler_read_params(plist, &pdevn->downscale,
cmyk ? GX_DOWNSCALER_PARAMS_TRAP : 0);
if (code < 0)
return code;
switch (code = param_read_bool(plist, "LockColorants", &(pdevn->lock_colorants))) {
case 0:
break;
case 1:
break;
default:
param_signal_error(plist, "LockColorants", code);
return code;
}
switch (code = param_read_int(plist,
"MaxSpots",
&max_spots)) {
case 0:
if (max_spots >= 0 && max_spots <= GS_CLIENT_COLOR_MAX_COMPONENTS-4) {
pdevn->max_spots = max_spots;
break;
}
emprintf1(pdevn->memory, "MaxSpots must be between 0 and %d\n",
GS_CLIENT_COLOR_MAX_COMPONENTS-4);
code = gs_note_error(gs_error_rangecheck);
/* fall through */
default:
param_signal_error(plist, "MaxSpots", code);
return code;
case 1:
break;
}
/* handle the standard DeviceN related parameters */
if (code >= 0)
code = gx_devn_prn_put_params(pdev, plist);
return code;
}
static int
psd_put_params(gx_device * pdev, gs_param_list * plist)
{
return psd_put_params_generic(pdev, plist, 0);
}
static int
psd_put_params_cmyk(gx_device * pdev, gs_param_list * plist)
{
return psd_put_params_generic(pdev, plist, 1);
}
static int
psd_put_params_cmyktag(gx_device *pdev, gs_param_list* plist)
{
pdev->graphics_type_tag |= GS_DEVICE_ENCODES_TAGS;
return psd_put_params_generic(pdev, plist, 1);
}
static int
psd_put_params_tag(gx_device *pdev, gs_param_list* plist)
{
pdev->graphics_type_tag |= GS_DEVICE_ENCODES_TAGS;
return psd_put_params_generic(pdev, plist, 0);
}
/*
* This routine will check to see if the color component name match those
* that are available amoung the current device's color components.
*
* Parameters:
* dev - pointer to device data structure.
* pname - pointer to name (zero termination not required)
* nlength - length of the name
*
* This routine returns a positive value (0 to n) which is the device colorant
* number if the name is found. It returns a negative value if not found.
*/
static int
psd_get_color_comp_index(gx_device * dev, const char * pname,
int name_size, int component_type)
{
int index;
psd_device *pdev = (psd_device *)dev;
if (strncmp(pname, "None", name_size) == 0) return -1;
index = gx_devn_prn_get_color_comp_index(dev, pname, name_size,
component_type);
/* This is a one shot deal. That is it will simply post a notice once that
some colorants will be converted due to a limit being reached. It will
not list names of colorants since then I would need to keep track of
which ones I have already mentioned. Also, if someone is fooling with
num_order, then this warning is not given since they should know what
is going on already */
if (index < 0 && component_type == SEPARATION_NAME &&
pdev->warning_given == false &&
pdev->devn_params.num_separation_order_names == 0) {
dmlprintf(dev->memory, "**** Max spot colorants reached.\n");
dmlprintf(dev->memory, "**** Some colorants will be converted to equivalent CMYK values.\n");
dmlprintf(dev->memory, "**** If this is a Postscript file, try using the -dMaxSpots= option.\n");
pdev->warning_given = true;
}
return index;
}
/* ------ Private definitions ------ */
/* All two-byte quantities are stored MSB-first! */
#if ARCH_IS_BIG_ENDIAN
# define assign_u16(a,v) a = (v)
# define assign_u32(a,v) a = (v)
#else
# define assign_u16(a,v) a = ((v) >> 8) + ((v) << 8)
# define assign_u32(a,v) a = (((v) >> 24) & 0xff) + (((v) >> 8) & 0xff00) + (((v) & 0xff00) << 8) + (((v) & 0xff) << 24)
#endif
int
psd_setup(psd_write_ctx *xc, gx_devn_prn_device *dev, gp_file *file, int w, int h)
{
int i;
int spot_count;
psd_device *pdev_psd = (psd_device *)dev;
bool has_tags = (pdev_psd->color_model == psd_DEVICE_CMYKT ||
pdev_psd->color_model == psd_DEVICE_RGBT);
xc->f = file;
#define NUM_CMYK_COMPONENTS 4
for (i = 0; i < GX_DEVICE_COLOR_MAX_COMPONENTS; i++) {
if (dev->devn_params.std_colorant_names[i] == NULL)
break;
}
xc->base_num_channels = dev->devn_params.num_std_colorant_names;
xc->num_channels = i;
if (strcmp(dev->dname, "psdcmykog") != 0) {
/* Note: num_separation_order_names is only set if
SeparationColorNames was setup. If this was not set,
we need may need to make use of the ICCOutputColors
and page spot colors for our setup. */
if (dev->devn_params.num_separation_order_names == 0) {
/* Page spot colors has been truncated to ensure max
colorants of the target device is not exceeded. This
is set if PDF file was encountered and should be used.
Also make sure PS file does not exceed limit of device.
However, if ICCOutputColors was specified, that should
take precedence. */
if (dev->devn_params.page_spot_colors > 0 &&
dev->icc_struct->spotnames == NULL)
xc->n_extra_channels = dev->devn_params.page_spot_colors;
else {
if (dev->devn_params.separations.num_separations <= (dev->color_info.max_components - NUM_CMYK_COMPONENTS))
xc->n_extra_channels = dev->devn_params.separations.num_separations;
else
xc->n_extra_channels = dev->color_info.max_components - NUM_CMYK_COMPONENTS;
}
} else {
/* Have to figure out how many in the order list were not std
colorants */
spot_count = 0;
for (i = 0; i < dev->devn_params.num_separation_order_names; i++) {
if (dev->devn_params.separation_order_map[i] >= NUM_CMYK_COMPONENTS) {
spot_count++;
}
}
xc->n_extra_channels = spot_count;
}
} else {
xc->n_extra_channels = 0;
}
xc->width = w;
xc->height = h;
/*
* Determine the order of the output components. This is based upon
* the SeparationOrder parameter. This parameter can be used to select
* which planes are actually imaged. For the process color model channels
* we image the channels which are requested. Non requested process color
* model channels are simply filled with white. For spot colors we only
* image the requested channels.
*/
for (i = 0; i < xc->num_channels + xc->n_extra_channels; i++) {
xc->chnl_to_position[i] = i;
xc->chnl_to_orig_sep[i] = i;
}
/* If we had a specify order name, then we may need to adjust things */
if (strcmp(dev->dname, "psdcmykog") != 0) {
if (dev->devn_params.num_separation_order_names > 0) {
for (i = 0; i < dev->devn_params.num_separation_order_names; i++) {
int sep_order_num = dev->devn_params.separation_order_map[i];
if (sep_order_num >= NUM_CMYK_COMPONENTS) {
xc->chnl_to_position[xc->num_channels] = sep_order_num;
xc->chnl_to_orig_sep[xc->num_channels++] = sep_order_num;
}
}
} else {
/* If ICCOutputColors specified then just use that ordering, which
has already been set. */
cmm_dev_profile_t *profile_struct;
int code;
code = dev_proc(dev, get_profile)((gx_device *)dev, &profile_struct);
if (code == 0 && profile_struct->spotnames != NULL)
xc->num_channels += dev->devn_params.separations.num_separations;
else {
/* No order specified, map them alpabetically */
/* This isn't at all speed critical -- only runs once per page and */
/* there are never very many spot colors, so just search in a loop */
/* If the device has tags, then that goes at the end, after all the
spot colors */
const char *prev = " ";
int prev_size = 1;
xc->num_channels += xc->n_extra_channels;
for (i=xc->base_num_channels + has_tags; i < xc->num_channels; i++) {
int j;
const char *curr = "\377";
int curr_size = 1;
bool compare;
for (j=xc->base_num_channels + has_tags; j < xc->num_channels; j++) {
devn_separation_name *separation_name;
separation_name = &(dev->devn_params.separations.names[j - xc->base_num_channels]);
compare = strncmp((const char*) separation_name->data, curr, min(curr_size, separation_name->size));
if (compare < 0 || (compare == 0 && separation_name->size < curr_size)) {
compare = strncmp((const char*) separation_name->data, prev, min(prev_size, separation_name->size));
if (compare > 0 || (compare == 0 && separation_name->size > prev_size)) {
xc->chnl_to_position[i] = j;
xc->chnl_to_orig_sep[i] = j;
curr = (const char*) separation_name->data;
curr_size = separation_name->size;
}
}
}
prev = curr; /* next color has to sort after this one */
prev_size = curr_size;
}
}
}
}
if (has_tags) {
xc->chnl_to_position[xc->num_channels - 1] = dev->color_info.num_components - 1;
xc->chnl_to_orig_sep[xc->num_channels - 1] = dev->color_info.num_components - 1;
}
return 0;
}
int
psd_write(psd_write_ctx *xc, const byte *buf, int size) {
int code;
code = gp_fwrite(buf, 1, size, xc->f);
if (code < 0)
return code;
return 0;
}
int
psd_write_8(psd_write_ctx *xc, byte v)
{
return psd_write(xc, (byte *)&v, 1);
}
int
psd_write_16(psd_write_ctx *xc, bits16 v)
{
bits16 buf;
assign_u16(buf, v);
return psd_write(xc, (byte *)&buf, 2);
}
int
psd_write_32(psd_write_ctx *xc, bits32 v)
{
bits32 buf;
assign_u32(buf, v);
return psd_write(xc, (byte *)&buf, 4);
}
static fixed_colorant_name
get_sep_name(gx_devn_prn_device *pdev, int n)
{
fixed_colorant_name p = NULL;
int i;
for (i = 0; i <= n; i++) {
p = pdev->devn_params.std_colorant_names[i];
if (p == NULL)
break;
}
return p;
}
static inline void
psd_write_src_spot_names(psd_write_ctx *xc, gx_devn_prn_device *pdev, int chan_idx, bool has_tags)
{
int sep_num;
const devn_separation_name *separation_name;
for (; chan_idx < xc->num_channels; chan_idx++) {
sep_num = xc->chnl_to_orig_sep[chan_idx] - xc->base_num_channels - has_tags;
separation_name = &(pdev->devn_params.separations.names[sep_num]);
psd_write_8(xc, (byte)separation_name->size);
psd_write(xc, separation_name->data, separation_name->size);
}
}
static inline void
psd_write_std_extra_names(psd_write_ctx *xc, gx_devn_prn_device *pdev, int chan_idx)
{
for (; chan_idx < xc->num_channels; chan_idx++) {
int len;
fixed_colorant_name n = pdev->devn_params.std_colorant_names[chan_idx];
if (n == NULL)
break;
len = strlen(n);
psd_write_8(xc, (byte)len);
psd_write(xc, (const byte*)n, len);
}
}
int
psd_write_header(psd_write_ctx* xc, gx_devn_prn_device* pdev)
{
int code = 0;
int num_channels = xc->num_channels;
int bpc = pdev->devn_params.bitspercomponent;
int chan_idx;
int chan_names_len = 0;
int sep_num;
const devn_separation_name *separation_name;
cmm_dev_profile_t *profile_struct;
cmm_profile_t *dev_profile;
int profile_resource_size;
psd_device *pdev_psd = (psd_device*)pdev;
bool has_tags = (pdev_psd->color_model == psd_DEVICE_CMYKT ||
pdev_psd->color_model == psd_DEVICE_RGBT);
int extra_std_colors = 0;
int model;
psd_write(xc, (const byte*)"8BPS", 4); /* Signature */
psd_write_16(xc, 1); /* Version - Always equal to 1*/
/* Reserved 6 Bytes - Must be zero */
psd_write_32(xc, 0);
psd_write_16(xc, 0);
psd_write_16(xc, (bits16)num_channels); /* Channels (2 Bytes) - Supported range is 1 to 56 */
psd_write_32(xc, xc->height); /* Rows */
psd_write_32(xc, xc->width); /* Columns */
psd_write_16(xc, bpc); /* Depth - 1, 8 and 16 */
/* Modes: Bitmap=0, Grayscale=1, RGB=3, CMYK=4 MultiChannel=7 Lab=9 */
model = xc->base_num_channels;
if (pdev_psd->color_model == psd_DEVICE_RGBT)
model = 3;
psd_write_16(xc, (bits16)model); /* We use 1, 3 or 4. */
/* Color Mode Data. Only used for indexed and duotone */
psd_write_32(xc, 0);
/* Resources */
/* ICC profile */
code = dev_proc(pdev, get_profile)((gx_device*)pdev, &profile_struct);
if (code < 0) {
dev_profile = NULL;
profile_resource_size = 0;
} else {
dev_profile = profile_struct->device_profile[GS_DEFAULT_DEVICE_PROFILE];
/* Resource has to be padded to even size */
profile_resource_size = dev_profile->buffer_size + dev_profile->buffer_size % 2;
}
/* RJW: This seems to me like a horrible hack.
* Rather than the devn 'std_colorant_names' list having just 'num_std_colorant_names'
* entries, it can have more. For tags devices, it will include "Tags". For "cmykog"
* it will include "Orange" and "Green".
* The rest of the system will ignore these extra names, but *our* device knows that
* *our* devn params will have been setup in this special way.
*
* Note, this can be very confusing, as the uninitiated might think that our
* components were set up to be, say:
* C=0, M=1, Y=2, K=3, T=4, Spot1=5, Spot2=6 etc
* when actually they are:
* C=0, M=1, Y=2, K=3, Spot1=4, Spot2=5, ... T=n-1
*/
/* Channel Names size computation -- this will get the "Tags" name */
for (chan_idx = xc->base_num_channels; chan_idx < xc->num_channels; chan_idx++) {
fixed_colorant_name n = pdev->devn_params.std_colorant_names[chan_idx];
if (n == NULL)
break;
chan_names_len += strlen(n) + 1;
}
extra_std_colors = chan_idx - xc->base_num_channels;
for (; chan_idx < xc->num_channels; chan_idx++) {
sep_num = xc->chnl_to_orig_sep[chan_idx] - xc->base_num_channels - has_tags;
separation_name = &(pdev->devn_params.separations.names[sep_num]);
chan_names_len += (separation_name->size + 1);
}
/* Length of resource section */
psd_write_32(xc, 12 + (chan_names_len + (chan_names_len % 2))
+ (12 + (14 * (xc->num_channels - xc->base_num_channels)))
+ (profile_resource_size ? (12 + profile_resource_size) : 0) + 28);
/* Channel names resource */
psd_write(xc, (const byte *)"8BIM", 4);
psd_write_16(xc, 1006); /* 0x03EE */
psd_write_16(xc, 0); /* PString */
psd_write_32(xc, chan_names_len + (chan_names_len % 2));
/* If it has tags, do the spots first (if there are any),
then the tags. We will need to rework this if we were
to add tags to psdcmykog or similar such device that
has pre-defined spots with the tags plane */
if (has_tags) {
chan_idx = xc->base_num_channels + extra_std_colors;
psd_write_src_spot_names(xc, pdev, chan_idx, has_tags);
chan_idx = xc->base_num_channels;
psd_write_std_extra_names(xc, pdev, chan_idx);
} else {
chan_idx = xc->base_num_channels;
psd_write_std_extra_names(xc, pdev, chan_idx);
chan_idx = xc->base_num_channels + extra_std_colors;
psd_write_src_spot_names(xc, pdev, chan_idx, has_tags);
}
if (chan_names_len % 2)
psd_write_8(xc, 0); /* pad */
/* DisplayInfo - Colors for each spot channels resource*/
psd_write(xc, (const byte *)"8BIM", 4);
psd_write_16(xc, 1007); /* 0x03EF */
psd_write_16(xc, 0); /* PString */
psd_write_32(xc, 14 * (xc->num_channels - xc->base_num_channels)); /* Length */
for (chan_idx = xc->base_num_channels; chan_idx < xc->num_channels; chan_idx++) {
sep_num = xc->chnl_to_orig_sep[chan_idx] - xc->base_num_channels;
psd_write_16(xc, 02); /* CMYK */
/* PhotoShop stores all component values as if they were additive. */
if (pdev->equiv_cmyk_colors.color[sep_num].color_info_valid) {
#define convert_color(component) ((bits16)((65535 * ((double)\
(frac_1 - pdev->equiv_cmyk_colors.color[sep_num].component)) / frac_1)))
psd_write_16(xc, convert_color(c)); /* Cyan */
psd_write_16(xc, convert_color(m)); /* Magenta */
psd_write_16(xc, convert_color(y)); /* Yellow */
psd_write_16(xc, convert_color(k)); /* Black */
#undef convert_color
} else {
/* This is a bit of a hack, introduced for the psdcmykog device
* so that we get a reasonable approximation for the colors out
* even when used without the appropriate profile. */
fixed_colorant_name sepname = get_sep_name(pdev, chan_idx);
if (sepname && !strcmp(sepname, "Artifex Orange")) {
psd_write_16(xc, 0xfbde); /* Cyan */
psd_write_16(xc, 0x7376); /* Magenta */
psd_write_16(xc, 0x0000); /* Yellow */
psd_write_16(xc, 0xffff); /* Black */
} else if (sepname && !strcmp(sepname, "Artifex Green")) {
psd_write_16(xc, 0x0000); /* Cyan */
psd_write_16(xc, 0xe33d); /* Magenta */
psd_write_16(xc, 0x0000); /* Yellow */
psd_write_16(xc, 0xf8c8); /* Black */
} else {
/* Else set C = M = Y = 0, K = 1 */
psd_write_16(xc, 65535); /* Cyan */
psd_write_16(xc, 65535); /* Magenta */
psd_write_16(xc, 65535); /* Yellow */
psd_write_16(xc, 0); /* Black */
}
}
psd_write_16(xc, 0); /* Opacity 0 to 100 */
psd_write_8(xc, 2); /* Don't know */
psd_write_8(xc, 0); /* Padding - Always Zero */
}
/* Image resolution resource */
psd_write(xc, (const byte *)"8BIM", 4);
psd_write_16(xc, 1005); /* 0x03ED */
psd_write_16(xc, 0); /* PString */
psd_write_32(xc, 16); /* Length */
/* Resolution is specified as a fixed 16.16 bits */
psd_write_32(xc, (int) (pdev->HWResolution[0] * 0x10000 * xc->width / pdev->width + 0.5));
psd_write_16(xc, 1); /* width: 1 --> resolution is pixels per inch */
psd_write_16(xc, 1); /* width: 1 --> resolution is pixels per inch */
psd_write_32(xc, (int) (pdev->HWResolution[1] * 0x10000 * xc->height / pdev->height + 0.5));
psd_write_16(xc, 1); /* height: 1 --> resolution is pixels per inch */
psd_write_16(xc, 1); /* height: 1 --> resolution is pixels per inch */
/* ICC Profile resource */
if (profile_resource_size) {
psd_write(xc, (const byte*)"8BIM", 4);
psd_write_16(xc, 1039); /* 0x040F */
psd_write_16(xc, 0); /* PString */
psd_write_32(xc, profile_resource_size);
psd_write(xc, dev_profile->buffer, dev_profile->buffer_size);
if (dev_profile->buffer_size % 2)
psd_write_8(xc, 0);
}
/* Layer and Mask information */
psd_write_32(xc, 0); /* No layer or mask information */
/* Compression: 0=None, 1=RLE/PackBits, 2=Deflate 3=Defalte+Prediction */
psd_write_16(xc, 0);
return code;
}
/*
* Close device and clean up ICC structures.
*/
static int
psd_prn_close(gx_device *dev)
{
psd_device * const xdev = (psd_device *) dev;
if (xdev->cmyk_icc_link != NULL) {
gscms_release_link(xdev->cmyk_icc_link);
rc_decrement(xdev->cmyk_profile, "psd_prn_close");
}
if (xdev->rgb_icc_link != NULL) {
gscms_release_link(xdev->rgb_icc_link);
rc_decrement(xdev->rgb_profile, "psd_prn_close");
}
if (xdev->output_icc_link != NULL) {
gscms_release_link(xdev->output_icc_link);
rc_decrement(xdev->output_profile, "psd_prn_close");
}
return gdev_prn_close(dev);
}
/*
* Output the image data for the PSD device. The data for the PSD is
* written in separate planes. If the device is psdrgb then we simply
* write three planes of RGB data. The DeviceN parameters (SeparationOrder,
* SeparationCOlorNames, and MaxSeparations) are not applied to the psdrgb
* device.
*
* The DeviceN parameters are applied to the psdcmyk device. If the
* SeparationOrder parameter is not specified then first we write out the data
* for the CMYK planes and then any separation planes. If the SeparationOrder
* parameter is specified, then things are more complicated. Logically we
* would simply write the planes specified by the SeparationOrder data.
* However Photoshop expects there to be CMYK data. First we will write out
* four planes of data for CMYK. If any of these colors are present in the
* SeparationOrder data then the plane data will contain the color information.
* If a color is not present then the plane data will be zero. After the CMYK
* data, we will write out any separation data which is specified in the
* SeparationOrder data.
*/
static int
psd_write_image_data(psd_write_ctx *xc, gx_device_printer *pdev)
{
psd_device *psd_dev = (psd_device *)pdev;
int bpc = psd_dev->devn_params.bitspercomponent;
int raster_plane = bitmap_raster(pdev->width * bpc);
byte *planes[GS_CLIENT_COLOR_MAX_COMPONENTS];
int code = 0;
int i, j;
byte *sep_line;
int base_num_channels = xc->base_num_channels;
int chan_idx;
byte * unpacked;
int num_comp = xc->num_channels;
gs_get_bits_params_t params = { 0 };
gx_downscaler_t ds = { NULL };
int octets_per_component = bpc >> 3;
int octets_per_line = xc->width * octets_per_component;
/* Return planar data */
params.options = (GB_RETURN_POINTER | GB_RETURN_COPY |
GB_ALIGN_STANDARD | GB_OFFSET_0 | GB_RASTER_STANDARD |
GB_PACKING_PLANAR | GB_COLORS_NATIVE | GB_ALPHA_NONE);
params.x_offset = 0;
params.raster = bitmap_raster(pdev->width * pdev->color_info.depth);
sep_line = gs_alloc_bytes(pdev->memory, octets_per_line, "psd_write_sep_line");
for (chan_idx = 0; chan_idx < num_comp; chan_idx++) {
int data_pos = xc->chnl_to_position[chan_idx];
planes[chan_idx] = gs_alloc_bytes(pdev->memory, raster_plane,
"psd_write_sep_line");
params.data[data_pos] = planes[chan_idx];
if (params.data[data_pos] == NULL)
return_error(gs_error_VMerror);
}
if (sep_line == NULL)
return_error(gs_error_VMerror);
code = gx_downscaler_init_planar(&ds, (gx_device *)pdev,
bpc, bpc, pdev->color_info.num_components,
&psd_dev->downscale,
¶ms);
if (code < 0)
goto cleanup;
/* Print the output planes */
for (j = 0; j < xc->height; ++j) {
code = gx_downscaler_get_bits_rectangle(&ds, ¶ms, j);
if (code < 0)
goto cleanup;
for (chan_idx = 0; chan_idx < num_comp; chan_idx++) {
int data_pos = xc->chnl_to_position[chan_idx];
if (data_pos >= 0) {
unpacked = params.data[data_pos];
if (base_num_channels == 3 && chan_idx < 3) {
memcpy(sep_line, unpacked, octets_per_line);
} else if (octets_per_component == 1) {
for (i = 0; i < xc->width; ++i) {
sep_line[i] = 255 - unpacked[i];
}
} else { /* octets_per_component == 2 */
for (i = 0; i < xc->width; ++i) {
((unsigned short *)sep_line)[i] = 65535 - ((unsigned short *)unpacked)[i];
}
}
psd_write(xc, sep_line, octets_per_line);
} else if (chan_idx < NUM_CMYK_COMPONENTS) {
/* Write empty process color in the area */
memset(sep_line,255,octets_per_line);
psd_write(xc, sep_line, octets_per_line);
}
code = gp_fseek(xc->f, ((gs_offset_t)xc->height-1) * octets_per_line, SEEK_CUR);
if (code < 0) {
code = gs_note_error(gs_error_ioerror);
goto cleanup;
}
}
if (j < xc->height-1) {
code = gp_fseek(xc->f, -((gs_offset_t)num_comp * xc->height - 1) * octets_per_line, SEEK_CUR);
if (code < 0) {
code = gs_note_error(gs_error_ioerror);
goto cleanup;
}
}
}
cleanup:
gx_downscaler_fin(&ds);
gs_free_object(pdev->memory, sep_line, "psd_write_sep_line");
for (chan_idx = 0; chan_idx < num_comp; chan_idx++) {
gs_free_object(pdev->memory, planes[chan_idx],
"psd_write_image_data");
}
return code;
}
bool
psd_allow_multiple_pages (gx_device_printer *pdev)
{
psd_device *psd_dev = (psd_device *)pdev;
int code;
const char *fmt;
bool retval = true;
gs_parsed_file_name_t parsed;
if (strcmp(gp_null_file_name, psd_dev->fname) == 0) {
/* If the output is discarded, it doesn't matter whether
* the file is format valid or not
*/
retval = true;
}
else {
code = gx_parse_output_file_name(&parsed, &fmt, psd_dev->fname,
strlen(psd_dev->fname), psd_dev->memory);
if (code < 0 || (fmt == NULL && psd_dev->PageCount > 0)) {
retval = false;
}
}
return retval;
}
static int
psd_print_page(gx_device_printer *pdev, gp_file *file)
{
psd_write_ctx xc;
gx_devn_prn_device *devn_dev = (gx_devn_prn_device *)pdev;
psd_device *psd_dev = (psd_device *)pdev;
int code = 0;
if (!psd_allow_multiple_pages(pdev)) {
emprintf(pdev->memory, "Use of the %%d format is required to output more than one page to PSD\nSee doc/Devices.htm#PSD for details\n\n");
code = gs_note_error(gs_error_ioerror);
}
else {
code = psd_setup(&xc, devn_dev, file,
gx_downscaler_scale(pdev->width, psd_dev->downscale.downscale_factor),
gx_downscaler_scale(pdev->height, psd_dev->downscale.downscale_factor));
if (code >= 0)
code = psd_write_header(&xc, devn_dev);
if (code >= 0)
code = psd_write_image_data(&xc, pdev);
}
return code;
}
|