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
|
/* Copyright (C) 2001-2012 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., 7 Mt. Lassen Drive - Suite A-134, San Rafael,
CA 94903, U.S.A., +1(415)492-9861, for further information.
*/
/* PostScript-writing driver */
#include "math_.h"
#include "memory_.h"
#include "time_.h"
#include "gx.h"
#include "gserrors.h"
#include "gscdefs.h"
#include "gsmatrix.h" /* for gsiparam.h */
#include "gsiparam.h"
#include "gsline.h"
#include "gsparam.h"
#include "gxdevice.h"
#include "gscspace.h"
#include "gxdcolor.h"
#include "gxpath.h"
#include "spprint.h"
#include "strimpl.h"
#include "sstring.h"
#include "sa85x.h"
#include "gdevpsdf.h"
#include "gdevpsu.h"
/* Current ProcSet version */
#define PSWRITE_PROCSET_VERSION 1
/* Guaranteed size of operand stack accoeding to PLRM */
#define MAXOPSTACK 500
static int psw_open_printer(gx_device * dev);
static int psw_close_printer(gx_device * dev);
/* ---------------- Device definition ---------------- */
/* Device procedures */
static dev_proc_open_device(psw_open);
static dev_proc_output_page(psw_output_page);
static dev_proc_close_device(psw_close);
static dev_proc_fill_rectangle(psw_fill_rectangle);
static dev_proc_copy_mono(psw_copy_mono);
static dev_proc_copy_color(psw_copy_color);
static dev_proc_put_params(psw_put_params);
static dev_proc_get_params(psw_get_params);
static dev_proc_fill_path(psw_fill_path);
static dev_proc_stroke_path(psw_stroke_path);
static dev_proc_fill_mask(psw_fill_mask);
static dev_proc_begin_image(psw_begin_image);
#define X_DPI 720
#define Y_DPI 720
typedef struct psw_path_state_s {
int num_points; /* # of points since last non-lineto */
int move; /* 1 iff last non-lineto was moveto, else 0 */
gs_point dprev[2]; /* line deltas before previous point, */
/* if num_points - move >= 2 */
} psw_path_state_t;
typedef struct psw_image_params_s {
gx_bitmap_id id;
ushort width, height;
} psw_image_params_t;
typedef struct gx_device_pswrite_s {
gx_device_psdf_common;
/* LanguageLevel in pswrite_common is settable. */
gx_device_pswrite_common_t pswrite_common;
#define LanguageLevel_default 2.0
#define psdf_version_default psdf_version_level2
/* End of parameters */
bool first_page;
psdf_binary_writer *image_writer;
#define image_stream image_writer->strm
#define image_cache_size 197
#define image_cache_reprobe_step 121
psw_image_params_t image_cache[image_cache_size];
bool cache_toggle;
struct pf_ {
gs_int_rect rect;
gx_color_index color;
} page_fill;
/* Temporary state while writing a path */
psw_path_state_t path_state;
} gx_device_pswrite;
/* GC descriptor and procedures */
gs_private_st_suffix_add1_final(st_device_pswrite, gx_device_pswrite,
"gx_device_pswrite", device_pswrite_enum_ptrs,
device_pswrite_reloc_ptrs, gx_device_finalize,
st_device_psdf, image_writer);
#define psw_procs\
{ psw_open,\
gx_upright_get_initial_matrix,\
NULL, /* sync_output */\
psw_output_page,\
psw_close,\
gx_default_rgb_map_rgb_color,\
gx_default_rgb_map_color_rgb,\
psw_fill_rectangle,\
NULL, /* tile_rectangle */\
psw_copy_mono,\
psw_copy_color,\
NULL, /* draw_line */\
psdf_get_bits,\
psw_get_params,\
psw_put_params,\
NULL, /* map_cmyk_color */\
NULL, /* get_xfont_procs */\
NULL, /* get_xfont_device */\
NULL, /* map_rgb_alpha_color */\
gx_page_device_get_page_device,\
NULL, /* get_alpha_bits */\
NULL, /* copy_alpha */\
NULL, /* get_band */\
NULL, /* copy_rop */\
psw_fill_path,\
psw_stroke_path,\
psw_fill_mask,\
gdev_vector_fill_trapezoid,\
gdev_vector_fill_parallelogram,\
gdev_vector_fill_triangle,\
NULL /****** WRONG ******/, /* draw_thin_line */\
psw_begin_image,\
NULL, /* image_data */\
NULL, /* end_image */\
NULL, /* strip_tile_rectangle */\
NULL,/******psw_strip_copy_rop******/\
NULL, /* get_clipping_box */\
NULL, /* begin_typed_image */\
psdf_get_bits_rectangle,\
NULL, /* map_color_rgb_alpha */\
psdf_create_compositor\
}
const gx_device_pswrite gs_pswrite_device = {
std_device_dci_type_body(gx_device_pswrite, 0, "pswrite",
&st_device_pswrite,
DEFAULT_WIDTH_10THS * X_DPI / 10,
DEFAULT_HEIGHT_10THS * Y_DPI / 10,
X_DPI, Y_DPI, 3, 24, 255, 255, 256, 256),
psw_procs,
psdf_initial_values(psdf_version_default, 1 /*true */ ), /* (ASCII85EncodePages) */
PSWRITE_COMMON_VALUES(LanguageLevel_default, /* LanguageLevel */
0 /*false*/, /* ProduceEPS */
PSWRITE_PROCSET_VERSION /* ProcSet_version */)
};
const gx_device_pswrite gs_epswrite_device = {
std_device_dci_type_body(gx_device_pswrite, 0, "epswrite",
&st_device_pswrite,
DEFAULT_WIDTH_10THS * X_DPI / 10,
DEFAULT_HEIGHT_10THS * Y_DPI / 10,
X_DPI, Y_DPI, 3, 24, 255, 255, 256, 256),
psw_procs,
psdf_initial_values(psdf_version_default, 1 /*true */ ), /* (ASCII85EncodePages) */
PSWRITE_COMMON_VALUES(LanguageLevel_default, /* LanguageLevel */
1 /*true*/, /* ProduceEPS */
PSWRITE_PROCSET_VERSION /* ProcSet_version */)
};
/* Vector device implementation */
static int
psw_beginpage(gx_device_vector * vdev),
psw_can_handle_hl_color(gx_device_vector * vdev, const gs_imager_state * pis,
const gx_drawing_color * pdc),
psw_setcolors(gx_device_vector * vdev, const gs_imager_state * pis,
const gx_drawing_color * pdc),
psw_dorect(gx_device_vector * vdev, fixed x0, fixed y0, fixed x1,
fixed y1, gx_path_type_t type),
psw_beginpath(gx_device_vector * vdev, gx_path_type_t type),
psw_moveto(gx_device_vector * vdev, floatp x0, floatp y0,
floatp x, floatp y, gx_path_type_t type),
psw_lineto(gx_device_vector * vdev, floatp x0, floatp y0,
floatp x, floatp y, gx_path_type_t type),
psw_curveto(gx_device_vector * vdev, floatp x0, floatp y0,
floatp x1, floatp y1, floatp x2, floatp y2,
floatp x3, floatp y3, gx_path_type_t type),
psw_closepath(gx_device_vector * vdev, floatp x0, floatp y0,
floatp x_start, floatp y_start, gx_path_type_t type),
psw_endpath(gx_device_vector * vdev, gx_path_type_t type);
static const gx_device_vector_procs psw_vector_procs = {
/* Page management */
psw_beginpage,
/* Imager state */
psdf_setlinewidth,
psdf_setlinecap,
psdf_setlinejoin,
psdf_setmiterlimit,
psdf_setdash,
psdf_setflat,
psdf_setlogop,
/* Other state */
psw_can_handle_hl_color,
psw_setcolors, /* fill & stroke colors are the same */
psw_setcolors,
/* Paths */
psdf_dopath,
psw_dorect,
psw_beginpath,
psw_moveto,
psw_lineto,
psw_curveto,
psw_closepath,
psw_endpath
};
/* ---------------- File header ---------------- */
/*
* NOTE: Increment PSWRITE_PROCSET_VERSION (above) whenever the following
* definitions change.
*/
static const char *const psw_procset[] = {
"/!{bind def}bind def/#{load def}!/N/counttomark #",
/* <rbyte> <gbyte> <bbyte> rG - */
/* <graybyte> G - */
"/rG{3{3 -1 roll 255 div}repeat setrgbcolor}!/G{255 div setgray}!/K{0 G}!",
/* <bbyte> <rgbyte> r6 - */
/* <gbyte> <rbbyte> r5 - */
/* <rbyte> <gbbyte> r3 - */
"/r6{dup 3 -1 roll rG}!/r5{dup 3 1 roll rG}!/r3{dup rG}!",
"/w/setlinewidth #/J/setlinecap #",
"/j/setlinejoin #/M/setmiterlimit #/d/setdash #/i/setflat #",
"/m/moveto #/l/lineto #/c/rcurveto #",
/* <dx1> <dy1> ... <dxn> <dyn> p - */
"/p{N 2 idiv{N -2 roll rlineto}repeat}!",
/* <x> <y> <dx1> <dy1> ... <dxn> <dyn> P - */
"/P{N 0 gt{N -2 roll moveto p}if}!",
"/h{p closepath}!/H{P closepath}!",
/* <dx> lx - */
/* <dy> ly - */
/* <dx2> <dy2> <dx3> <dy3> v - */
/* <dx1> <dy1> <dx2> <dy2> y - */
"/lx{0 rlineto}!/ly{0 exch rlineto}!/v{0 0 6 2 roll c}!/y{2 copy c}!",
/* <x> <y> <dx> <dy> re - */
"/re{4 -2 roll m exch dup lx exch ly neg lx h}!",
/* <x> <y> <a> <b> ^ <x> <y> <a> <b> <-x> <-y> */
"/^{3 index neg 3 index neg}!",
"/f{P fill}!/f*{P eofill}!/s{H stroke}!/S{P stroke}!",
"/q/gsave #/Q/grestore #/rf{re fill}!",
"/Y{P clip newpath}!/Y*{P eoclip newpath}!/rY{re Y}!",
/* <w> <h> <name> <data> <?> |= <w> <h> <data> */
"/|={pop exch 4 1 roll 1 array astore cvx 3 array astore cvx exch 1 index def exec}!",
/* <w> <h> <name> <length> <src> | <w> <h> <data> */
"/|{exch string readstring |=}!",
/* <w> <?> <name> (<length>|) + <w> <?> <name> <length> */
"/+{dup type/nametype eq{2 index 7 add -3 bitshift 2 index mul}if}!",
/* <w> <h> <name> (<length>|) $ <w> <h> <data> */
"/@/currentfile #/${+ @ |}!",
/* <file> <nbytes> <ncomp> B <proc_1> ... <proc_ncomp> true */
"/B{{2 copy string{readstring pop}aload pop 4 array astore cvx",
"3 1 roll}repeat pop pop true}!",
/* <x> <y> <w> <h> <bpc/inv> <src> Ix <w> <h> <bps/inv> <mtx> <src> */
"/Ix{[1 0 0 1 11 -2 roll exch neg exch neg]exch}!",
/* <x> <y> <h> <src> , - */
/* <x> <y> <h> <src> If - */
/* <x> <y> <h> <src> I - */
"/,{true exch Ix imagemask}!/If{false exch Ix imagemask}!/I{exch Ix image}!",
0
};
static const char *const psw_1_procset[] = {
0
};
static const char *const psw_1_x_procset[] = {
/* <w> <h> <name> <length> <src> |X <w> <h> <data> */
/* <w> <h> <name> (<length>|) $X <w> <h> <data> */
"/|X{exch string readhexstring |=}!/$X{+ @ |X}!",
/* - @X <hexsrc> */
"/@X{{currentfile ( ) readhexstring pop}}!",
0
};
static const char *const psw_1_5_procset[] = {
/* <x> <y> <w> <h> <src> <bpc> Ic - */
"/Ic{exch Ix false 3 colorimage}!",
0
};
static const char *const psw_2_procset[] = {
/* <src> <w> <h> -mark- ... F <g4src> */
/* <src> <w> <h> FX <g4src> */
"/F{/Columns counttomark 3 add -2 roll/Rows exch/K -1/BlackIs1 true>>",
"/CCITTFaxDecode filter}!/FX{<</EndOfBlock false F}!",
/* <src> X <a85src> */
/* - @X <a85src> */
/* <w> <h> <src> /&2 <w> <h> <src> <w> <h> */
"/X{/ASCII85Decode filter}!/@X{@ X}!/&2{2 index 2 index}!",
/* <w> <h> @F <w> <h> <g4src> */
/* <w> <h> @C <w> <h> <g4a85src> */
"/@F{@ &2<<F}!/@C{@X &2 FX}!",
/* <w> <h> <name> (<length>|) $X <w> <h> <data> */
/* <w> <h> <?> <?> <src> &4 <w> <h> <?> <?> <src> <w> <h> */
/* <w> <h> <name> (<length>|) $F <w> <h> <data> */
/* <w> <h> <name> (<length>|) $C <w> <h> <data> */
"/$X{+ @X |}!/&4{4 index 4 index}!/$F{+ @ &4<<F |}!/$C{+ @X &4 FX |}!",
/* <w> <h> <bpc> <matrix> <decode> <interpolate> <src>IC - */
"/IC{3 1 roll 10 dict begin 1{/ImageType/Interpolate/Decode/DataSource",
"/ImageMatrix/BitsPerComponent/Height/Width}{exch def}forall",
"currentdict end image}!",
/* A hack for compatibility with interpreters, which don't consume
ASCII85Decode EOD when reader stops immediately before it : */
"/~{@ read {pop} if}!",
0
};
/* ---------------- Utilities ---------------- */
/*
* Output the file header. This must write to a file, not a stream,
* because it may be called during finalization.
*/
static int
psw_begin_file(gx_device_pswrite *pdev, const gs_rect *pbbox)
{
int code;
FILE *f = pdev->file;
char const * const *p1;
char const * const *p2;
if (pdev->pswrite_common.LanguageLevel < 1.5) {
p1 = psw_1_x_procset;
p2 = psw_1_procset;
} else if (pdev->pswrite_common.LanguageLevel > 1.5) {
p1 = psw_1_5_procset;
p2 = psw_2_procset;
} else {
p1 = psw_1_x_procset;
p2 = psw_1_5_procset;
}
if ((code = psw_begin_file_header(f, (gx_device *)pdev, pbbox,
&pdev->pswrite_common,
pdev->params.ASCII85EncodePages)) < 0 ||
(code = psw_print_lines(f, psw_procset)) < 0 ||
(code = psw_print_lines(f, p1)) < 0 ||
(code = psw_print_lines(f, p2)) < 0 ||
(code = psw_end_file_header(f)) < 0)
return code;
if(fflush(f) == EOF)
return_error(gs_error_ioerror);
return 0;
}
/* Reset the image cache. */
static void
image_cache_reset(gx_device_pswrite * pdev)
{
int i;
for (i = 0; i < image_cache_size; ++i)
pdev->image_cache[i].id = gx_no_bitmap_id;
pdev->cache_toggle = false;
}
/* Look up or enter image parameters in the cache. */
/* Return -1 if the key is not in the cache, or its index. */
/* If id is gx_no_bitmap_id or enter is false, do not enter it. */
static int
image_cache_lookup(gx_device_pswrite * pdev, gx_bitmap_id id,
int width, int height, bool enter)
{
int i1, i2;
psw_image_params_t *pip1;
psw_image_params_t *pip2;
if (id == gx_no_bitmap_id)
return -1;
i1 = id % image_cache_size;
pip1 = &pdev->image_cache[i1];
if (pip1->id == id && pip1->width == width && pip1->height == height) {
return i1;
}
i2 = (i1 + image_cache_reprobe_step) % image_cache_size;
pip2 = &pdev->image_cache[i2];
if (pip2->id == id && pip2->width == width && pip2->height == height) {
return i2;
}
if (enter) {
int i = ((pdev->cache_toggle = !pdev->cache_toggle) ? i2 : i1);
psw_image_params_t *pip = &pdev->image_cache[i];
pip->id = id, pip->width = width, pip->height = height;
return i;
}
return -1;
}
/*
* Prepare the encoding stream for image data.
* Return 1 if using ASCII (Hex or 85) encoding, 0 if binary.
*/
static int
psw_image_stream_setup(gx_device_pswrite * pdev, bool binary_ok)
{
int code;
bool save = pdev->binary_ok;
if (pdev->pswrite_common.LanguageLevel >= 2 || binary_ok) {
pdev->binary_ok = binary_ok;
code = psdf_begin_binary((gx_device_psdf *)pdev, pdev->image_writer);
} else {
/* LanguageLevel 1, binary not OK. Use ASCIIHex encoding. */
pdev->binary_ok = true;
code = psdf_begin_binary((gx_device_psdf *)pdev, pdev->image_writer);
if (code >= 0) {
stream_state *st =
s_alloc_state(pdev->v_memory, s_AXE_template.stype,
"psw_image_stream_setup");
if (st == 0)
code = gs_note_error(gs_error_VMerror);
else {
code = psdf_encode_binary(pdev->image_writer,
&s_AXE_template, st);
if (code >= 0)
((stream_AXE_state *)st)->EndOfData = false; /* no > */
}
}
}
pdev->binary_ok = save;
return (code < 0 ? code : !binary_ok);
}
/* Clean up after writing an image. */
static int
psw_image_cleanup(gx_device_pswrite * pdev)
{
int code = 0;
if (pdev->image_stream != 0) {
code = psdf_end_binary(pdev->image_writer);
memset(pdev->image_writer, 0, sizeof(*pdev->image_writer));
}
return code;
}
/* Write data for an image. Assumes width > 0, height > 0. */
static int
psw_put_bits(stream * s, const byte * data, int data_x_bit, uint raster,
uint width_bits, int height)
{
const byte *row = data + (data_x_bit >> 3);
int shift = data_x_bit & 7;
int y;
for (y = 0; y < height; ++y, row += raster) {
if (shift == 0)
stream_write(s, row, (width_bits + 7) >> 3);
else {
const byte *src = row;
int wleft = width_bits;
int cshift = 8 - shift;
for (; wleft + shift > 8; ++src, wleft -= 8)
stream_putc(s, (byte)((*src << shift) + (src[1] >> cshift)));
if (wleft > 0)
stream_putc(s, (byte)((*src << shift) & (byte)(0xff00 >> wleft)));
}
if (s->end_status == ERRC)
return_error(gs_error_ioerror);
}
return 0;
}
static int
psw_put_image_bits(gx_device_pswrite *pdev, const char *op,
const byte * data, int data_x, uint raster,
int width, int height, int depth)
{
int code;
pprints1(pdev->strm, "%s\n", op);
code = psw_put_bits(pdev->image_stream, data, data_x * depth, raster,
width * depth, height);
if (code < 0)
return code;
psw_image_cleanup(pdev);
return 0;
}
static int
psw_put_image(gx_device_pswrite *pdev, const char *op, int encode,
const byte * data, int data_x, uint raster,
int width, int height, int depth)
{
int code = psw_image_stream_setup(pdev, !(encode & 1));
if (code < 0)
return code;
if (encode & 2) {
code = psdf_CFE_binary(pdev->image_writer, width, height, false);
if (code < 0)
return code;
}
return psw_put_image_bits(pdev, op, data, data_x, raster,
width, height, depth);
}
static int
psw_image_write(gx_device_pswrite * pdev, const char *imagestr,
const byte * data, int data_x, uint raster, gx_bitmap_id id,
int x, int y, int width, int height, int depth)
{
stream *s = gdev_vector_stream((gx_device_vector *) pdev);
uint width_bits = width * depth;
int index = image_cache_lookup(pdev, id, width_bits, height, false);
char str[40];
char endstr[20];
int code, encode;
const char *op;
if (index >= 0) {
sprintf(str, "%d%c", index / 26, index % 26 + 'A');
pprintd2(s, "%d %d ", x, y);
pprints2(s, "%s %s\n", str, imagestr);
if (s->end_status == ERRC)
return_error(gs_error_ioerror);
return 0;
}
pprintd4(s, "%d %d %d %d ", x, y, width, height);
encode = !pdev->binary_ok;
if (depth == 1 && width > 16 && pdev->pswrite_common.LanguageLevel >= 2) {
/*
* We should really look at the statistics of the image before
* committing to using G4 encoding....
*/
encode += 2;
}
if (id == gx_no_bitmap_id || width_bits * (ulong) height > 8000) {
static const char *const uncached[4] = {
"@", "@X", "@F", "@C"
};
stream_puts(s, uncached[encode]);
op = imagestr;
strcpy(endstr, "\n");
} else {
static const char *const cached[4] = {
"$", "$X", "$F", "$C"
};
index = image_cache_lookup(pdev, id, width_bits, height, true);
sprintf(str, "/%d%c", index / 26, index % 26 + 'A');
stream_puts(s, str);
if (depth != 1)
pprintld1(s, " %ld", ((width_bits + 7) >> 3) * (ulong) height);
op = cached[encode];
sprintf(endstr, "\n%s\n", imagestr);
}
if (s->end_status == ERRC)
return_error(gs_error_ioerror);
/*
* In principle, we should put %%BeginData: / %%EndData around all data
* sections. However, as long as the data are ASCII (not binary), they
* can't cause problems for a DSC parser as long as all lines are
* limited to 255 characters and there is no possibility that %% might
* occur at the beginning of a line. ASCIIHexEncoded data can't contain
* % at all, and our implementation of ASCII85Encode also guarantees
* the desired property. Therefore, we only bracket binary data.
*/
if (encode & 1) {
/* We're using ASCII encoding. */
stream_putc(s, '\n');
code = psw_put_image(pdev, op, encode, data, data_x, raster,
width, height, depth);
if (code < 0)
return code;
} else {
/*
* Do a pre-pass to compute the amount of binary data for the
* %%BeginData DSC comment.
*/
stream poss;
s_init(s, pdev->memory);
swrite_position_only(&poss);
pdev->strm = &poss;
code = psw_put_image(pdev, op, encode, data, data_x, raster,
width, height, depth);
pdev->strm = s;
if (code < 0)
return code;
pprintld1(s, "\n%%%%BeginData: %ld\n", stell(&poss));
code = psw_put_image(pdev, op, encode, data, data_x, raster,
width, height, depth);
if (code < 0)
return code;
stream_puts(s, "\n%%EndData");
}
stream_puts(s, endstr);
if (s->end_status == ERRC)
return_error(gs_error_ioerror);
return 0;
}
/* Print a matrix. */
static void
psw_put_matrix(stream * s, const gs_matrix * pmat)
{
pprintg6(s, "[%g %g %g %g %g %g]",
pmat->xx, pmat->xy, pmat->yx, pmat->yy, pmat->tx, pmat->ty);
}
/* Check for a deferred erasepage. */
static int
psw_check_erasepage(gx_device_pswrite *pdev)
{
int code = 0;
if (pdev->page_fill.color != gx_no_color_index) {
if (pdev->page_fill.rect.p.x != pdev->page_fill.rect.q.x
&& pdev->page_fill.rect.p.y != pdev->page_fill.rect.q.y)
{
code = gdev_vector_fill_rectangle((gx_device *)pdev,
pdev->page_fill.rect.p.x,
pdev->page_fill.rect.p.y,
pdev->page_fill.rect.q.x -
pdev->page_fill.rect.p.x,
pdev->page_fill.rect.q.y -
pdev->page_fill.rect.p.y,
pdev->page_fill.color);
}
pdev->page_fill.color = gx_no_color_index;
}
return code;
}
#define CHECK_BEGIN_PAGE(pdev)\
BEGIN\
int code_ = psw_check_erasepage(pdev);\
\
if (code_ < 0)\
return code_;\
END
/* ---------------- Vector device implementation ---------------- */
static int
psw_beginpage(gx_device_vector * vdev)
{
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
int code = psw_open_printer((gx_device *)vdev);
stream *s = vdev->strm;
if (code < 0)
return code;
if (pdev->first_page) {
code = psw_begin_file(pdev, NULL);
if (code < 0)
return code;
}
code = psw_write_page_header(s, (gx_device *)vdev, &pdev->pswrite_common, true,
(gx_outputfile_is_separate_pages(vdev->fname, vdev->memory) ?
1 : vdev->PageCount + 1),
image_cache_size);
if (code < 0)
return code;
pdev->page_fill.color = gx_no_color_index;
return 0;
}
static int
psw_can_handle_hl_color(gx_device_vector * vdev, const gs_imager_state * pis1,
const gx_drawing_color * pdc)
{
return false; /* High level color is not implemented yet. */
}
static int
psw_setcolors(gx_device_vector * vdev, const gs_imager_state * pis1,
const gx_drawing_color * pdc)
{
const gs_imager_state * pis = NULL; /* High level color is not implemented yet. */
if (!gx_dc_is_pure(pdc))
return_error(gs_error_rangecheck);
/* PostScript only keeps track of a single color. */
gx_hld_save_color(pis, pdc, &vdev->saved_fill_color);
gx_hld_save_color(pis, pdc, &vdev->saved_stroke_color);
{
stream *s = gdev_vector_stream(vdev);
gx_color_index color = gx_dc_pure_color(pdc);
int r = color >> 16;
int g = (color >> 8) & 0xff;
int b = color & 0xff;
if (r == g && g == b) {
if (r == 0)
stream_puts(s, "K\n");
else
pprintd1(s, "%d G\n", r);
} else if (r == g)
pprintd2(s, "%d %d r6\n", b, r);
else if (g == b)
pprintd2(s, "%d %d r3\n", r, g);
else if (r == b)
pprintd2(s, "%d %d r5\n", g, b);
else
pprintd3(s, "%d %d %d rG\n", r, g, b);
if (s->end_status == ERRC)
return_error(gs_error_ioerror);
}
return 0;
}
/* Redefine dorect to recognize rectangle fills. */
static int
psw_dorect(gx_device_vector * vdev, fixed x0, fixed y0, fixed x1, fixed y1,
gx_path_type_t type)
{
if ((type & ~gx_path_type_rule) != gx_path_type_fill)
return psdf_dorect(vdev, x0, y0, x1, y1, type);
pprintg4(gdev_vector_stream(vdev), "%g %g %g %g rf\n",
fixed2float(x0), fixed2float(y0),
fixed2float(x1 - x0), fixed2float(y1 - y0));
if ((gdev_vector_stream(vdev))->end_status == ERRC)
return_error(gs_error_ioerror);
return 0;
}
/*
* We redefine path tracing to use a compact form for polygons; also,
* we only need to write coordinates with 2 decimals of precision,
* since this is 10 times more precise than any existing output device.
*/
static inline double
round_coord2(floatp v)
{
return floor(v * 100 + 0.5) / 100.0;
}
static void
print_coord2(stream * s, floatp x, floatp y, const char *str)
{
pprintg2(s, "%g %g ", round_coord2(x), round_coord2(y));
if (str != 0)
stream_puts(s, str);
}
static int
psw_beginpath(gx_device_vector * vdev, gx_path_type_t type)
{
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
if (type & (gx_path_type_fill | gx_path_type_stroke)) {
/*
* fill_path and stroke_path call CHECK_BEGIN_PAGE themselves:
* we do it here to handle polygons (trapezoid, parallelogram,
* triangle), which don't go through fill_path.
*/
CHECK_BEGIN_PAGE(pdev);
}
pdev->path_state.num_points = 0;
pdev->path_state.move = 0;
if (type & gx_path_type_clip) {
/*
* This approach doesn't work for clip + fill or stroke, but that
* combination can't occur.
*/
stream *s = gdev_vector_stream(vdev);
stream_puts(s, "Q q\n");
gdev_vector_reset(vdev);
if (s->end_status == ERRC)
return_error(gs_error_ioerror);
}
return 0;
}
static int
psw_moveto(gx_device_vector * vdev, floatp x0, floatp y0, floatp x, floatp y,
gx_path_type_t type)
{
stream *s = gdev_vector_stream(vdev);
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
if (pdev->path_state.num_points > pdev->path_state.move)
stream_puts(s, (pdev->path_state.move ? "P\n" : "p\n"));
else if (pdev->path_state.move) {
/*
* Two consecutive movetos -- possible only if a zero-length line
* was discarded.
*/
stream_puts(s, "pop pop\n");
}
print_coord2(s, x, y, NULL);
pdev->path_state.num_points = 1;
pdev->path_state.move = 1;
if (s->end_status == ERRC)
return_error(gs_error_ioerror);
return 0;
}
static int
psw_lineto(gx_device_vector * vdev, floatp x0, floatp y0, floatp x, floatp y,
gx_path_type_t type)
{
double dx = x - x0, dy = y - y0;
/*
* Omit null lines except when stroking (so that linecap works).
****** MAYBE WRONG IF PATH CONSISTS ONLY OF NULL LINES. ******
*/
if ((type & gx_path_type_stroke) || dx != 0 || dy != 0) {
stream *s = gdev_vector_stream(vdev);
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
if (pdev->path_state.num_points > MAXOPSTACK / 2 - 10) {
stream_puts(s, (pdev->path_state.move ? "P\n" : "p\n"));
pdev->path_state.num_points = 0;
pdev->path_state.move = 0;
}
else if (pdev->path_state.num_points > 0 &&
!(pdev->path_state.num_points & 7)
)
stream_putc(s, '\n'); /* limit line length for DSC compliance */
if (pdev->path_state.num_points - pdev->path_state.move >= 2 &&
dx == -pdev->path_state.dprev[1].x &&
dy == -pdev->path_state.dprev[1].y
)
stream_puts(s, "^ ");
else
print_coord2(s, dx, dy, NULL);
pdev->path_state.num_points++;
pdev->path_state.dprev[1] = pdev->path_state.dprev[0];
pdev->path_state.dprev[0].x = dx;
pdev->path_state.dprev[0].y = dy;
if (s->end_status == ERRC)
return_error(gs_error_ioerror);
}
return 0;
}
static int
psw_curveto(gx_device_vector * vdev, floatp x0, floatp y0,
floatp x1, floatp y1, floatp x2, floatp y2, floatp x3, floatp y3,
gx_path_type_t type)
{
stream *s = gdev_vector_stream(vdev);
double dx1 = x1 - x0, dy1 = y1 - y0;
double dx2 = x2 - x0, dy2 = y2 - y0;
double dx3 = x3 - x0, dy3 = y3 - y0;
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
if (pdev->path_state.num_points > 0)
stream_puts(s, (pdev->path_state.move ?
(pdev->path_state.num_points == 1 ? "m\n" : "P\n") :
"p\n"));
if (dx1 == 0 && dy1 == 0) {
print_coord2(s, dx2, dy2, NULL);
print_coord2(s, dx3, dy3, "v\n");
} else if (x3 == x2 && y3 == y2) {
print_coord2(s, dx1, dy1, NULL);
print_coord2(s, dx2, dy2, "y\n");
} else {
print_coord2(s, dx1, dy1, NULL);
print_coord2(s, dx2, dy2, NULL);
print_coord2(s, dx3, dy3, "c\n");
}
pdev->path_state.num_points = 0;
pdev->path_state.move = 0;
if (s->end_status == ERRC)
return_error(gs_error_ioerror);
return 0;
}
static int
psw_closepath(gx_device_vector * vdev, floatp x0, floatp y0,
floatp x_start, floatp y_start, gx_path_type_t type)
{
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
stream_puts(gdev_vector_stream(vdev),
(pdev->path_state.num_points > 0 && pdev->path_state.move ?
"H\n" : "h\n"));
pdev->path_state.num_points = 0;
pdev->path_state.move = 0;
if ((gdev_vector_stream(vdev))->end_status == ERRC)
return_error(gs_error_ioerror);
return 0;
}
static int
psw_endpath(gx_device_vector * vdev, gx_path_type_t type)
{
stream *s = vdev->strm;
const char *star = (type & gx_path_type_even_odd ? "*" : "");
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
if (pdev->path_state.num_points > 0 && !pdev->path_state.move)
stream_puts(s, "p ");
if (type & gx_path_type_fill) {
if (type & (gx_path_type_stroke | gx_path_type_clip))
pprints1(s, "q f%s Q ", star);
else
pprints1(s, "f%s\n", star);
}
if (type & gx_path_type_stroke) {
if (type & gx_path_type_clip)
stream_puts(s, "q S Q ");
else
stream_puts(s, "S\n");
}
if (type & gx_path_type_clip)
pprints1(s, "Y%s\n", star);
if (s->end_status == ERRC)
return_error(gs_error_ioerror);
return 0;
}
/* ---------------- Driver procedures ---------------- */
/* ------ Open/close/page ------ */
/* Open the device. */
static int
psw_open(gx_device * dev)
{
gs_memory_t *mem = gs_memory_stable(dev->memory);
gx_device_vector *const vdev = (gx_device_vector *)dev;
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
vdev->v_memory = mem;
vdev->vec_procs = &psw_vector_procs;
gdev_vector_init(vdev);
vdev->fill_options = vdev->stroke_options = gx_path_type_optimize;
pdev->binary_ok = !pdev->params.ASCII85EncodePages;
pdev->image_writer = gs_alloc_struct(mem, psdf_binary_writer,
&st_psdf_binary_writer,
"psw_open(image_writer)");
memset(pdev->image_writer, 0, sizeof(*pdev->image_writer)); /* for GC */
image_cache_reset(pdev);
pdev->strm = NULL;
/* if (ppdev->OpenOutputFile) */
{
int code = psw_open_printer(dev);
if (code < 0)
return code;
}
return 0;
}
/* Wrap up ("output") a page. */
static int
psw_output_page(gx_device * dev, int num_copies, int flush)
{
int code;
gx_device_vector *const vdev = (gx_device_vector *)dev;
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
stream *s = gdev_vector_stream(vdev);
/* Check for a legitimate empty page. */
CHECK_BEGIN_PAGE(pdev);
sflush(s); /* sync stream and file */
code = psw_write_page_trailer(vdev->file, num_copies, flush);
if(code < 0)
return code;
vdev->in_page = false;
pdev->first_page = false;
gdev_vector_reset(vdev);
image_cache_reset(pdev);
if (ferror(vdev->file))
return_error(gs_error_ioerror);
dev->PageCount ++;
if (gx_outputfile_is_separate_pages(vdev->fname, vdev->memory)) {
code = psw_close_printer(dev);
if (code < 0)
return code;
code = psw_open_printer(dev);
if (code < 0)
return code;
}
return 0;
}
/* Close the device. */
/* Note that if this is being called as a result of finalization, */
/* the stream may have been finalized; but the file will still be open. */
static int
psw_close(gx_device * dev)
{
gx_device_vector *const vdev = (gx_device_vector *)dev;
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
gs_free_object(pdev->v_memory, pdev->image_writer,
"psw_close(image_writer)");
pdev->image_writer = 0;
if (vdev->strm != NULL) {
int code = psw_close_printer(dev);
if (code < 0)
return code;
}
return 0;
}
/* ---------------- Get/put parameters ---------------- */
/* Get parameters. */
static int
psw_get_params(gx_device * dev, gs_param_list * plist)
{
gx_device_pswrite *const pdev = (gx_device_pswrite *)dev;
int code = gdev_psdf_get_params(dev, plist);
int ecode;
if (code < 0)
return code;
if ((ecode = param_write_float(plist, "LanguageLevel", &pdev->pswrite_common.LanguageLevel)) < 0)
return ecode;
return code;
}
/* Put parameters. */
static int
psw_put_params(gx_device * dev, gs_param_list * plist)
{
int ecode = 0;
int code;
gs_param_name param_name;
gx_device_pswrite *const pdev = (gx_device_pswrite *)dev;
float ll = pdev->pswrite_common.LanguageLevel;
psdf_version save_version = pdev->version;
switch (code = param_read_float(plist, (param_name = "LanguageLevel"), &ll)) {
case 0:
if (ll == 1.0 || ll == 1.5 || ll == 2.0 || ll == 3.0)
break;
code = gs_error_rangecheck;
default:
ecode = code;
param_signal_error(plist, param_name, ecode);
case 1:
;
}
if (ecode < 0)
return ecode;
/*
* We have to set version to the new value, because the set of
* legal parameter values for psdf_put_params varies according to
* the version.
*/
{
static const psdf_version vv[3] =
{
psdf_version_level1, psdf_version_level1_color,
psdf_version_level2
};
pdev->version = vv[(int)(ll * 2) - 2];
}
code = gdev_psdf_put_params(dev, plist);
if (code < 0) {
pdev->version = save_version;
return code;
}
pdev->pswrite_common.LanguageLevel = ll;
return code;
}
/* ---------------- Rectangles ---------------- */
static int
psw_fill_rectangle(gx_device * dev, int x, int y, int w, int h,
gx_color_index color)
{
gx_device_pswrite *const pdev = (gx_device_pswrite *)dev;
/*
* If the transfer function doesn't map 1 setgray to device white,
* the first rectangle fill on a page (from erasepage) will be with
* some color other than white, which gdev_vector_fill_rectangle
* won't handle correctly. Note that this doesn't happen on the
* very first page of a document.
*/
if (!pdev->in_page && !pdev->first_page) {
if (pdev->page_fill.color == gx_no_color_index) {
/* Save, but don't output, the erasepage. */
pdev->page_fill.rect.p.x = x;
pdev->page_fill.rect.p.y = y;
pdev->page_fill.rect.q.x = x + w;
pdev->page_fill.rect.q.y = y + h;
pdev->page_fill.color = color;
return 0;
}
}
return gdev_vector_fill_rectangle(dev, x, y, w, h, color);
}
/*
* Open the printer's output file if necessary.
*/
static int
psw_open_printer(gx_device * dev)
{
gx_device_vector *const vdev = (gx_device_vector *)dev;
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
if (vdev->strm != 0) {
return 0;
}
{
int code = gdev_vector_open_file_options(vdev, 512,
VECTOR_OPEN_FILE_SEQUENTIAL_OK |
VECTOR_OPEN_FILE_BBOX);
if (code < 0)
return code;
}
pdev->first_page = true;
return 0;
}
/*
* Close the printer's output file.
*/
static int
psw_close_printer(gx_device * dev)
{
int code;
gx_device_vector *const vdev = (gx_device_vector *)dev;
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
FILE *f = vdev->file;
gs_rect bbox;
gx_device_bbox_bbox(vdev->bbox_device, &bbox);
if (pdev->first_page && !vdev->in_page) {
/* Nothing has been written. Write the file header now. */
code = psw_begin_file(pdev, &bbox);
if (code < 0)
return code;
} else {
/* If there is an incomplete page, complete it now. */
if (vdev->in_page) {
/*
* Flush the stream after writing page trailer.
*/
stream *s = vdev->strm;
code = psw_write_page_trailer(vdev->file, 1, 1);
if(code < 0)
return code;
sflush(s);
dev->PageCount++;
}
}
code = psw_end_file(f, dev, &pdev->pswrite_common, &bbox,
(gx_outputfile_is_separate_pages(vdev->fname, vdev->memory) ?
1 : vdev->PageCount));
if(code < 0)
return code;
return gdev_vector_close_file(vdev);
}
/* ---------------- Images ---------------- */
/* Copy a monochrome bitmap. */
static int
psw_copy_mono(gx_device * dev, const byte * data,
int data_x, int raster, gx_bitmap_id id, int x, int y, int w, int h,
gx_color_index zero, gx_color_index one)
{
gx_device_vector *const vdev = (gx_device_vector *)dev;
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
gx_drawing_color color;
const char *op;
int code = 0;
CHECK_BEGIN_PAGE(pdev);
if (w <= 0 || h <= 0)
return 0;
(*dev_proc(vdev->bbox_device, copy_mono))
((gx_device *) vdev->bbox_device, data, data_x, raster, id,
x, y, w, h, zero, one);
if (one == gx_no_color_index) {
set_nonclient_dev_color(&color, zero);
code = gdev_vector_update_fill_color((gx_device_vector *) pdev,
NULL, &color);
op = "If";
} else if (zero == vdev->black && one == vdev->white)
op = "1 I";
else {
if (zero != gx_no_color_index) {
code = (*dev_proc(dev, fill_rectangle)) (dev, x, y, w, h, zero);
if (code < 0)
return code;
}
set_nonclient_dev_color(&color, one);
code = gdev_vector_update_fill_color((gx_device_vector *) pdev,
NULL, &color);
op = ",";
}
if (code < 0)
return 0;
code = gdev_vector_update_clip_path(vdev, NULL);
if (code < 0)
return code;
return psw_image_write(pdev, op, data, data_x, raster, id,
x, y, w, h, 1);
}
/* Copy a color bitmap. */
static int
psw_copy_color(gx_device * dev,
const byte * data, int data_x, int raster, gx_bitmap_id id,
int x, int y, int w, int h)
{
int depth = dev->color_info.depth;
const byte *bits = data + data_x * 3;
char op[6];
int code;
gx_device_vector *const vdev = (gx_device_vector *)dev;
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
CHECK_BEGIN_PAGE(pdev);
if (w <= 0 || h <= 0)
return 0;
(*dev_proc(vdev->bbox_device, copy_color))
((gx_device *) vdev->bbox_device, data, data_x, raster, id,
x, y, w, h);
/*
* If this is a 1-pixel-high image, check for it being all the
* same color, and if so, fill it as a rectangle.
*/
if (h == 1 && !memcmp(bits, bits + 3, (w - 1) * 3)) {
return (*dev_proc(dev, fill_rectangle))
(dev, x, y, w, h, (bits[0] << 16) + (bits[1] << 8) + bits[2]);
}
sprintf(op, "%d Ic", depth / 3); /* RGB */
code = gdev_vector_update_clip_path(vdev, NULL);
if (code < 0)
return code;
return psw_image_write(pdev, op, data, data_x, raster, id,
x, y, w, h, depth);
}
/* Fill or stroke a path. */
/* We redefine these to skip empty paths, and to allow optimization. */
static int
psw_fill_path(gx_device * dev, const gs_imager_state * pis,
gx_path * ppath, const gx_fill_params * params,
const gx_device_color * pdevc, const gx_clip_path * pcpath)
{
CHECK_BEGIN_PAGE((gx_device_pswrite *)dev);
if (gx_path_is_void(ppath))
return 0;
/* Update the clipping path now. */
gdev_vector_update_clip_path((gx_device_vector *)dev, pcpath);
return gdev_vector_fill_path(dev, pis, ppath, params, pdevc, pcpath);
}
static int
psw_stroke_path(gx_device * dev, const gs_imager_state * pis,
gx_path * ppath, const gx_stroke_params * params,
const gx_device_color * pdcolor, const gx_clip_path * pcpath)
{
gx_device_vector *const vdev = (gx_device_vector *)dev;
CHECK_BEGIN_PAGE((gx_device_pswrite *)dev);
if (gx_path_is_void(ppath) &&
(gx_path_is_null(ppath) ||
gs_currentlinecap((const gs_state *)pis) != gs_cap_round)
)
return 0;
/* Update the clipping path now. */
gdev_vector_update_clip_path(vdev, pcpath);
/* Do the right thing for oddly transformed coordinate systems.... */
{
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
stream *s;
int code;
double scale;
bool set_ctm;
gs_matrix mat;
if (!gx_dc_is_pure(pdcolor))
return gx_default_stroke_path(dev, pis, ppath, params, pdcolor,
pcpath);
set_ctm = (bool)gdev_vector_stroke_scaling(vdev, pis, &scale, &mat);
gdev_vector_update_clip_path(vdev, pcpath);
code = gdev_vector_prepare_stroke((gx_device_vector *)pdev, pis, params,
pdcolor, scale);
if (code < 0)
return code;
s = pdev->strm;
if (set_ctm) {
stream_puts(s, "q");
if (is_fzero2(mat.xy, mat.yx) && is_fzero2(mat.tx, mat.ty))
pprintg2(s, " %g %g scale\n", mat.xx, mat.yy);
else {
psw_put_matrix(s, &mat);
stream_puts(s, "concat\n");
}
if (s->end_status == ERRC)
return_error(gs_error_ioerror);
}
code = gdev_vector_dopath(vdev, ppath, gx_path_type_stroke,
(set_ctm ? &mat : (const gs_matrix *)0));
if (code < 0)
return code;
if (set_ctm)
stream_puts(s, "Q\n");
}
/* We must merge in the bounding box explicitly. */
return (vdev->bbox_device == 0 ? 0 :
dev_proc(vdev->bbox_device, stroke_path)
((gx_device *)vdev->bbox_device, pis, ppath, params,
pdcolor, pcpath));
}
/* Fill a mask. */
static int
psw_fill_mask(gx_device * dev,
const byte * data, int data_x, int raster, gx_bitmap_id id,
int x, int y, int w, int h,
const gx_drawing_color * pdcolor, int depth,
gs_logical_operation_t lop, const gx_clip_path * pcpath)
{
gx_device_vector *const vdev = (gx_device_vector *)dev;
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
CHECK_BEGIN_PAGE(pdev);
if (w <= 0 || h <= 0)
return 0;
/* gdev_vector_update_clip_path may output a grestore and gsave,
* causing the setting of the color to be lost. Therefore, we
* must update the clip path first.
*/
if (depth > 1 ||
gdev_vector_update_clip_path(vdev, pcpath) < 0 ||
gdev_vector_update_fill_color(vdev, NULL, pdcolor) < 0 ||
gdev_vector_update_log_op(vdev, lop) < 0
)
return gx_default_fill_mask(dev, data, data_x, raster, id,
x, y, w, h, pdcolor, depth, lop, pcpath);
(*dev_proc(vdev->bbox_device, fill_mask))
((gx_device *) vdev->bbox_device, data, data_x, raster, id,
x, y, w, h, pdcolor, depth, lop, pcpath);
/* Update the clipping path now. */
gdev_vector_update_clip_path(vdev, pcpath);
return psw_image_write(pdev, ",", data, data_x, raster, id,
x, y, w, h, 1);
}
/* ---------------- High-level images ---------------- */
static image_enum_proc_plane_data(psw_image_plane_data);
static image_enum_proc_end_image(psw_image_end_image);
static const gx_image_enum_procs_t psw_image_enum_procs = {
psw_image_plane_data, psw_image_end_image
};
/* Start processing an image. */
static int
psw_begin_image(gx_device * dev,
const gs_imager_state * pis, const gs_image_t * pim,
gs_image_format_t format, const gs_int_rect * prect,
const gx_drawing_color * pdcolor, const gx_clip_path * pcpath,
gs_memory_t * mem, gx_image_enum_common_t ** pinfo)
{
gx_device_vector *const vdev = (gx_device_vector *)dev;
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
gdev_vector_image_enum_t *pie;
const gs_color_space *pcs = pim->ColorSpace;
const gs_color_space *pbcs = pcs;
const char *base_name = NULL;
gs_color_space_index index;
int num_components;
bool binary = pdev->binary_ok;
byte *buffer = 0; /* image buffer if needed */
stream *bs = 0; /* buffer stream if needed */
#define MAX_IMAGE_OP 10 /* imagemask\n */
int code;
CHECK_BEGIN_PAGE(pdev);
pie = gs_alloc_struct(mem, gdev_vector_image_enum_t,
&st_vector_image_enum, "psw_begin_image");
if (pie == 0)
return_error(gs_error_VMerror);
if (prect && !(prect->p.x == 0 && prect->p.y == 0 &&
prect->q.x == pim->Width && prect->q.y == pim->Height)
)
goto fail;
switch (pim->format) {
case gs_image_format_chunky:
case gs_image_format_component_planar:
break;
default:
goto fail;
}
pie->memory = mem;
pie->default_info = 0; /* not used */
if (pim->ImageMask) {
index = -1; /* bogus, not used */
num_components = 1;
} else {
index = gs_color_space_get_index(pcs);
num_components = gs_color_space_num_components(pcs);
if (pim->CombineWithColor)
goto fail;
/*
* We can only handle Device color spaces right now, or Indexed
* color spaces over them, and only the default Decode [0 1 ...]
* or [0 2^BPC-1] respectively.
*/
switch (index) {
case gs_color_space_index_Indexed: {
if (pdev->pswrite_common.LanguageLevel < 2 || pcs->params.indexed.use_proc ||
pim->Decode[0] != 0 ||
pim->Decode[1] != (1 << pim->BitsPerComponent) - 1
) {
goto fail;
}
pbcs = pcs->base_space;
switch (gs_color_space_get_index(pbcs)) {
case gs_color_space_index_DeviceGray:
base_name = "DeviceGray"; break;
case gs_color_space_index_DeviceRGB:
base_name = "DeviceRGB"; break;
case gs_color_space_index_DeviceCMYK:
base_name = "DeviceCMYK"; break;
default:
goto fail;
}
break;
}
case gs_color_space_index_DeviceGray:
case gs_color_space_index_DeviceRGB:
case gs_color_space_index_DeviceCMYK: {
int i;
for (i = 0; i < num_components * 2; ++i)
if (pim->Decode[i] != (i & 1))
goto fail;
break;
}
default:
goto fail;
}
}
if (pdev->pswrite_common.LanguageLevel < 2 && !pim->ImageMask) {
/*
* Restrict ourselves to Level 1 images: bits per component <= 8,
* not indexed.
*/
if (pim->BitsPerComponent > 8 || pbcs != pcs)
goto fail;
}
if (gdev_vector_begin_image(vdev, pis, pim, format, prect, pdcolor,
pcpath, mem, &psw_image_enum_procs, pie) < 0)
goto fail;
if (binary) {
/*
* We need to buffer the entire image in memory. Currently, the
* only reason for this is the infamous "short image" problem: the
* image may actually have fewer rows than its height specifies. If
* it weren't for that, we could know the size of the binary data in
* advance. However, this will change if we compress images.
*/
uint bsize = MAX_IMAGE_OP +
((pie->bits_per_row + 7) >> 3) * pie->height;
buffer = gs_alloc_bytes(mem, bsize, "psw_begin_image(buffer)");
bs = s_alloc(mem, "psw_begin_image(buffer stream)");
if (buffer && bs) {
s_init(bs, mem);
swrite_string(bs, buffer, bsize);
} else {
/* An allocation failed. */
gs_free_object(mem, bs, "psw_begin_image(buffer stream)");
gs_free_object(mem, buffer, "psw_begin_image(buffer)");
/*
* Rather than returning VMerror, we fall back to an ASCII
* encoding, which doesn't require a buffer stream.
*/
buffer = 0;
bs = 0;
binary = false;
}
}
if (binary) {
/* Set up the image stream to write into the buffer. */
stream *save = pdev->strm;
pdev->strm = bs;
code = psw_image_stream_setup(pdev, true);
pdev->strm = save;
} else {
code = psw_image_stream_setup(pdev, false);
}
if (code < 0)
goto fail;
/* Update the clipping path now. */
gdev_vector_update_clip_path(vdev, pcpath);
/* Write the image/colorimage/imagemask preamble. */
{
stream *s = gdev_vector_stream((gx_device_vector *) pdev);
const char *source = (code ? "@X" : "@");
gs_matrix imat;
const char *op;
stream_puts(s, "q");
(*dev_proc(dev, get_initial_matrix)) (dev, &imat);
gs_matrix_scale(&imat, 72.0 / dev->HWResolution[0],
72.0 / dev->HWResolution[1], &imat);
gs_matrix_invert(&imat, &imat);
gs_matrix_multiply(&ctm_only(pis), &imat, &imat);
psw_put_matrix(s, &imat);
pprintd2(s, "concat\n%d %d ", pie->width, pie->height);
if (pim->ImageMask) {
stream_puts(s, (pim->Decode[0] == 0 ? "false" : "true"));
psw_put_matrix(s, &pim->ImageMatrix);
stream_puts(s, source);
op = "imagemask";
} else {
pprintd1(s, "%d", pim->BitsPerComponent);
psw_put_matrix(s, &pim->ImageMatrix);
if (pbcs != pcs) {
/* This is an Indexed color space. */
pprints1(s, "[/Indexed /%s ", base_name);
pprintd1(s, "%d\n", pcs->params.indexed.hival);
/*
* Don't write the table in binary: it might interfere
* with DSC parsing.
*/
s_write_ps_string(s, pcs->params.indexed.lookup.table.data,
pcs->params.indexed.lookup.table.size,
PRINT_ASCII85_OK);
pprintd1(s, "\n]setcolorspace[0 %d]", (int)pim->Decode[1]);
pprints2(s, "%s %s",
(pim->Interpolate ? "true" : "false"), source);
op = "IC";
} else if (index == gs_color_space_index_DeviceGray) {
stream_puts(s, source);
op = "image";
} else {
if (format == gs_image_format_chunky)
pprints1(s, "%s false", source);
else {
/* We have to use procedures. */
stream_puts(s, source);
pprintd2(s, " %d %d B",
(pim->Width * pim->BitsPerComponent + 7) >> 3,
num_components);
}
pprintd1(s, " %d", num_components);
op = "colorimage";
}
}
stream_putc(s, '\n');
pprints1((bs ? bs : s), "%s\n", op);
if (s->end_status == ERRC) {
gs_free_object(mem, bs, "psw_begin_image(buffer stream)");
gs_free_object(mem, buffer, "psw_begin_image(buffer)");
gs_free_object(mem, pie, "psw_begin_image");
return_error(gs_error_ioerror);
}
}
*pinfo = (gx_image_enum_common_t *) pie;
return 0;
fail:
gs_free_object(mem, bs, "psw_begin_image(buffer stream)");
gs_free_object(mem, buffer, "psw_begin_image(buffer)");
gs_free_object(mem, pie, "psw_begin_image");
return gx_default_begin_image(dev, pis, pim, format, prect,
pdcolor, pcpath, mem, pinfo);
}
/* Process the next piece of an image. */
static int
psw_image_plane_data(gx_image_enum_common_t * info,
const gx_image_plane_t * planes, int height,
int *rows_used)
{
gx_device *dev = info->dev;
gx_device_pswrite *const pdev = (gx_device_pswrite *)dev;
gdev_vector_image_enum_t *pie = (gdev_vector_image_enum_t *) info;
int code =
gx_image_plane_data_rows(pie->bbox_info, planes, height, rows_used);
int pi, j;
for (j = 0; j < *rows_used; j++) {
for (pi = 0; pi < pie->num_planes; ++pi) {
if (pie->bits_per_row != pie->width * info->plane_depths[pi])
return_error(gs_error_rangecheck);
psw_put_bits(pdev->image_stream,
planes[pi].data,
planes[pi].data_x*info->plane_depths[pi] + planes[pi].raster*j*8,
planes[pi].raster,
pie->bits_per_row,
1 );
if (pdev->image_stream->end_status == ERRC)
return_error(gs_error_ioerror);
}
}
pie->y += *rows_used;
return code;
}
/* Clean up by releasing the buffers. */
static int
psw_image_end_image(gx_image_enum_common_t * info, bool draw_last)
{
gx_device *dev = info->dev;
gx_device_vector *const vdev = (gx_device_vector *)dev;
gx_device_pswrite *const pdev = (gx_device_pswrite *)vdev;
gdev_vector_image_enum_t *pie = (gdev_vector_image_enum_t *) info;
int code;
code = gdev_vector_end_image(vdev, pie, draw_last, pdev->white);
if (code > 0) {
stream *s = pdev->strm;
stream *bs = pdev->image_stream;
/* If we were buffering a binary image, write it now. */
while (bs != s && bs->strm != 0)
bs = bs->strm;
psw_image_cleanup(pdev);
if (bs != s) {
/*
* We were buffering a binary image. Write it now, with the
* DSC comments.
*/
gs_memory_t *mem = bs->memory;
byte *buffer = bs->cbuf;
long len = stell(bs);
uint ignore;
pprintld1(s, "%%%%BeginData: %ld\n", len);
sputs(s, buffer, (uint)len, &ignore);
stream_puts(s, "\n%%EndData");
/* Free the buffer and its stream. */
gs_free_object(mem, bs, "psw_image_end_image(buffer stream)");
gs_free_object(mem, buffer, "psw_image_end_image(buffer)");
}
stream_puts(s, "\nQ\n");
if (s->end_status == ERRC)
return_error(gs_error_ioerror);
}
return code;
}
|