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
|
*PPD-Adobe: "4.3"
*%----------------------------------------------------------------------------
*% License agreement of Postscript Printer Description file for EPSON AL-C9200
*% Copyright (C) SEIKO EPSON CORPORATION 2008
*% Permission is hereby granted for redistribution of this file, provided that
*% copyright notice is intact and the contents of this license agreement are
*% not altered in any way from it original form.
*%
*% Permission is hereby granted, free of charge, to any person obtaining
*% a copy of this software and associated documentation files (the
*% "Software"), to deal in the Software without restriction, including
*% without limitation the rights to use, copy, modify, merge, publish,
*% distribute, sublicense, and/or sell copies of the Software, and to
*% permit persons to whom the Software is furnished to do so, subject to
*% the following conditions:
*%
*% The above copyright notice and this permission notice shall be
*% included in all copies or substantial portions of the Software.
*%
*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*%
*% [this is the MIT open source license -- see www.opensource.org]
*%------------------------------------------------------------------------------
*% =========================================
*% Adobe Systems PostScript(R) Printer Description File
*% Copyright 2006 Adobe Systems Incorporated.
*% All Rights Reserved.
*% =========================================
*% PPD for EPSON AL-C9200 PS3
*% For Windows and Macs
*% February 07, 2008
*% =========================================
*FormatVersion: "4.3"
*FileVersion: "1.0"
*LanguageEncoding: ISOLatin1
*LanguageVersion: English
*PCFileName: "EPALC920.PPD"
*PSVersion: "(3017.104) 0"
*Product: "(AL-C9200)"
*ModelName: "EPSON AL-C9200 PS3"
*ShortNickName: "EPSON AL-C9200 PS3"
*NickName: "EPSON AL-C9200 PS3 v3017.104"
*Manufacturer: "Epson"
*%***** Notes on order dependency *****
*% 20 Input Tray Selection
*% 30 Image protect - used in conjunction with 50, Rendering Color
*% and depth, to validate page size vs. available frame buffer memory
*% 55 Color Quality - must follow 50 since color quality is only effective
*% when color mode is color
*% 70 Selectable Separations - Overrides color model specified in (50) so
*% it must follow it in the file
*% 100 Page Size - must be set after 30, 50, and 60 since these determine
*% the frame buffer memory size and thus, the allowable page sizes.
*UIConstraints: *Option1 None *InputSlot Upper
*UIConstraints: *Option1 None *InputSlot Middle
*UIConstraints: *Option1 None *InputSlot Lower
*UIConstraints: *Option1 1Tray *InputSlot Middle
*UIConstraints: *Option1 1Tray *InputSlot Lower
*UIConstraints: *Option1 2Tray *InputSlot Lower
*UIConstraints: *Option2 False *Duplex DuplexTumble
*UIConstraints: *Option2 False *Duplex DuplexNoTumble
*UIConstraints: *InputSlot Top *PageSize Letter
*UIConstraints: *InputSlot Top *PageSize Statement
*UIConstraints: *InputSlot Top *PageSize Legal
*UIConstraints: *InputSlot Top *PageSize Tabloid
*UIConstraints: *InputSlot Top *PageSize GLT
*UIConstraints: *InputSlot Top *PageSize FanFoldGermanLegal
*UIConstraints: *InputSlot Top *PageSize Executive
*UIConstraints: *InputSlot Top *PageSize EnvMonarch
*UIConstraints: *InputSlot Top *PageSize EnvC6
*UIConstraints: *InputSlot Top *PageSize EnvC5
*UIConstraints: *InputSlot Top *PageSize EnvDL
*UIConstraints: *InputSlot Top *PageSize EnvISOB5
*UIConstraints: *InputSlot Top *PageSize Env10
*UIConstraints: *InputSlot Top *PageSize Folio
*UIConstraints: *InputSlot Upper *PageSize A5.Transverse
*UIConstraints: *InputSlot Upper *PageSize Statement
*UIConstraints: *InputSlot Upper *PageSize GLT
*UIConstraints: *InputSlot Upper *PageSize FanFoldGermanLegal
*UIConstraints: *InputSlot Upper *PageSize Executive
*UIConstraints: *InputSlot Upper *PageSize EnvMonarch
*UIConstraints: *InputSlot Upper *PageSize EnvC6
*UIConstraints: *InputSlot Upper *PageSize EnvC5
*UIConstraints: *InputSlot Upper *PageSize EnvDL
*UIConstraints: *InputSlot Upper *PageSize EnvISOB5
*UIConstraints: *InputSlot Upper *PageSize Env10
*UIConstraints: *InputSlot Upper *PageSize A3F
*UIConstraints: *InputSlot Middle *PageSize A5.Transverse
*UIConstraints: *InputSlot Middle *PageSize Statement
*UIConstraints: *InputSlot Middle *PageSize GLT
*UIConstraints: *InputSlot Middle *PageSize FanFoldGermanLegal
*UIConstraints: *InputSlot Middle *PageSize Executive
*UIConstraints: *InputSlot Middle *PageSize EnvMonarch
*UIConstraints: *InputSlot Middle *PageSize EnvC6
*UIConstraints: *InputSlot Middle *PageSize EnvC5
*UIConstraints: *InputSlot Middle *PageSize EnvDL
*UIConstraints: *InputSlot Middle *PageSize EnvISOB5
*UIConstraints: *InputSlot Middle *PageSize Env10
*UIConstraints: *InputSlot Middle *PageSize A3F
*UIConstraints: *InputSlot Lower *PageSize A5.Transverse
*UIConstraints: *InputSlot Lower *PageSize Statement
*UIConstraints: *InputSlot Lower *PageSize GLT
*UIConstraints: *InputSlot Lower *PageSize FanFoldGermanLegal
*UIConstraints: *InputSlot Lower *PageSize Executive
*UIConstraints: *InputSlot Lower *PageSize EnvMonarch
*UIConstraints: *InputSlot Lower *PageSize EnvC6
*UIConstraints: *InputSlot Lower *PageSize EnvC5
*UIConstraints: *InputSlot Lower *PageSize EnvDL
*UIConstraints: *InputSlot Lower *PageSize EnvISOB5
*UIConstraints: *InputSlot Lower *PageSize Env10
*UIConstraints: *InputSlot Lower *PageSize A3F
*UIConstraints: *Duplex DuplexTumble *PageSize Statement
*UIConstraints: *Duplex DuplexTumble *PageSize EnvMonarch
*UIConstraints: *Duplex DuplexTumble *PageSize EnvC6
*UIConstraints: *Duplex DuplexTumble *PageSize EnvC5
*UIConstraints: *Duplex DuplexTumble *PageSize EnvDL
*UIConstraints: *Duplex DuplexTumble *PageSize EnvISOB5
*UIConstraints: *Duplex DuplexTumble *PageSize Env10
*UIConstraints: *Duplex DuplexNoTumble *PageSize Statement
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvMonarch
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvC6
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvC5
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvDL
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvISOB5
*UIConstraints: *Duplex DuplexNoTumble *PageSize Env10
*UIConstraints: *InputSlot Top *PageRegion Letter
*UIConstraints: *InputSlot Top *PageRegion Statement
*UIConstraints: *InputSlot Top *PageRegion Legal
*UIConstraints: *InputSlot Top *PageRegion Tabloid
*UIConstraints: *InputSlot Top *PageRegion GLT
*UIConstraints: *InputSlot Top *PageRegion FanFoldGermanLegal
*UIConstraints: *InputSlot Top *PageRegion Executive
*UIConstraints: *InputSlot Top *PageRegion EnvMonarch
*UIConstraints: *InputSlot Top *PageRegion EnvC6
*UIConstraints: *InputSlot Top *PageRegion EnvC5
*UIConstraints: *InputSlot Top *PageRegion EnvDL
*UIConstraints: *InputSlot Top *PageRegion EnvISOB5
*UIConstraints: *InputSlot Top *PageRegion Env10
*UIConstraints: *InputSlot Top *PageRegion Folio
*UIConstraints: *InputSlot Upper *PageRegion A5.Transverse
*UIConstraints: *InputSlot Upper *PageRegion Statement
*UIConstraints: *InputSlot Upper *PageRegion GLT
*UIConstraints: *InputSlot Upper *PageRegion FanFoldGermanLegal
*UIConstraints: *InputSlot Upper *PageRegion Executive
*UIConstraints: *InputSlot Upper *PageRegion EnvMonarch
*UIConstraints: *InputSlot Upper *PageRegion EnvC6
*UIConstraints: *InputSlot Upper *PageRegion EnvC5
*UIConstraints: *InputSlot Upper *PageRegion EnvDL
*UIConstraints: *InputSlot Upper *PageRegion EnvISOB5
*UIConstraints: *InputSlot Upper *PageRegion Env10
*UIConstraints: *InputSlot Upper *PageRegion A3F
*UIConstraints: *InputSlot Middle *PageRegion A5.Transverse
*UIConstraints: *InputSlot Middle *PageRegion Statement
*UIConstraints: *InputSlot Middle *PageRegion GLT
*UIConstraints: *InputSlot Middle *PageRegion FanFoldGermanLegal
*UIConstraints: *InputSlot Middle *PageRegion Executive
*UIConstraints: *InputSlot Middle *PageRegion EnvMonarch
*UIConstraints: *InputSlot Middle *PageRegion EnvC6
*UIConstraints: *InputSlot Middle *PageRegion EnvC5
*UIConstraints: *InputSlot Middle *PageRegion EnvDL
*UIConstraints: *InputSlot Middle *PageRegion EnvISOB5
*UIConstraints: *InputSlot Middle *PageRegion Env10
*UIConstraints: *InputSlot Middle *PageRegion A3F
*UIConstraints: *InputSlot Lower *PageRegion A5.Transverse
*UIConstraints: *InputSlot Lower *PageRegion Statement
*UIConstraints: *InputSlot Lower *PageRegion GLT
*UIConstraints: *InputSlot Lower *PageRegion FanFoldGermanLegal
*UIConstraints: *InputSlot Lower *PageRegion Executive
*UIConstraints: *InputSlot Lower *PageRegion EnvMonarch
*UIConstraints: *InputSlot Lower *PageRegion EnvC6
*UIConstraints: *InputSlot Lower *PageRegion EnvC5
*UIConstraints: *InputSlot Lower *PageRegion EnvDL
*UIConstraints: *InputSlot Lower *PageRegion EnvISOB5
*UIConstraints: *InputSlot Lower *PageRegion Env10
*UIConstraints: *InputSlot Lower *PageRegion A3F
*UIConstraints: *Duplex DuplexTumble *PageRegion Statement
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvMonarch
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvC6
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvC5
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvDL
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvISOB5
*UIConstraints: *Duplex DuplexTumble *PageRegion Env10
*UIConstraints: *Duplex DuplexNoTumble *PageRegion Statement
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvMonarch
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvC6
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvC5
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvDL
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvISOB5
*UIConstraints: *Duplex DuplexNoTumble *PageRegion Env10
*UIConstraints: *InputSlot MSI *MediaType Plain
*UIConstraints: *InputSlot MSI *MediaType Letterhead
*UIConstraints: *InputSlot MSI *MediaType Recycled
*UIConstraints: *InputSlot MSI *MediaType Color
*UIConstraints: *InputSlot MSI *MediaType PrePrinted
*UIConstraints: *InputSlot MSI *MediaType Semi_Thick
*UIConstraints: *InputSlot Top *MediaType Plain
*UIConstraints: *InputSlot Top *MediaType Transparency
*UIConstraints: *InputSlot Top *MediaType Thick
*UIConstraints: *InputSlot Top *MediaType Thick_Back
*UIConstraints: *InputSlot Top *MediaType Extra_Thick
*UIConstraints: *InputSlot Top *MediaType Extra_Thick_Back
*UIConstraints: *InputSlot Top *MediaType Super_Thick
*UIConstraints: *InputSlot Top *MediaType Super_Thick_Back
*UIConstraints: *InputSlot Top *MediaType Coated
*UIConstraints: *InputSlot Top *MediaType Coated_Back
*UIConstraints: *InputSlot Top *MediaType Labels
*UIConstraints: *InputSlot Top *MediaType Letterhead
*UIConstraints: *InputSlot Top *MediaType Recycled
*UIConstraints: *InputSlot Top *MediaType Color
*UIConstraints: *InputSlot Top *MediaType PrePrinted
*UIConstraints: *InputSlot Top *MediaType Semi_Thick
*UIConstraints: *InputSlot Upper *MediaType Plain
*UIConstraints: *InputSlot Upper *MediaType Transparency
*UIConstraints: *InputSlot Upper *MediaType Thick
*UIConstraints: *InputSlot Upper *MediaType Thick_Back
*UIConstraints: *InputSlot Upper *MediaType Extra_Thick
*UIConstraints: *InputSlot Upper *MediaType Extra_Thick_Back
*UIConstraints: *InputSlot Upper *MediaType Super_Thick
*UIConstraints: *InputSlot Upper *MediaType Super_Thick_Back
*UIConstraints: *InputSlot Upper *MediaType Coated
*UIConstraints: *InputSlot Upper *MediaType Coated_Back
*UIConstraints: *InputSlot Upper *MediaType Labels
*UIConstraints: *InputSlot Upper *MediaType Letterhead
*UIConstraints: *InputSlot Upper *MediaType Recycled
*UIConstraints: *InputSlot Upper *MediaType Color
*UIConstraints: *InputSlot Upper *MediaType PrePrinted
*UIConstraints: *InputSlot Upper *MediaType Semi_Thick
*UIConstraints: *InputSlot Middle *MediaType Plain
*UIConstraints: *InputSlot Middle *MediaType Transparency
*UIConstraints: *InputSlot Middle *MediaType Thick
*UIConstraints: *InputSlot Middle *MediaType Thick_Back
*UIConstraints: *InputSlot Middle *MediaType Extra_Thick
*UIConstraints: *InputSlot Middle *MediaType Extra_Thick_Back
*UIConstraints: *InputSlot Middle *MediaType Super_Thick
*UIConstraints: *InputSlot Middle *MediaType Super_Thick_Back
*UIConstraints: *InputSlot Middle *MediaType Coated
*UIConstraints: *InputSlot Middle *MediaType Coated_Back
*UIConstraints: *InputSlot Middle *MediaType Labels
*UIConstraints: *InputSlot Middle *MediaType Letterhead
*UIConstraints: *InputSlot Middle *MediaType Recycled
*UIConstraints: *InputSlot Middle *MediaType Color
*UIConstraints: *InputSlot Middle *MediaType PrePrinted
*UIConstraints: *InputSlot Middle *MediaType Semi_Thick
*UIConstraints: *InputSlot Lower *MediaType Plain
*UIConstraints: *InputSlot Lower *MediaType Transparency
*UIConstraints: *InputSlot Lower *MediaType Thick
*UIConstraints: *InputSlot Lower *MediaType Thick_Back
*UIConstraints: *InputSlot Lower *MediaType Extra_Thick
*UIConstraints: *InputSlot Lower *MediaType Extra_Thick_Back
*UIConstraints: *InputSlot Lower *MediaType Super_Thick
*UIConstraints: *InputSlot Lower *MediaType Super_Thick_Back
*UIConstraints: *InputSlot Lower *MediaType Coated
*UIConstraints: *InputSlot Lower *MediaType Coated_Back
*UIConstraints: *InputSlot Lower *MediaType Labels
*UIConstraints: *InputSlot Lower *MediaType Letterhead
*UIConstraints: *InputSlot Lower *MediaType Recycled
*UIConstraints: *InputSlot Lower *MediaType Color
*UIConstraints: *InputSlot Lower *MediaType PrePrinted
*UIConstraints: *InputSlot Lower *MediaType Semi_Thick
*UIConstraints: *Duplex DuplexTumble *MediaType Plain_Back
*UIConstraints: *Duplex DuplexTumble *MediaType Transparency
*UIConstraints: *Duplex DuplexTumble *MediaType Thick_Back
*UIConstraints: *Duplex DuplexTumble *MediaType Extra_Thick_Back
*UIConstraints: *Duplex DuplexTumble *MediaType Super_Thick_Back
*UIConstraints: *Duplex DuplexTumble *MediaType Coated_Back
*UIConstraints: *Duplex DuplexTumble *MediaType Labels
*UIConstraints: *Duplex DuplexNoTumble *MediaType Plain_Back
*UIConstraints: *Duplex DuplexNoTumble *MediaType Transparency
*UIConstraints: *Duplex DuplexNoTumble *MediaType Thick_Back
*UIConstraints: *Duplex DuplexNoTumble *MediaType Extra_Thick_Back
*UIConstraints: *Duplex DuplexNoTumble *MediaType Super_Thick_Back
*UIConstraints: *Duplex DuplexNoTumble *MediaType Coated_Back
*UIConstraints: *Duplex DuplexNoTumble *MediaType Labels
*% ======= Reversed UI =========
*UIConstraints: *InputSlot Upper *Option1 None
*UIConstraints: *InputSlot Middle *Option1 None
*UIConstraints: *InputSlot Lower *Option1 None
*UIConstraints: *InputSlot Middle *Option1 1Tray
*UIConstraints: *InputSlot Lower *Option1 1Tray
*UIConstraints: *InputSlot Lower *Option1 2Tray
*UIConstraints: *Duplex DuplexTumble *Option2 False
*UIConstraints: *Duplex DuplexNoTumble *Option2 False
*UIConstraints: *PageSize Letter *InputSlot Top
*UIConstraints: *PageSize Statement *InputSlot Top
*UIConstraints: *PageSize Legal *InputSlot Top
*UIConstraints: *PageSize Tabloid *InputSlot Top
*UIConstraints: *PageSize GLT *InputSlot Top
*UIConstraints: *PageSize FanFoldGermanLegal *InputSlot Top
*UIConstraints: *PageSize Executive *InputSlot Top
*UIConstraints: *PageSize EnvMonarch *InputSlot Top
*UIConstraints: *PageSize EnvC6 *InputSlot Top
*UIConstraints: *PageSize EnvC5 *InputSlot Top
*UIConstraints: *PageSize EnvDL *InputSlot Top
*UIConstraints: *PageSize EnvISOB5 *InputSlot Top
*UIConstraints: *PageSize Env10 *InputSlot Top
*UIConstraints: *PageSize Folio *InputSlot Top
*UIConstraints: *PageSize A5.Transverse *InputSlot Upper
*UIConstraints: *PageSize Statement *InputSlot Upper
*UIConstraints: *PageSize GLT *InputSlot Upper
*UIConstraints: *PageSize FanFoldGermanLegal *InputSlot Upper
*UIConstraints: *PageSize Executive *InputSlot Upper
*UIConstraints: *PageSize EnvMonarch *InputSlot Upper
*UIConstraints: *PageSize EnvC6 *InputSlot Upper
*UIConstraints: *PageSize EnvC5 *InputSlot Upper
*UIConstraints: *PageSize EnvDL *InputSlot Upper
*UIConstraints: *PageSize EnvISOB5 *InputSlot Upper
*UIConstraints: *PageSize Env10 *InputSlot Upper
*UIConstraints: *PageSize A3F *InputSlot Upper
*UIConstraints: *PageSize A5.Transverse *InputSlot Lower
*UIConstraints: *PageSize Statement *InputSlot Lower
*UIConstraints: *PageSize GLT *InputSlot Lower
*UIConstraints: *PageSize FanFoldGermanLegal *InputSlot Lower
*UIConstraints: *PageSize Executive *InputSlot Lower
*UIConstraints: *PageSize EnvMonarch *InputSlot Lower
*UIConstraints: *PageSize EnvC6 *InputSlot Lower
*UIConstraints: *PageSize EnvC5 *InputSlot Lower
*UIConstraints: *PageSize EnvDL *InputSlot Lower
*UIConstraints: *PageSize EnvISOB5 *InputSlot Lower
*UIConstraints: *PageSize Env10 *InputSlot Lower
*UIConstraints: *PageSize A3F *InputSlot Lower
*UIConstraints: *PageSize A5.Transverse *InputSlot Middle
*UIConstraints: *PageSize Statement *InputSlot Middle
*UIConstraints: *PageSize GLT *InputSlot Middle
*UIConstraints: *PageSize FanFoldGermanLegal *InputSlot Middle
*UIConstraints: *PageSize Executive *InputSlot Middle
*UIConstraints: *PageSize EnvMonarch *InputSlot Middle
*UIConstraints: *PageSize EnvC6 *InputSlot Middle
*UIConstraints: *PageSize EnvC5 *InputSlot Middle
*UIConstraints: *PageSize EnvDL *InputSlot Middle
*UIConstraints: *PageSize EnvISOB5 *InputSlot Middle
*UIConstraints: *PageSize Env10 *InputSlot Middle
*UIConstraints: *PageSize A3F *InputSlot Middle
*UIConstraints: *PageSize Statement *Duplex DuplexTumble
*UIConstraints: *PageSize EnvMonarch *Duplex DuplexTumble
*UIConstraints: *PageSize EnvC6 *Duplex DuplexTumble
*UIConstraints: *PageSize EnvC5 *Duplex DuplexTumble
*UIConstraints: *PageSize EnvDL *Duplex DuplexTumble
*UIConstraints: *PageSize EnvISOB5 *Duplex DuplexTumble
*UIConstraints: *PageSize Env10 *Duplex DuplexTumble
*UIConstraints: *PageSize Statement *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvMonarch *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvC6 *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvC5 *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvDL *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvISOB5 *Duplex DuplexNoTumble
*UIConstraints: *PageSize Env10 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion Letter *InputSlot Top
*UIConstraints: *PageRegion Statement *InputSlot Top
*UIConstraints: *PageRegion Legal *InputSlot Top
*UIConstraints: *PageRegion Tabloid *InputSlot Top
*UIConstraints: *PageRegion GLT *InputSlot Top
*UIConstraints: *PageRegion FanFoldGermanLegal *InputSlot Top
*UIConstraints: *PageRegion Executive *InputSlot Top
*UIConstraints: *PageRegion EnvMonarch *InputSlot Top
*UIConstraints: *PageRegion EnvC6 *InputSlot Top
*UIConstraints: *PageRegion EnvC5 *InputSlot Top
*UIConstraints: *PageRegion EnvDL *InputSlot Top
*UIConstraints: *PageRegion EnvISOB5 *InputSlot Top
*UIConstraints: *PageRegion Env10 *InputSlot Top
*UIConstraints: *PageRegion Folio *InputSlot Top
*UIConstraints: *PageRegion A5.Transverse *InputSlot Upper
*UIConstraints: *PageRegion Statement *InputSlot Upper
*UIConstraints: *PageRegion GLT *InputSlot Upper
*UIConstraints: *PageRegion FanFoldGermanLegal *InputSlot Upper
*UIConstraints: *PageRegion Executive *InputSlot Upper
*UIConstraints: *PageRegion EnvMonarch *InputSlot Upper
*UIConstraints: *PageRegion EnvC6 *InputSlot Upper
*UIConstraints: *PageRegion EnvC5 *InputSlot Upper
*UIConstraints: *PageRegion EnvDL *InputSlot Upper
*UIConstraints: *PageRegion EnvISOB5 *InputSlot Upper
*UIConstraints: *PageRegion Env10 *InputSlot Upper
*UIConstraints: *PageRegion A3F *InputSlot Upper
*UIConstraints: *PageRegion A5.Transverse *InputSlot Lower
*UIConstraints: *PageRegion Statement *InputSlot Lower
*UIConstraints: *PageRegion GLT *InputSlot Lower
*UIConstraints: *PageRegion FanFoldGermanLegal *InputSlot Lower
*UIConstraints: *PageRegion Executive *InputSlot Lower
*UIConstraints: *PageRegion EnvMonarch *InputSlot Lower
*UIConstraints: *PageRegion EnvC6 *InputSlot Lower
*UIConstraints: *PageRegion EnvC5 *InputSlot Lower
*UIConstraints: *PageRegion EnvDL *InputSlot Lower
*UIConstraints: *PageRegion EnvISOB5 *InputSlot Lower
*UIConstraints: *PageRegion Env10 *InputSlot Lower
*UIConstraints: *PageRegion A3F *InputSlot Lower
*UIConstraints: *PageRegion A5.Transverse *InputSlot Middle
*UIConstraints: *PageRegion Statement *InputSlot Middle
*UIConstraints: *PageRegion GLT *InputSlot Middle
*UIConstraints: *PageRegion FanFoldGermanLegal *InputSlot Middle
*UIConstraints: *PageRegion Executive *InputSlot Middle
*UIConstraints: *PageRegion EnvMonarch *InputSlot Middle
*UIConstraints: *PageRegion EnvC6 *InputSlot Middle
*UIConstraints: *PageRegion EnvC5 *InputSlot Middle
*UIConstraints: *PageRegion EnvDL *InputSlot Middle
*UIConstraints: *PageRegion EnvISOB5 *InputSlot Middle
*UIConstraints: *PageRegion Env10 *InputSlot Middle
*UIConstraints: *PageRegion A3F *InputSlot Middle
*UIConstraints: *PageRegion Statement *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvC6 *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvC5 *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvDL *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvISOB5 *Duplex DuplexTumble
*UIConstraints: *PageRegion Env10 *Duplex DuplexTumble
*UIConstraints: *PageRegion Statement *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvC6 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvC5 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvDL *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvISOB5 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion Env10 *Duplex DuplexNoTumble
*UIConstraints: *MediaType Plain *InputSlot MSI
*UIConstraints: *MediaType Letterhead *InputSlot MSI
*UIConstraints: *MediaType Recycled *InputSlot MSI
*UIConstraints: *MediaType Color *InputSlot MSI
*UIConstraints: *MediaType PrePrinted *InputSlot MSI
*UIConstraints: *MediaType Semi_Thick *InputSlot MSI
*UIConstraints: *MediaType Plain *InputSlot Top
*UIConstraints: *MediaType Transparency *InputSlot Top
*UIConstraints: *MediaType Thick *InputSlot Top
*UIConstraints: *MediaType Thick_Back *InputSlot Top
*UIConstraints: *MediaType Extra_Thick *InputSlot Top
*UIConstraints: *MediaType Extra_Thick_Back *InputSlot Top
*UIConstraints: *MediaType Super_Thick *InputSlot Top
*UIConstraints: *MediaType Super_Thick_Back *InputSlot Top
*UIConstraints: *MediaType Coated *InputSlot Top
*UIConstraints: *MediaType Coated_Back *InputSlot Top
*UIConstraints: *MediaType Labels *InputSlot Top
*UIConstraints: *MediaType Letterhead *InputSlot Top
*UIConstraints: *MediaType Recycled *InputSlot Top
*UIConstraints: *MediaType Color *InputSlot Top
*UIConstraints: *MediaType PrePrinted *InputSlot Top
*UIConstraints: *MediaType Semi_Thick *InputSlot Top
*UIConstraints: *MediaType Plain *InputSlot Upper
*UIConstraints: *MediaType Transparency *InputSlot Upper
*UIConstraints: *MediaType Thick *InputSlot Upper
*UIConstraints: *MediaType Thick_Back *InputSlot Upper
*UIConstraints: *MediaType Extra_Thick *InputSlot Upper
*UIConstraints: *MediaType Extra_Thick_Back *InputSlot Upper
*UIConstraints: *MediaType Super_Thick *InputSlot Upper
*UIConstraints: *MediaType Super_Thick_Back *InputSlot Upper
*UIConstraints: *MediaType Coated *InputSlot Upper
*UIConstraints: *MediaType Coated_Back *InputSlot Upper
*UIConstraints: *MediaType Labels *InputSlot Upper
*UIConstraints: *MediaType Letterhead *InputSlot Upper
*UIConstraints: *MediaType Recycled *InputSlot Upper
*UIConstraints: *MediaType Color *InputSlot Upper
*UIConstraints: *MediaType PrePrinted *InputSlot Upper
*UIConstraints: *MediaType Semi_Thick *InputSlot Upper
*UIConstraints: *MediaType Plain *InputSlot Middle
*UIConstraints: *MediaType Transparency *InputSlot Middle
*UIConstraints: *MediaType Thick *InputSlot Middle
*UIConstraints: *MediaType Thick_Back *InputSlot Middle
*UIConstraints: *MediaType Extra_Thick *InputSlot Middle
*UIConstraints: *MediaType Extra_Thick_Back *InputSlot Middle
*UIConstraints: *MediaType Super_Thick *InputSlot Middle
*UIConstraints: *MediaType Super_Thick_Back *InputSlot Middle
*UIConstraints: *MediaType Coated *InputSlot Middle
*UIConstraints: *MediaType Coated_Back *InputSlot Middle
*UIConstraints: *MediaType Labels *InputSlot Middle
*UIConstraints: *MediaType Letterhead *InputSlot Middle
*UIConstraints: *MediaType Recycled *InputSlot Middle
*UIConstraints: *MediaType Color *InputSlot Middle
*UIConstraints: *MediaType PrePrinted *InputSlot Middle
*UIConstraints: *MediaType Semi_Thick *InputSlot Middle
*UIConstraints: *MediaType Plain *InputSlot Lower
*UIConstraints: *MediaType Transparency *InputSlot Lower
*UIConstraints: *MediaType Thick *InputSlot Lower
*UIConstraints: *MediaType Thick_Back *InputSlot Lower
*UIConstraints: *MediaType Extra_Thick *InputSlot Lower
*UIConstraints: *MediaType Extra_Thick_Back *InputSlot Lower
*UIConstraints: *MediaType Super_Thick *InputSlot Lower
*UIConstraints: *MediaType Super_Thick_Back *InputSlot Lower
*UIConstraints: *MediaType Coated *InputSlot Lower
*UIConstraints: *MediaType Coated_Back *InputSlot Lower
*UIConstraints: *MediaType Labels *InputSlot Lower
*UIConstraints: *MediaType Letterhead *InputSlot Lower
*UIConstraints: *MediaType Recycled *InputSlot Lower
*UIConstraints: *MediaType Color *InputSlot Lower
*UIConstraints: *MediaType PrePrinted *InputSlot Lower
*UIConstraints: *MediaType Semi_Thick *InputSlot Lower
*UIConstraints: *MediaType Plain_Back *Duplex DuplexTumble
*UIConstraints: *MediaType Transparency *Duplex DuplexTumble
*UIConstraints: *MediaType Thick_Back *Duplex DuplexTumble
*UIConstraints: *MediaType Extra_Thick_Back *Duplex DuplexTumble
*UIConstraints: *MediaType Super_Thick_Back *Duplex DuplexTumble
*UIConstraints: *MediaType Coated_Back *Duplex DuplexTumble
*UIConstraints: *MediaType Labels *Duplex DuplexTumble
*UIConstraints: *MediaType Plain_Back *Duplex DuplexNoTumble
*UIConstraints: *MediaType Transparency *Duplex DuplexNoTumble
*UIConstraints: *MediaType Thick_Back *Duplex DuplexNoTumble
*UIConstraints: *MediaType Extra_Thick_Back *Duplex DuplexNoTumble
*UIConstraints: *MediaType Super_Thick_Back *Duplex DuplexNoTumble
*UIConstraints: *MediaType Coated_Back *Duplex DuplexNoTumble
*UIConstraints: *MediaType Labels *Duplex DuplexNoTumble
*%%%%%%%% Constraints for Rendering %%%%%%%%%
*UIConstraints: *EPStartSide True *Duplex None
*UIConstraints: *Duplex None *EPStartSide True
*%*********** Device Capabilities ************
*LanguageLevel: "3"
*ColorDevice: True
*DefaultColorSpace: CMYK
*Throughput: "25.6"
*1284Modes Parallel: Compat Nibble ECP
*TTRasterizer: Type42
*?TTRasterizer: "
save
42 /FontType resourcestatus {pop pop (Type42)}{(No Type42)}ifelse = flush
restore
"
*End
*Protocols: BCP TBCP
*% *Protocols: BCP TBCP PJL
*% *JCLBegin: "<1B>%-12345X"
*% *JCLToPSInterpreter: "@PJL ENTER LANGUAGE = POSTSCRIPT <0A>"
*% *JCLEnd: "<1B>%-12345X"
*FreeVM: "737179008"
*VMOption 256Meg: "737179008"
*VMOption 384Meg: "737179008"
*VMOption 512Meg: "737179008"
*VMOption 768Meg: "737179008"
*FCacheSize 256Meg: 30515200
*FCacheSize 384Meg: 30515200
*FCacheSize 512Meg: 30515200
*FCacheSize 768Meg: 19136400
*JobPatchFile 1: "<</Orientation 0 /NumCopies 1>>setpagedevice"
*%********** Installable Options **************
*OpenGroup: InstallableOptions/Installable Options
*OpenUI *InstalledMemory/InstalledMemory: PickOne
*DefaultInstalledMemory: 256Meg
*OrderDependency: 10 AnySetup *InstalledMemory
*InstalledMemory 256Meg/256MB: ""
*InstalledMemory 384Meg/384MB: ""
*InstalledMemory 512Meg/512MB: ""
*InstalledMemory 768Meg/768MB: ""
*?InstalledMemory: "
currentsystemparams /InstalledRam get 1048576 div cvi
[256 384 512 768]
{2 copy eq {exch pop exit}{pop}ifelse} forall
4 string cvs print (Meg) = flush
"
*End
*CloseUI: *InstalledMemory
*OpenUI *Option1/Lower Cassette Unit: PickOne
*DefaultOption1: None
*Option1 None/None: ""
*Option1 1Tray/1 Cassette Unit: ""
*Option1 2Tray/2 Cassette Unit: ""
*Option1 3Tray/3 Cassette Unit: ""
*?Option1: "
save
/CustomProcs /ProcSet findresource /numberofinputtrays get exec
dup dup 4 eq { pop pop (3Tray) }{ 3 eq { pop (2Tray) } { 2 eq { (1Tray) }{ (None) }ifelse }ifelse }ifelse
= flush restore
"
*End
*CloseUI: *Option1
*OpenUI *Option2/Duplex Unit: Boolean
*DefaultOption2: False
*Option2 True/Installed: ""
*Option2 False/Not Installed: ""
*?Option2: "
save
currentpagedevice /Duplex known { (True) }{ (False) } ifelse
= flush restore
"
*End
*CloseUI: *Option2
*CloseGroup: InstallableOptions
*SuggestedJobTimeout: "0"
*SuggestedWaitTimeout: "0"
*PrintPSErrors: True
*FileSystem: True
*?FileSystem: "
save false
(%disk?%)
{ currentdevparams dup /Writeable known
{ /Writeable get {pop true} if } { pop } ifelse
} 10 string /IODevice resourceforall
{(True)}{(False)} ifelse = flush
restore"
*End
*%==== Missing StartJobPassword & SystemParamsPassword in PS ===
*Password: "()"
*ExitServer: "
count 0 eq
{ false } { true exch startjob } ifelse
not {
(WARNING: Cannot modify initial VM.) =
(Missing or invalid password.) =
(Please contact the author of this software.) = flush quit
} if
"
*End
*Reset: "
count 0 eq
{ false } { true exch startjob } ifelse
not {
(WARNING: Cannot reset printer.) =
(Missing or invalid password.) =
(Please contact the author of this software.) = flush quit
} if
systemdict /quit get exec
(WARNING : Printer Reset Failed.) = flush
"
*End
*%Plus90|Minus90|Any
*LandscapeOrientation: Plus90
*%ResScreenFreq 600x600dpi: "150.0"
*%ResScreenAngle 600x600dpi: "45.0"
*%*************** Halftone Information ***************
*% ScreenFreq and ScreenAngle be here in case some
*% application trying to set halftone type to 1
*DefaultHalftoneType: 100
*ScreenFreq: "150.0"
*ScreenAngle: "45.0"
*DefaultScreenProc: Dot
*ScreenProc Dot: "
{abs exch abs 2 copy add 1 gt {1 sub dup mul exch
1 sub dup mul add 1 sub } {dup mul exch dup mul
add 1 exch sub } ifelse } bind
"
*End
*ScreenProc Line: "{ pop } bind"
*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub } bind"
*DefaultTransfer: Null
*Transfer Null: "{ }"
*Transfer Null.Inverse: "{ 1 exch sub } bind"
*%*************** Resolution options ***************
*OpenGroup: EPQualitySettings/Quality
*OpenUI *Resolution/Print Quality: PickOne
*OrderDependency: 40 AnySetup *Resolution
*DefaultResolution: 300dpi
*Resolution 600dpi/Fine: "mark {
<</HWResolution [600.0 600.0]
/DeviceRenderingInfo <</Type 29 /ValuesPerColorComponent 256>>
>> setpagedevice
} stopped cleartomark"
*End
*Resolution 300dpi/Fast: "mark {
<</HWResolution [300.0 300.0]
/DeviceRenderingInfo <</Type 29 /ValuesPerColorComponent 256>>
>> setpagedevice
} stopped cleartomark"
*End
*?Resolution: "
currentpagedevice /HWResolution get 0 get cvi
300 eq
{ (300dpi) }{ (600dpi) } ifelse
= flush "
*End
*CloseUI: *Resolution
*CloseGroup: EPQualitySettings
*%**************** Paper Handling ******************
*OpenUI *PageSize/PageSize: PickOne
*OrderDependency: 100 AnySetup *PageSize
*DefaultPageSize: A4
*PageSize A3/A3: "<</PageSize [842 1191]>> setpagedevice"
*PageSize A4/A4: "<</PageSize [595 842]>> setpagedevice"
*PageSize A5.Transverse/A5: "<</PageSize [420 595]>> setpagedevice"
*PageSize B4/B4 JIS: "<</PageSize [729 1032]>> setpagedevice"
*PageSize B5.Transverse/B5 JIS: "<</PageSize [516 729]>> setpagedevice"
*PageSize Letter/Letter: "<</PageSize [612 792]>> setpagedevice"
*PageSize Statement/HalfLetter: "<</PageSize [396 612]>> setpagedevice"
*PageSize Legal/Legal: "<</PageSize [612 1008]>> setpagedevice"
*PageSize GLT/Gov Letter: "<</PageSize [576 756]>> setpagedevice"
*PageSize FanFoldGermanLegal/Gov Legal: "<</PageSize [612 936]>> setpagedevice"
*PageSize Tabloid/B(Ledger): "<</PageSize [792 1224]>> setpagedevice"
*PageSize Executive/Executive: "<</PageSize [522 756]>> setpagedevice"
*PageSize Folio/F4: "<</PageSize [595 935]>> setpagedevice"
*PageSize A3F/A3F: "<</PageSize [882 1296]>> setpagedevice"
*% *PageSize Postcard/POST: "<</PageSize [284 419]>> setpagedevice"
*% *PageSize DoublePostcard/RNCRD: "<</PageSize [567 420]>> setpagedevice"
*% *PageSize 4Postcard/4CARD: "<</PageSize [567 839]>> setpagedevice"
*% *PageSize EnvChou3Rotated/Y0: "<</PageSize [666 340]>> setpagedevice"
*% *PageSize EnvYou4/Y4: "<</PageSize [298 666]>> setpagedevice"
*% *PageSize EnvMonarch/Y6: "<</PageSize [279 540]>> setpagedevice"
*% *PageSize EnvChou3/CH3: "<</PageSize [340 666]>> setpagedevice"
*% *PageSize EnvKaku2/K2: "<</PageSize [680 941]>> setpagedevice"
*% *PageSize Chouzyaku/Chouzyaku: "<</PageSize [842 3400]>> setpagedevice
*PageSize EnvMonarch/Monarch: "<</PageSize [279 540]>> setpagedevice"
*PageSize EnvISOB5/IB5: "<</PageSize [499 709]>> setpagedevice"
*PageSize Env10/COM10 Env: "<</PageSize [297 684]>> setpagedevice"
*PageSize EnvDL/DL Env: "<</PageSize [312 624]>> setpagedevice"
*PageSize EnvC5/C5 Env: "<</PageSize [459 649]>> setpagedevice"
*PageSize EnvC6/C6 Env: "<</PageSize [323 459]>> setpagedevice"
*?PageSize: "
save
currentpagedevice /PageSize get aload pop
2 copy gt {exch} if
(Unknown)
<<
[595 842] (A4)
[842 1191] (A3)
[420 595] (A5.Transverse)
[729 1032] (B4)
[516 729] (B5.Transverse)
[612 792] (Letter)
[396 612] (Statement)
[612 1008] (Legal)
[576 756] (GLT)
[612 936] (FanFoldGermanLegal)
[792 1224] (Tabloid)
[522 756] (Executive)
[595 935] (Folio)
[882 1296] (A3F)
*% [284 419] (Postcard)
*% [567 420] (DoublePostcard)
*% [567 839] (4Postcard)
*% [666 340] (EnvChou3Rotated)
*% [298 666] (EnvYou4)
*% [340 666] (EnvChou3)
*% [279 540] (EnvMonarch)
*% [680 941] (EnvKaku2)
*% [842 3400] (Chouzyaku)
[279 540] (EnvMonarch)
[499 709] (EnvISOB5)
[297 684] (Env10)
[312 624] (EnvDL)
[459 649] (EnvC5)
[323 459] (EnvC6)
>>
{ exch aload pop 4 index sub abs 5 le exch
5 index sub abs 5 le and
{exch pop exit} {pop} ifelse
} bind forall
= flush pop pop
restore
"
*End
*CloseUI: *PageSize
*OpenUI *PageRegion/PageRegion: PickOne
*OrderDependency: 110 AnySetup *PageRegion
*DefaultPageRegion: A4
*PageRegion A3/A3: "<</PageSize [842 1191]>> setpagedevice"
*PageRegion A4/A4: "<</PageSize [595 842]>> setpagedevice"
*PageRegion A5.Transverse/A5: "<</PageSize [420 595]>> setpagedevice"
*PageRegion B4/B4 JIS: "<</PageSize [729 1032]>> setpagedevice"
*PageRegion B5.Transverse/B5 JIS: "<</PageSize [516 729]>> setpagedevice"
*PageRegion Letter/Letter: "<</PageSize [612 792]>> setpagedevice"
*PageRegion Statement/HalfLetter: "<</PageSize [396 612]>> setpagedevice"
*PageRegion Legal/Legal: "<</PageSize [612 1008]>> setpagedevice"
*PageRegion GLT/Gov Letter: "<</PageSize [576 756]>> setpagedevice"
*PageRegion FanFoldGermanLegal/Gov Legal: "<</PageSize [612 936]>> setpagedevice"
*PageRegion Tabloid/B(Ledger): "<</PageSize [792 1224]>> setpagedevice"
*PageRegion Executive/Executive: "<</PageSize [522 756]>> setpagedevice"
*PageRegion Folio/F4: "<</PageSize [595 935]>> setpagedevice"
*PageRegion A3F/A3F: "<</PageSize [882 1296]>> setpagedevice"
*% *PageRegion Postcard/POST: "<</PageSize [284 419]>> setpagedevice"
*% *PageRegion DoublePostcard/RNCRD: "<</PageSize [567 420]>> setpagedevice"
*% *PageRegion 4Postcard/4CARD: "<</PageSize [567 839]>> setpagedevice"
*% *PageRegion EnvChou3Rotated/Y0: "<</PageSize [666 340]>> setpagedevice"
*% *PageRegion EnvYou4/Y4: "<</PageSize [298 666]>> setpagedevice"
*% *PageRegion EnvMonarch/Y6: "<</PageSize [279 540]>> setpagedevice"
*% *PageRegion EnvChou3/CH3: "<</PageSize [340 666]>> setpagedevice"
*% *PageRegion EnvKaku2/K2: "<</PageSize [680 941]>> setpagedevice"
*% *PageRegion Chouzyaku/Chouzyaku: "<</PageSize [842 3400]>> setpagedevice
*PageRegion EnvMonarch/Monarch: "<</PageSize [279 540]>> setpagedevice"
*PageRegion EnvISOB5/IB5: "<</PageSize [499 709]>> setpagedevice"
*PageRegion Env10/COM10 Env: "<</PageSize [297 684]>> setpagedevice"
*PageRegion EnvDL/DL Env: "<</PageSize [312 624]>> setpagedevice"
*PageRegion EnvC5/C5 Env: "<</PageSize [459 649]>> setpagedevice"
*PageRegion EnvC6/C6 Env: "<</PageSize [323 459]>> setpagedevice"
*CloseUI: *PageRegion
*DefaultImageableArea: A4
*ImageableArea A3/A3: "13.9201 13.98 830.88 1176.06 "
*ImageableArea Tabloid/B(Ledger): "13.92 13.98 780.96 1210.14 "
*ImageableArea A4/A4: "13.9801 14.1601 581.1 830.64 "
*ImageableArea A5.Transverse/A5: "13.9801 13.92 406.14 581.28 "
*ImageableArea B4/B4 JIS: "13.9201 13.98 715.68 1018.14 "
*ImageableArea B5.Transverse/B5 JIS: "13.98 14.1601 502.14 715.44 "
*ImageableArea Letter/Letter: "13.98 14.16 598.14 780.72 "
*ImageableArea Statement/HalfLetter: "13.9801 13.9201 382.14 600.48 "
*ImageableArea GLT/Gov Letter: "13.98 13.9201 562.14 742.56 "
*ImageableArea Legal/Legal: "13.9201 13.9801 600.48 994.14 "
*ImageableArea FanFoldGermanLegal/Gov Legal: "13.9201 13.9801 600.48 922.14 "
*ImageableArea Executive/Executive: "13.98 13.9201 508.14 742.56 "
*ImageableArea A3F/A3F: "13.92 13.98 868.08 1282.02 "
*ImageableArea Folio/F4: "13.92 13.9801 581.28 922.14 "
*ImageableArea EnvISOB5/IB5: "14.1601 13.98 485.04 695.1 "
*ImageableArea Env10/COM10 Env: "14.1601 13.9801 285.36 670.14 "
*ImageableArea EnvMonarch/Monarch: "14.16 13.98 266.16 526.14 "
*ImageableArea EnvDL/DL Env: "14.1601 13.98 300.72 610.14 "
*ImageableArea EnvC5/C5 Env: "14.1601 13.9801 446.64 635.1 "
*ImageableArea EnvC6/C6 Env: "14.1601 13.9801 312.24 445.02 "
*% *ImageableArea Postcard: "13.92 13.98 270.24 406.14 "
*% *ImageableArea DoublePostcard/R Postcard: "13.92 13.98 553.02 408.48 "
*% *ImageableArea 4Postcard: "13.98 14.16 553.02 826.8 "
*% *ImageableArea EnvChou3/Choukei 3: "13.92 13.98 327.84 652.14 "
*% *ImageableArea EnvChou3Rotated/Youkei 0: "13.92 13.98 652.14 327.84 "
*% *ImageableArea EnvYou4/Youkei 4: "14.16 13.98 285.36 652.14 "
*% *ImageableArea EnvMonarch/Youkei 6: "14.16 13.98 266.16 524.94 "
*% *ImageableArea EnvKaku2/Kakukei 2: "14.16 13.98 669.36 926.94 "
*?ImageableArea: "
save
/pr {10 string cvs print ( ) print} def
/prnl {10 string cvs = flush} def
/upperright {100 mul floor 100 div} bind def
/lowerleft {100 mul ceiling 100 div} bind def
/prall {2 {lowerleft pr} repeat upperright pr upperright prnl} def
newpath clippath pathbbox exch 4 2 roll exch prall
restore
"
*End
*DefaultPaperDimension: A4
*PaperDimension A3/A3: "842 1191"
*PaperDimension A4/A4: "595 842"
*PaperDimension A5.Transverse/A5: "420 595"
*PaperDimension B4/B4 JIS: "729 1032"
*PaperDimension B5.Transverse/B5 JIS: "516 729"
*PaperDimension Letter/Letter: "612 792"
*PaperDimension Statement/HalfLetter: "396 612"
*PaperDimension Legal/Legal: "612 1008"
*PaperDimension GLT/Gov Letter: "576 756"
*PaperDimension FanFoldGermanLegal/Gov Legal: "612 936"
*PaperDimension Tabloid/B(Ledger): "792 1224"
*PaperDimension Executive/Executive: "522 756"
*PaperDimension Folio/F4: "595 935"
*PaperDimension A3F/A3F: "882 1296"
*% *PaperDimension Postcard/POST: "284 419"
*% *PaperDimension DoublePostcard/RNCRD: "567 420"
*% *PaperDimension 4Postcard/4CARD: "567 839"
*% *PaperDimension EnvChou3Rotated/Y0: "666 340"
*% *PaperDimension EnvYou4/Y4: "298 666"
*% *PaperDimension EnvMonarch/Y6: "279 540"
*% *PaperDimension EnvChou3/CH3: "340 666"
*% *PaperDimension EnvKaku2/K2: "680 941"
*% *PaperDimension Chouzyaku/Chouzyaku: "842 3400
*PaperDimension EnvMonarch/Monarch: "279 540"
*PaperDimension EnvISOB5/IB5: "499 709"
*PaperDimension Env10/COM10 Env: "297 684"
*PaperDimension EnvDL/DL Env: "312 624"
*PaperDimension EnvC5/C5 Env: "459 649"
*PaperDimension EnvC6/C6 Env: "323 459"
*% ====== Custom PageSize ======
*NonUIConstraints: *CustomPageSize True *InputSlot Top
*NonUIConstraints: *CustomPageSize True *InputSlot Upper
*NonUIConstraints: *CustomPageSize True *InputSlot Middle
*NonUIConstraints: *CustomPageSize True *InputSlot Lower
*NonUIConstraints: *InputSlot Top *CustomPageSize True
*NonUIConstraints: *InputSlot Upper *CustomPageSize True
*NonUIConstraints: *InputSlot Middle *CustomPageSize True
*NonUIConstraints: *InputSlot Lower *CustomPageSize True
*NonUIConstraints: *CustomPageSize True *Duplex DuplexTumble
*NonUIConstraints: *CustomPageSize True *Duplex DuplexNoTumble
*NonUIConstraints: *Duplex DuplexTumble *CustomPageSize True
*NonUIConstraints: *Duplex DuplexNoTumble *CustomPageSize True
*HWMargins: 14 14 14 14
*LeadingEdge Long: ""
*LeadingEdge Short: ""
*DefaultLeadingEdge: Long
*MaxMediaWidth: "882"
*MaxMediaHeight: "3401"
*NonUIOrderDependency: 160 AnySetup *CustomPageSize
*CustomPageSize True: "
pop pop
<< /Orientation 3 -1 roll dup 2 mod 0 eq {1 add} {1 sub} ifelse
/PageSize [7 -2 roll]
/MediaPosition 0
>> setpagedevice"
*End
*ParamCustomPageSize Width: 1 points 255 882
*ParamCustomPageSize Height: 2 points 396 3401
*ParamCustomPageSize Orientation: 3 int 0 3
*ParamCustomPageSize WidthOffset: 4 points 0 0
*ParamCustomPageSize HeightOffset: 5 points 0 0
*% ==== MediaType ====
*% Should be after PageSize code
*% Must be after InputSlot
*OpenGroup: EPQualitySettings/Quality
*OpenUI *MediaType/MediaType: PickOne
*OrderDependency: 150 AnySetup *MediaType
*DefaultMediaType: Plain
*MediaType Unspecified/Unspecified: "mark {
<</MediaType (Unspecified)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Plain/Plain: "mark {
<</MediaType (Plain)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Plain_Back/Plain (Back): "mark {
<</MediaType (Plain_Back)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Transparency/Transparency: "mark {
<</MediaType (Transparency)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Thick/Thick: "mark {
<</MediaType (Thick)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Thick_Back/Thick (Back): "mark {
<</MediaType (Thick_Back)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Extra_Thick/Extra Thick: "mark {
<</MediaType (Extra_Thick)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Extra_Thick_Back/Extra Thick (Back): "mark {
<</MediaType (Extra_Thick_Back)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Super_Thick/Super Thick: "mark {
<</MediaType (Super_Thick)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Super_Thick_Back/Super Thick (Back): "mark {
<</MediaType (Super_Thick_Back)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Coated/Coated: "mark {
<</MediaType (Coated)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Coated_Back/Coated (Back): "mark {
<</MediaType (Coated_Back)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Labels/Labels: "mark {
<</MediaType (Labels)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Letterhead/Letterhead: "mark {
<</MediaType (Letterhead)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Recycled/Recycled: "mark {
<</MediaType (Recycled)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Color/Color: "mark {
<</MediaType (Color)>> setpagedevice
} stopped cleartomark"
*End
*MediaType Semi_Thick/Semi-Thick: "mark {
<</MediaType (Semi_Thick)>> setpagedevice
} stopped cleartomark"
*End
*MediaType PrePrinted/PrePrinted: "mark {
<</MediaType (Preprinted)>> setpagedevice
} stopped cleartomark"
*End
*?MediaType: "
save
currentpagedevice /MediaType get dup
null eq { pop (Plain) } if = flush
restore
"
*End
*CloseUI: *MediaType
*CloseGroup: EPQualitySettings
*%************* Input Sources **************
*% InputSlot must be before MediaType
*% We need to ensure MediaType is set to
*% Plain or ManualFeed will fail setting
*% to false. So reset here - WDS.
*RequiresPageRegion All: True
*OpenUI *InputSlot/InputSlot: PickOne
*OrderDependency: 20 AnySetup *InputSlot
*DefaultInputSlot: Unknown
*InputSlot Unknown/Auto Selection: ""
*InputSlot MSI/MP Tray: "
mark {
<< /ManualFeed false /MediaPosition 0 >> setpagedevice
} stopped cleartomark
"
*End
*InputSlot Top/Cassette 1: "
mark {
<< /ManualFeed false /MediaPosition 1 >> setpagedevice
} stopped cleartomark
"
*End
*InputSlot Upper/Cassette 2: "
mark {
<< /ManualFeed false /MediaPosition 2 >> setpagedevice
} stopped cleartomark
"
*End
*InputSlot Middle/Cassette 3: "
mark {
<< /ManualFeed false /MediaPosition 3 >> setpagedevice
} stopped cleartomark
"
*End
*InputSlot Lower/Cassette 4: "
mark {
<< /ManualFeed false /MediaPosition 4 >> setpagedevice
} stopped cleartomark
"
*End
*InputSlot ManualFirst/Manual Feed 1st Page:"
mark {
<< /ManualFeed true /MediaPosition 0 >> setpagedevice
1 /CustomProcs /ProcSet findresource /setmanualfeedfirstall get exec
} stopped cleartomark
"
*End
*InputSlot ManualAll/Manual Feed Each Page:"
mark {
<< /ManualFeed true /MediaPosition 0 >> setpagedevice
2 /CustomProcs /ProcSet findresource /setmanualfeedfirstall get exec
} stopped cleartomark
"
*End
*?InputSlot: "
save
currentpagedevice dup /ManualFeed get
{pop (Manual)}
{
/MediaPosition get dup null eq {pop (Unknown)}
{[(MSI) (Top) (Upper) (Middle) (Lower)] exch get} ifelse
} ifelse = flush
restore
"
*End
*CloseUI: *InputSlot
*%============ Be here as adviced ============
*DefaultOutputOrder: Normal
*%********** Printer Features **************
*%******** ColorMode - Must preceed ColorQuality ********
*OpenGroup: EPColorSettings/Color
*OpenUI *EPRendering/Color Mode: PickOne
*DefaultEPRendering: CMYK
*OrderDependency: 60 AnySetup *EPRendering
*EPRendering None/Monochrome: "
<</ProcessColorModel (DeviceGray)>>
setpagedevice"
*End
*% For color mode, ValuesPerColorComponent is set in ColorQuality
*EPRendering CMYK/Color: "
<</ProcessColorModel (DeviceCMYK)>>
setpagedevice"
*End
*?EPRendering: "
save
<</DeviceGray /None>>
currentpagedevice /ProcessColorModel get 2 copy known
{
get
}
{
pop pop (CMYK)
}ifelse = flush
restore
"
*End
*CloseUI: *EPRendering
*CloseGroup: EPColorSettings
*OpenUI *Collate/Collate: Boolean
*DefaultCollate: False
*OrderDependency: 170 AnySetup *Collate
*Collate True/On: "<</Collate true>> setpagedevice"
*Collate False/Off: "<</Collate false>> setpagedevice"
*?Collate: "
currentpagedevice /Collate get {(True)}{(False)}ifelse = flush
"
*End
*CloseUI: *Collate
*OpenUI *Duplex/Duplex: PickOne
*DefaultDuplex: None
*OrderDependency: 180 AnySetup *Duplex
*Duplex None/Simplex: "<</Duplex false>> setpagedevice"
*Duplex DuplexTumble/Short Edge Binding: "
<</Duplex true /Tumble true>> setpagedevice
"
*End
*Duplex DuplexNoTumble/Long Edge Binding: "
<</Duplex true /Tumble false>> setpagedevice
"
*End
*?Duplex: "
save
currentpagedevice dup /Duplex 2 copy known
{get {/Tumble get {(DuplexTumble)}{(DuplexNoTumble)} ifelse}
{pop (None)} ifelse} {pop pop pop (None)}ifelse = flush
restore
"
*End
*CloseUI: *Duplex
*OpenGroup: EPQualitySettings/Quality
*OpenUI *EPScreens/Screen: PickOne
*DefaultEPScreens: 2
*OrderDependency: 90 AnySetup *EPScreens
*EPScreens 2/Auto(Gradation): "
<< /PostRenderingEnhanceDetails <</Type 43 /ScreenValue 2>> >>
setpagedevice"
*End
*EPScreens 3/Auto(Definition): "
<< /PostRenderingEnhanceDetails <</Type 43 /ScreenValue 3>> >>
setpagedevice"
*End
*EPScreens 0/Increase Gradation: "
<< /PostRenderingEnhanceDetails <</Type 43 /ScreenValue 0>> >>
setpagedevice"
*End
*EPScreens 1/Increase Definition: "
<< /PostRenderingEnhanceDetails <</Type 43 /ScreenValue 1>> >>
setpagedevice"
*End
*?EPScreens: "
save
currentpagedevice /PostRenderingEnhanceDetails get
/ScreenValue get = flush
restore
"
*End
*CloseUI: *EPScreens
*CloseGroup: EPQualitySettings
*%******** Pure Black ********
*OpenGroup: EPColorSettings/Color
*OpenUI *EPPureBlack/Pure Black Mode: PickOne
*DefaultEPPureBlack: PBoff
*OrderDependency: 140 AnySetup *EPPureBlack
*EPPureBlack PBoff/Off: "
<</DeviceRenderingInfo <</Type 29 /PureBlack 0>> >>
setpagedevice"
*End
*EPPureBlack PBall/On: "
<</DeviceRenderingInfo <</Type 29 /PureBlack 1>> >>
setpagedevice"
*End
*?EPPureBlack: "
save
[/PBoff /PBall]
currentpagedevice /DeviceRenderingInfo get /PureBlack get 1 eq
{(PBon)} {(PBoff)} ifelse = flush
restore
"
*End
*CloseUI: *EPPureBlack
*CloseGroup: EPColorSettings
*OpenGroup: EPOtherSettings/Others
*OpenUI *EPToner/Toner Save Mode: Boolean
*OrderDependency: 210 AnySetup *EPToner
*DefaultEPToner: False
*EPToner False/Off: "
mark {
<< /PostRenderingEnhanceDetails <</Type 43 /TonerSaver 0>> >> setpagedevice
}stopped cleartomark"
*End
*EPToner True/On: "
mark {
<< /PostRenderingEnhanceDetails <</Type 43 /TonerSaver 1>> >>setpagedevice
}stopped cleartomark"
*End
*?EPToner: "
save
currentpagedevice /PostRenderingEnhanceDetails get
/TonerSaver get 1 eq {(True)}{(False)}ifelse = flush
restore
"
*End
*CloseUI: *EPToner
*CloseGroup: EPOtherSettings
*OpenGroup: EPQualitySettings/Quality
*OpenUI *EPImageProtect/Image Protect: Boolean
*DefaultEPImageProtect: False
*OrderDependency: 30 AnySetup *EPImageProtect
*EPImageProtect True/On: "
<</DeviceRenderingInfo <</Type 29 /ImageProtect true>> >>
setpagedevice"
*End
*EPImageProtect False/Off: "
<</DeviceRenderingInfo <</Type 29 /ImageProtect false>> >>
setpagedevice"
*End
*?EPImageProtect: "
currentpagedevice /DeviceRenderingInfo get
/ImageProtect get {(True)}{(False)}ifelse = flush
"
*End
*CloseUI: *EPImageProtect
*CloseGroup: EPQualitySettings
*%========== Press Simulations ==========
*OpenGroup: EPColorSettings/Color
*OpenUI *EPPressSimulation/Press Simulation: PickOne
*DefaultEPPressSimulation: 3
*OrderDependency: 130 AnySetup *EPPressSimulation
*EPPressSimulation None/Off: "
<</DeviceRenderingInfo <</Type 29 /PressType 0>> >> setpagedevice"
*End
*EPPressSimulation 4/Japan Color 2001: "
<</DeviceRenderingInfo <</Type 29 /PressType 4>> >> setpagedevice"
*End
*EPPressSimulation 2/SWOP: "
<</DeviceRenderingInfo <</Type 29 /PressType 2>> >> setpagedevice"
*End
*EPPressSimulation 3/Euroscale: "
<</DeviceRenderingInfo <</Type 29 /PressType 3>> >> setpagedevice"
*End
*?EPPressSimulation: "
save
currentpagedevice /DeviceRenderingInfo 2 copy known
{get /PressType 2 copy known {get dup 0 eq {pop (None)}if}
{pop pop (Unknown)} ifelse}{pop pop (Unknown)} ifelse = flush
restore
"
*End
*CloseUI: *EPPressSimulation
*CloseGroup: EPColorSettings
*%========== CMYK Method ==========
*OpenGroup: EPColorSettings/Color
*OpenUI *EPCMYKMethod/Preserve Black: PickOne
*DefaultEPCMYKMethod: 1
*OrderDependency: 130 AnySetup *EPCMYKMethod
*EPCMYKMethod None/On: "
<</DeviceRenderingInfo <</Type 29 /CMYKMethod 0>> >> setpagedevice"
*End
*EPCMYKMethod 1/Off: "
<</DeviceRenderingInfo <</Type 29 /CMYKMethod 1>> >> setpagedevice"
*End
*?EPCMYKMethod: "
save
currentpagedevice /DeviceRenderingInfo 2 copy known
{get /CMYKMethod 2 copy known {get dup 0 eq {pop (None)}if}
{pop pop (Unknown)} ifelse}{pop pop (Unknown)} ifelse = flush
restore
"
*End
*CloseUI: *EPCMYKMethod
*CloseGroup: EPColorSettings
*OpenGroup: EPQualitySettings/Quality
*OpenUI *EPRITech/RITech: Boolean
*OrderDependency: 200 AnySetup *EPRITech
*DefaultEPRITech: True
*EPRITech False/Off: "
mark {
<< /PostRenderingEnhanceDetails <</Type 43 /REValue 0>> >> setpagedevice
}stopped cleartomark"
*End
*EPRITech True/On: "
mark {
<< /PostRenderingEnhanceDetails <</Type 43 /REValue 1>> >> setpagedevice
}stopped cleartomark"
*End
*?EPRITech: "
save
currentpagedevice /PostRenderingEnhanceDetails get
/REValue get 1 eq {(True)}{(False)}ifelse = flush
restore"
*End
*CloseUI: *EPRITech
*CloseGroup: EPQualitySettings
*OpenGroup: EPOtherSettings/Others
*OpenUI *EPRotate180Degrees/Rotate by 180<B0>: Boolean
*DefaultEPRotate180Degrees: False
*OrderDependency: 220 AnySetup *EPRotate180Degrees
*EPRotate180Degrees False/Off: "
currentpagedevice /Orientation get <</Orientation 3 -1 roll>>setpagedevice
"
*End
*EPRotate180Degrees True/On: "
currentpagedevice /Orientation get <</Orientation 3 -1 roll 2 add 4 mod >>setpagedevice
"
*End
*CloseUI: *EPRotate180Degrees
*CloseGroup: EPOtherSettings
*OpenGroup: EPOtherSettings/Others
*OpenUI *EPStartSide/Start Page: Boolean
*DefaultEPStartSide: False
*OrderDependency: 230 AnySetup *EPStartSide
*EPStartSide False/Front: "mark { 0 /CustomProcs /ProcSet findresource /setstartside get exec } stopped cleartomark"
*EPStartSide True/Back: "mark { 1 /CustomProcs /ProcSet findresource /setstartside get exec } stopped cleartomark"
*CloseUI: *EPStartSide
*CloseGroup: EPOtherSettings
*%************** Font Information ***************
*DefaultFont: Courier
*%Roman fonts
*Font AlbertusMT: Standard "(001.001)" Standard Disk
*Font AlbertusMT-Italic: Standard "(001.001)" Standard Disk
*Font AlbertusMT-Light: Standard "(001.001)" Standard Disk
*Font AntiqueOlive-Bold: Standard "(001.002)" Standard Disk
*Font AntiqueOlive-Compact: Standard "(001.002)" Standard Disk
*Font AntiqueOlive-Italic: Standard "(001.002)" Standard Disk
*Font AntiqueOlive-Roman: Standard "(001.002)" Standard Disk
*Font Apple-Chancery: Standard "(3.0)" Standard Disk
*Font Arial-BoldItalicMT: Standard "(001.003)" Standard Disk
*Font Arial-BoldMT: Standard "(001.003)" Standard Disk
*Font Arial-ItalicMT: Standard "(001.003)" Standard Disk
*Font ArialMT: Standard "(001.003)" Standard Disk
*Font AvantGarde-Book: Standard "(003.000)" Standard Disk
*Font AvantGarde-BookOblique: Standard "(003.000)" Standard Disk
*Font AvantGarde-Demi: Standard "(003.000)" Standard Disk
*Font AvantGarde-DemiOblique: Standard "(003.000)" Standard Disk
*Font Bodoni: Standard "(001.003)" Standard Disk
*Font Bodoni-Bold: Standard "(001.003)" Standard Disk
*Font Bodoni-BoldItalic: Standard "(001.003)" Standard Disk
*Font Bodoni-Italic: Standard "(001.003)" Standard Disk
*Font Bodoni-Poster: Standard "(001.003)" Standard Disk
*Font Bodoni-PosterCompressed: Standard "(001.002)" Standard Disk
*Font Bookman-Demi: Standard "(003.000)" Standard Disk
*Font Bookman-DemiItalic: Standard "(003.000)" Standard Disk
*Font Bookman-Light: Standard "(003.000)" Standard Disk
*Font Bookman-LightItalic: Standard "(003.000)" Standard Disk
*Font Carta: Special "(001.001)" Standard Disk
*Font Chicago: Standard "(3.0)" Standard Disk
*Font Clarendon: Standard "(001.002)" Standard Disk
*Font Clarendon-Bold: Standard "(001.002)" Standard Disk
*Font Clarendon-Light: Standard "(001.002)" Standard Disk
*Font CooperBlack: Standard "(001.004)" Standard Disk
*Font CooperBlack-Italic: Standard "(001.004)" Standard Disk
*Font Copperplate-ThirtyTwoBC: Standard "(001.003)" Standard Disk
*Font Copperplate-ThirtyThreeBC: Standard "(001.003)" Standard Disk
*Font Coronet-Regular: Standard "(001.002)" Standard Disk
*Font Courier: Standard "(004.000)" Standard Disk
*Font Courier-Bold: Standard "(004.000)" Standard Disk
*Font Courier-BoldOblique: Standard "(004.000)" Standard Disk
*Font Courier-Oblique: Standard "(004.000)" Standard Disk
*Font Eurostile: Standard "(001.003)" Standard Disk
*Font Eurostile-Bold: Standard "(001.002)" Standard Disk
*Font Eurostile-BoldExtendedTwo: Standard "(001.003)" Standard Disk
*Font Eurostile-ExtendedTwo: Standard "(001.003)" Standard Disk
*Font Geneva: Standard "(3.0)" Standard Disk
*Font GillSans: Standard "(001.003)" Standard Disk
*Font GillSans-Bold: Standard "(001.002)" Standard Disk
*Font GillSans-BoldCondensed: Standard "(001.002)" Standard Disk
*Font GillSans-BoldItalic: Standard "(001.003)" Standard Disk
*Font GillSans-Condensed: Standard "(001.002)" Standard Disk
*Font GillSans-ExtraBold: Standard "(001.002)" Standard Disk
*Font GillSans-Italic: Standard "(001.003)" Standard Disk
*Font GillSans-Light: Standard "(001.002)" Standard Disk
*Font GillSans-LightItalic: Standard "(001.003)" Standard Disk
*Font Goudy: Standard "(001.004)" Standard Disk
*Font Goudy-Bold: Standard "(001.003)" Standard Disk
*Font Goudy-BoldItalic: Standard "(001.003)" Standard Disk
*Font Goudy-ExtraBold: Standard "(001.002)" Standard Disk
*Font Goudy-Italic: Standard "(001.003)" Standard Disk
*Font Helvetica: Standard "(003.000)" Standard Disk
*Font Helvetica-Bold: Standard "(003.000)" Standard Disk
*Font Helvetica-BoldOblique: Standard "(003.000)" Standard Disk
*Font Helvetica-Condensed: Standard "(003.000)" Standard Disk
*Font Helvetica-Condensed-Bold: Standard "(003.000)" Standard Disk
*Font Helvetica-Condensed-BoldObl: Standard "(003.000)" Standard Disk
*Font Helvetica-Condensed-Oblique: Standard "(003.000)" Standard Disk
*Font Helvetica-Narrow: Standard "(003.000)" Standard Disk
*Font Helvetica-Narrow-Bold: Standard "(003.000)" Standard Disk
*Font Helvetica-Narrow-BoldOblique: Standard "(003.000)" Standard Disk
*Font Helvetica-Narrow-Oblique: Standard "(003.000)" Standard Disk
*Font Helvetica-Oblique: Standard "(003.000)" Standard Disk
*Font HoeflerText-Black: Standard "(1.0)" Standard Disk
*Font HoeflerText-BlackItalic: Standard "(1.0)" Standard Disk
*Font HoeflerText-Regular: Standard "(1.0)" Standard Disk
*Font HoeflerText-Italic: Standard "(1.0)" Standard Disk
*Font HoeflerText-Ornaments: Special "(001.001)" Standard Disk
*Font JoannaMT: Standard "(001.001)" Standard Disk
*Font JoannaMT-Bold: Standard "(001.001)" Standard Disk
*Font JoannaMT-BoldItalic: Standard "(001.001)" Standard Disk
*Font JoannaMT-Italic: Standard "(001.001)" Standard Disk
*Font LetterGothic: Standard "(001.005)" Standard Disk
*Font LetterGothic-Bold: Standard "(001.007)" Standard Disk
*Font LetterGothic-BoldSlanted: Standard "(001.006)" Standard Disk
*Font LetterGothic-Slanted: Standard "(001.005)" Standard Disk
*Font LubalinGraph-Book: Standard "(001.004)" Standard Disk
*Font LubalinGraph-BookOblique: Standard "(001.004)" Standard Disk
*Font LubalinGraph-Demi: Standard "(001.004)" Standard Disk
*Font LubalinGraph-DemiOblique: Standard "(001.004)" Standard Disk
*Font Marigold: Standard "(001.001)" Standard Disk
*Font Monaco: Standard "(3.0)" Standard Disk
*Font MonaLisa-Recut: Standard "(001.001)" Standard Disk
*Font NewCenturySchlbk-Bold: Standard "(003.000)" Standard Disk
*Font NewCenturySchlbk-BoldItalic: Standard "(003.000)" Standard Disk
*Font NewCenturySchlbk-Italic: Standard "(003.000)" Standard Disk
*Font NewCenturySchlbk-Roman: Standard "(003.000)" Standard Disk
*Font NewYork: Standard "(001.000)" Standard Disk
*Font Optima: Standard "(001.006)" Standard Disk
*Font Optima-Bold: Standard "(001.007)" Standard Disk
*Font Optima-BoldItalic: Standard "(001.001)" Standard Disk
*Font Optima-Italic: Standard "(001.001)" Standard Disk
*Font Oxford: Standard "(001.001)" Standard Disk
*Font Palatino-Bold: Standard "(003.000)" Standard Disk
*Font Palatino-BoldItalic: Standard "(003.000)" Standard Disk
*Font Palatino-Italic: Standard "(003.000)" Standard Disk
*Font Palatino-Roman: Standard "(003.000)" Standard Disk
*Font StempelGaramond-Bold: Standard "(001.003)" Standard Disk
*Font StempelGaramond-BoldItalic: Standard "(001.003)" Standard Disk
*Font StempelGaramond-Italic: Standard "(001.003)" Standard Disk
*Font StempelGaramond-Roman: Standard "(001.003)" Standard Disk
*Font Symbol: Special "(001.008)" Standard Disk
*Font Tekton: Standard "(001.002)" Standard Disk
*Font Times-Bold: Standard "(003.000)" Standard Disk
*Font Times-BoldItalic: Standard "(003.000)" Standard Disk
*Font Times-Italic: Standard "(003.000)" Standard Disk
*Font Times-Roman: Standard "(003.000)" Standard Disk
*Font TimesNewRomanPS-BoldMT: Standard "(001.004)" Standard Disk
*Font TimesNewRomanPS-BoldItalicMT: Standard "(001.003)" Standard Disk
*Font TimesNewRomanPS-ItalicMT: Standard "(001.003)" Standard Disk
*Font TimesNewRomanPSMT: Standard "(001.003)" Standard Disk
*Font Univers: Standard "(001.004)" Standard Disk
*Font Univers-Bold: Standard "(001.004)" Standard Disk
*Font Univers-BoldExt: Standard "(001.001)" Standard Disk
*Font Univers-BoldExtObl: Standard "(001.001)" Standard Disk
*Font Univers-BoldOblique: Standard "(001.004)" Standard Disk
*Font Univers-Condensed: Standard "(001.003)" Standard Disk
*Font Univers-CondensedBold: Standard "(001.002)" Standard Disk
*Font Univers-CondensedBoldOblique: Standard "(001.002)" Standard Disk
*Font Univers-CondensedOblique: Standard "(001.003)" Standard Disk
*Font Univers-Extended: Standard "(001.001)" Standard Disk
*Font Univers-ExtendedObl: Standard "(001.001)" Standard Disk
*Font Univers-Light: Standard "(001.004)" Standard Disk
*Font Univers-LightOblique: Standard "(001.004)" Standard Disk
*Font Univers-Oblique: Standard "(001.004)" Standard Disk
*Font ZapfChancery-MediumItalic: Standard "(003.000)" Standard Disk
*Font ZapfDingbats: Special "(002.000)" Standard Disk
*Font Wingdings-Regular: Special "(2.00)" Standard Disk
*?FontQuery: "
save
{ count 1 gt
{ exch dup 127 string cvs (/) print print (:) print
/Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
} { exit } ifelse
} bind loop
(*) = flush
restore
"
*End
*?FontList: "
save
(*) {cvn ==} 128 string /Font resourceforall
(*) = flush
restore
"
*End
*% Printer Messages (verbatim from printer):
*Message: "%%[ exitserver: permanent state may be changed ]%%"
*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
*Message: "\FontName\ not found, using Courier"
*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
*%PrinterError: "cover open"
*%PrinterError: "cassette open"
*% Status (format: %%[ status: <one of these> ] %%)
*Status: "idle"
*Status: "processing"
*Status: "printing"
*%Status: "PrinterError: cover open"
*%Status: "PrinterError: cassette open"
*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
*Source: "Ethernet"
*Source: "Aux1"
*Source: "USB"
*DefaultColorSep: ProcessBlack.134lpi.300x300dpi
*ColorSepScreenAngle ProcessCyan.106lpi.300x300dpi/106 lpi / 300 dpi: "45"
*ColorSepScreenAngle ProcessMagenta.134lpi.300x300dpi/134 lpi / 300 dpi: "26"
*ColorSepScreenAngle ProcessYellow.150lpi.300x300dpi/150 lpi / 300 dpi: "0"
*ColorSepScreenAngle ProcessBlack.134lpi.300x300dpi/134 lpi / 300 dpi: "63"
*ColorSepScreenAngle ProcessRed.134lpi.300x300dpi/134 lpi / 300 dpi: "63"
*ColorSepScreenAngle ProcessGreen.134lpi.300x300dpi/134 lpi / 300 dpi: "63"
*ColorSepScreenAngle ProcessBlue.134lpi.300x300dpi/134 lpi / 300 dpi: "63"
*ColorSepScreenFreq ProcessCyan.106lpi.300x300dpi/106 lpi / 300 dpi: "106"
*ColorSepScreenFreq ProcessMagenta.134lpi.300x300dpi/134 lpi / 300 dpi: "134"
*ColorSepScreenFreq ProcessYellow.150lpi.300x300dpi/150 lpi / 300 dpi: "150"
*ColorSepScreenFreq ProcessBlack.134lpi.300x300dpi/134 lpi / 300 dpi: "134"
*ColorSepScreenFreq ProcessRed.134lpi.300x300dpi/134 lpi / 300 dpi: "134"
*ColorSepScreenFreq ProcessGreen.134lpi.300x300dpi/134 lpi / 300 dpi: "134"
*ColorSepScreenFreq ProcessBlue.134lpi.300x300dpi/134 lpi / 300 dpi: "134"
*ColorSepScreenAngle ProcessCyan.141lpi.600x600dpi/141 lpi / 600 dpi: "45"
*ColorSepScreenAngle ProcessMagenta.145lpi.600x600dpi/145 lpi / 600 dpi: "14"
*ColorSepScreenAngle ProcessYellow.150lpi.600x600dpi/150 lpi / 600 dpi: "0"
*ColorSepScreenAngle ProcessBlack.145lpi.600x600dpi/145 lpi / 600 dpi: "75"
*ColorSepScreenAngle ProcessRed.145lpi.600x600dpi/145 lpi / 600 dpi: "75"
*ColorSepScreenAngle ProcessGreen.145lpi.600x600dpi/145 lpi / 600 dpi: "75"
*ColorSepScreenAngle ProcessBlue.145lpi.600x600dpi/145 lpi / 600 dpi: "75"
*ColorSepScreenFreq ProcessCyan.141lpi.600x600dpi/141 lpi / 600 dpi: "141"
*ColorSepScreenFreq ProcessMagenta.145lpi.600x600dpi/145 lpi / 600 dpi: "145"
*ColorSepScreenFreq ProcessYellow.150lpi.600x600dpi/150 lpi / 600 dpi: "150"
*ColorSepScreenFreq ProcessBlack.145lpi.600x600dpi/145 lpi / 600 dpi: "145"
*ColorSepScreenFreq ProcessRed.145lpi.600x600dpi/145 lpi / 600 dpi: "145"
*ColorSepScreenFreq ProcessGreen.145lpi.600x600dpi/145 lpi / 600 dpi: "145"
*ColorSepScreenFreq ProcessBlue.145lpi.600x600dpi/145 lpi / 600 dpi: "145"
*% End of PPD file for EPSON AL-C9200 PS3
|