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
|
*PPD-Adobe: "4.3"
*% Adobe Systems PostScript(R) Printer Description File
*% Copyright 1992-2003 Hewlett-Packard Company
*%
*% 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 -- please see www.opensource.org]
*%
*% All Rights Reserved.
*% Thu Dec 18 16:20:27 MET 1997 BY ignacior
*% Permission is granted for redistribution of this file as
*% long as this copyright notice is intact and the contents
*% of the file is not altered in any way from its original form.
*% End of Copyright statement
*FormatVersion: "4.3"
*FileVersion: "1.1"
*LanguageEncoding: ISOLatin1
*LanguageVersion: English
*PCFileName: "HP250MC2.PPD"
*PSVersion: "(3010.103) 1"
*Product: "(HP DesignJet 2500CP)"
*ModelName: "HP DesignJet 2500CP PS3"
*ShortNickName: "HP DesignJet 2500CP PS3"
*NickName: "HP DesignJet 2500CP PS3 v3010.103 (recommended"
*Manufacturer: "HP"
*APDialogExtension: "/Library/Printers/hp/PDEs/hpColorOptions.plugin"
*APDialogExtension: "/Library/Printers/hp/PDEs/hpEdgeToEdge.plugin"
*APDialogExtension: "/Library/Printers/hp/PDEs/hpFinishing.plugin"
*APDialogExtension: "/Library/Printers/hp/PDEs/hpImageQuality.plugin"
*APDialogExtension: "/Library/Printers/hp/PDEs/hpProofAndPrint.plugin"
*cupsICCProfile RGB../sRGB Matching Profile: "/Library/Printers/hp/Profiles/sRGB_A.icc"
*APPrinterIconPath: "/Library/Printers/hp/Icons/HP DesignJet 2500CP PS3.icns"
*%=============== Device Capabilities ===============
*LanguageLevel: "3"
*Protocols:TBCP
*FreeVM: "7428480"
*VMOption standard/Standard: "7428480"
*VMOption 8MB: "15077208"
*VMOption 16MB: "23542144"
*VMOption 32MB: "39721344"
*VMOption 48MB: "54532480"
*FCacheSize standard/Standard: 0
*FCacheSize 8MB: 0
*FCacheSize 16MB: 0
*FCacheSize 32MB: 0
*FCacheSize 48MB: 0
*OpenGroup: InstallableOptions
*OpenUI *InstalledMemory/Installed Memory: PickOne
*DefaultInstalledMemory: standard
*InstalledMemory standard/Standard: " "
*InstalledMemory 8MB/24 MB Total Memory: " "
*InstalledMemory 16MB/32 MB Total Memory: " "
*InstalledMemory 32MB/48 MB Total Memory: " "
*InstalledMemory 48MB/64 MB Total Memory: " "
*?InstalledMemory: "
save
currentsystemparams /RamSize get
524288 div ceiling cvi 2 div
/size exch def
size 60 ge
{(48MB)}
{
size 44 ge
{(32MB)}
{
size 28 ge
{(16MB)}
{
size 20 ge
{(8MB)}
{
size 12 ge
{(standard)}
{(Unknown)} ifelse
} ifelse
} ifelse
} ifelse
} ifelse
= flush
restore"
*End
*CloseUI: *InstalledMemory
*CloseGroup: InstallableOptions
*ColorDevice: True
*DefaultColorSpace: CMYK
*VariablePaperSize: True
*TTRasterizer: Type42
*?TTRasterizer: "
save
42 /FontType resourcestatus
{ pop pop (Type42)} {pop pop (None)} ifelse = flush
restore"
*End
*Throughput: "1"
*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
*DefaultResolution: 600dpi
*%=============== Halftone Information ===============
*ScreenFreq: "60.0"
*ScreenAngle: "0.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 }"
*End
*ScreenProc Line: "{ pop }"
*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1
exch sub }"
*End
*DefaultTransfer: Null
*Transfer Null: "{ }"
*Transfer Null.Inverse: "{ 1 exch sub }"
*DefaultHalftoneType: 100
*%=============== Print Color as Gray ===============
*OpenUI *HPColorAsGray/Print Color as Gray: PickOne
*OrderDependency: 5.0 AnySetup *HPColorAsGray
*DefaultHPColorAsGray: No
*HPColorAsGray Yes/Yes: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*HPColorAsGray No/No: "<< /ProcessColorModel /DeviceCMYK >> setpagedevice"
*?HPColorAsGray: "
save
currentpagedevice /ProcessColorModel get /DeviceGray eq
{(Yes)}{(No)} ifelse
= flush
restore"
*End
*CloseUI: *HPColorAsGray
*%=============== Auto-scaling Control ===============
*OpenUI *HPAutoScaling/Scale to: PickOne
*OrderDependency: 20.0 AnySetup *HPAutoScaling
*DefaultHPAutoScaling: Off
*HPAutoScaling Off/No Change:" "
*HPAutoScaling Letter/US Letter: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [612 792 ] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling LetterFullBleed/Full Bleed US Letter: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [777 1009 ] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling Tabloid/Tabloid: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [792 1224] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling TabloidFullBleed/Full Bleed Tabloid: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [957 1441] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling AnsiC/ANSI C: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1224 1584] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling AnsiD/ANSI D: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1584 2448] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling AnsiE/ANSI E: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2448 3168] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling ARCHA/ARCH A: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [648 864] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling ARCHB/ARCH B: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [864 1296] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling ARCHC/ARCH C: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1296 1728] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling ARCHD/ARCH D: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1728 2592] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling ARCHE/ARCH E: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2592 3456] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling A4/ISO A4: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [595 842] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling A4FullBleed/Full Bleed ISO A4: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [760 1059] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling A3/ISO A3: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [842 1191] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling A3FullBleed/Full Bleed ISO A3: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1007 1408] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling A2/ISO A2: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1191 1684] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling A1/ISO A1: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1684 2384] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling A0/ISO A0: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2384 3370] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling OVERSIZEA2/Oversize A2: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1377 1772] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling OVERSIZEA1/Oversize A1: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1788 2551] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling OVERSIZEA0/Oversize A0: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2567 3529] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling B4/JIS B4: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [729 1032] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling B3/JIS B3: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1032 1460] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling B2/JIS B2: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1460 2064] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling B1/JIS B1: "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2064 2920] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling P24x48/24" x 48": "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1728 3456] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling P24x60/24" x 60": "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1728 4320] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling P24x72/24" x 72": "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1728 5184] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling P24x84/24" x 84": "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1728 6048] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling P24x96/24" x 96": "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1728 6912] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling P24x108/24" x 108": "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1728 7776] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling P36x60/36" x 60": "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2592 4320] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling P36x72/36" x 72": "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2592 5184] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling P36x84/36" x 84": "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2592 6048] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling P36x96/36" x 96": "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2592 6912] exch exec
<<>> setpagedevice"
*End
*HPAutoScaling P36x108/36" x 108": "
/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2592 7776] exch exec
<<>> setpagedevice"
*End
*CloseUI: *HPAutoScaling
*%=============== Print Quality ===============
*OpenUI *OutputMode/Print Quality: PickOne
*OrderDependency: 50.0 AnySetup *OutputMode
*DefaultOutputMode: Best
*OutputMode Best/Best: "
<< /HWResolution [600 600]
/PostRenderingEnhance true
/PostRenderingEnhanceDetails
<< /PrintQuality 3
/Type 11 >>
>> setpagedevice"
*End
*OutputMode Normal/Normal: "
<< /HWResolution [300 300]
/PostRenderingEnhance true
/PostRenderingEnhanceDetails
<< /PrintQuality 2
/Type 11 >>
>> setpagedevice"
*End
*OutputMode Fast/Fast: "
<< /HWResolution [300 300]
/PostRenderingEnhance true
/PostRenderingEnhanceDetails
<< /PrintQuality 1
/Type 11 >>
>> setpagedevice"
*End
*?OutputMode: "
save
3 dict
dup 1 (Fast) put
dup 2 (Normal) put
dup 3 (Best) put
currentpagedevice /PostRenderingEnhanceDetails get
/PrintQuality get get = flush
restore"
*End
*CloseUI: *OutputMode
*%=============== Transverse ===============
*OpenUI *HPTransverse/Rotate: Boolean
*OrderDependency: 50.0 AnySetup *HPTransverse
*DefaultHPTransverse: False
*HPTransverse True/True: "
userdict /HPCustTrans known
{
(<<) cvx exec
/Orientation
userdict /HPCustTrans get
1 eq
{ 0 }
{ 1 } ifelse
(>>) cvx exec setpagedevice
}
{
<</Orientation 1>> setpagedevice
} ifelse"
*End
*HPTransverse False/False: "
userdict /HPCustTrans known
{
(<<) cvx exec
/Orientation
userdict /HPCustTrans get
(>>) cvx exec setpagedevice
}
{
<</Orientation 0>> setpagedevice
} ifelse"
*End
*?HPTransverse: "
save
currentpagedevice /Orientation get 0 eq
{ (False) }
{
currentpagedevice /Orientation get 1 eq
{ (True) }
{ (Unknown) } ifelse
} ifelse = flush
restore"
*End
*CloseUI: *HPTransverse
*%=============== HP Color Management ===============
*OpenUI *HPColorMan/Color Management: PickOne
*OrderDependency: 60.0 AnySetup *HPColorMan
*DefaultHPColorMan: EuroScale
*HPColorMan EuroScale/EuroScale:"
globaldict /ColorManagement known {
/EuroOffset ColorManagement
} if"
*End
*HPColorMan SWOP/SWOP:"
globaldict /ColorManagement known {
/SWOP ColorManagement
} if"
*End
*HPColorMan Toyo/Toyo:"
globaldict /ColorManagement known {
/JapanOffset ColorManagement
} if"
*End
*HPColorMan ColorSmart/ColorSmart Vivid Business Graphics:"
globaldict /ColorManagement known {
true ColorManagement
} if"
*End
*HPColorMan None/No Color Adjustment - Expert users only:"
globaldict /ColorManagement known {
false ColorManagement
} if"
*End
*HPColorMan Enhanced/Enhanced Native: "
globaldict /ColorManagement known {
/Enhanced ColorManagement
} if"
*End
*?HPColorMan: "
save
userdict /ColorSmartOn known
{
userdict /ColorSmartOn get
{(ColorSmart)}
{
userdict /ColorEmulationMode known
{
userdict /ColorEmulationMode get
dup 0 eq
{(None)}
{
dup 1 eq
{(SWOP)}
{
dup 2 eq
{(EuroScale)}
{
dup 3 eq
{(Toyo)}
{
dup 4 eq
{(Enhanced)}
{(Unknown)} ifelse
} ifelse
} ifelse
} ifelse
} ifelse exch pop
}
{(None)} ifelse
} ifelse
}
{
userdict /ColorEmulationMode known
{
userdict /ColorEmulationMode get
dup 0 eq
{(None)}
{
dup 1 eq
{(SWOP)}
{
dup 2 eq
{(EuroScale)}
{
dup 3 eq
{(Toyo)}
{
dup 4 eq
{(Enhanced)}
{(Unknown)} ifelse
} ifelse
} ifelse
} ifelse
} ifelse exch pop
}
{(None)} ifelse
} ifelse
= flush
restore"
*End
*CloseUI: *HPColorMan
*%=============== Rendering Intent ======================
*OpenUI *HPIntent/Rendering Intent: PickOne
*OrderDependency: 15.0 AnySetup *HPIntent
*DefaultHPIntent: Perceptual
*HPIntent Perceptual/Perceptual: "
userdict /UserRenderIntent (Perceptual) put
<<>> setpagedevice"
*End
*HPIntent Colorimetric/Colorimetric: "
userdict /UserRenderIntent (Colorimetric) put
<<>> setpagedevice"
*End
*HPIntent Saturation/Saturation: "
userdict /UserRenderIntent (Saturation) put
<<>> setpagedevice"
*End
*?HPIntent: "
% UserRenderIntent should be Perceptual, Colorimetric or Saturation
save
userdict /UserRenderIntent known {
userdict /UserRenderIntent get
} {
(None)
} ifelse
= flush
restore"
*End
*CloseUI: *HPIntent
*%=============== Brightness Control ===============
*OpenUI *HPBrightness/Lightness: PickOne
*OrderDependency: 70.0 AnySetup *HPBrightness
*DefaultHPBrightness: leveleven
*HPBrightness levelm25/ -25% Lighter:" 25
dup dup 50 lt exch -50 gt and
{ 0.01 mul 0.5 add ln 0.5 ln exch div }
{ pop 1 } ifelse 1 exch div { 0 exp } dup
0 4 -1 roll put settransfer"
*End
*HPBrightness levelm20/ -20%:" 20
dup dup 50 lt exch -50 gt and
{ 0.01 mul 0.5 add ln 0.5 ln exch div }
{ pop 1 } ifelse 1 exch div { 0 exp } dup
0 4 -1 roll put settransfer"
*End
*HPBrightness levelm15/ -15%:" 15
dup dup 50 lt exch -50 gt and
{ 0.01 mul 0.5 add ln 0.5 ln exch div }
{ pop 1 } ifelse 1 exch div { 0 exp } dup
0 4 -1 roll put settransfer"
*End
*HPBrightness levelm10/ -10%:" 10
dup dup 50 lt exch -50 gt and
{ 0.01 mul 0.5 add ln 0.5 ln exch div }
{ pop 1 } ifelse 1 exch div { 0 exp } dup
0 4 -1 roll put settransfer"
*End
*HPBrightness levelm5/ -5%:" 5
dup dup 50 lt exch -50 gt and
{ 0.01 mul 0.5 add ln 0.5 ln exch div }
{ pop 1 } ifelse 1 exch div { 0 exp } dup
0 4 -1 roll put settransfer"
*End
*HPBrightness leveleven/ 0% No Change:" "
*HPBrightness levelp5/ +5%:" -5
dup dup 50 lt exch -50 gt and
{ 0.01 mul 0.5 add ln 0.5 ln exch div }
{ pop 1 } ifelse 1 exch div { 0 exp } dup
0 4 -1 roll put settransfer"
*End
*HPBrightness levelp10/ +10%:" -10
dup dup 50 lt exch -50 gt and
{ 0.01 mul 0.5 add ln 0.5 ln exch div }
{ pop 1 } ifelse 1 exch div { 0 exp } dup
0 4 -1 roll put settransfer"
*End
*HPBrightness levelp15/ +15%:" -15
dup dup 50 lt exch -50 gt and
{ 0.01 mul 0.5 add ln 0.5 ln exch div }
{ pop 1 } ifelse 1 exch div { 0 exp } dup
0 4 -1 roll put settransfer"
*End
*HPBrightness levelp20/ +20%:" -20
dup dup 50 lt exch -50 gt and
{ 0.01 mul 0.5 add ln 0.5 ln exch div }
{ pop 1 } ifelse 1 exch div { 0 exp } dup
0 4 -1 roll put settransfer"
*End
*HPBrightness levelp25/ +25% Darker:" -25
dup dup 50 lt exch -50 gt and
{ 0.01 mul 0.5 add ln 0.5 ln exch div }
{ pop 1 } ifelse 1 exch div { 0 exp } dup
0 4 -1 roll put settransfer"
*End
*?HPBrightness: "
save
11 dict
dup 0.415038 (levelm25) put
dup 0.514573 (levelm20) put
dup 0.621488 (levelm15) put
dup 0.736966 (levelm10) put
dup 0.862496 (levelm5) put
dup 1.0 (leveleven) put
dup 1.152 (levelp5) put
dup 1.32193 (levelp10) put
dup 1.51457 (levelp15) put
dup 1.73697 (levelp20) put
dup 2.0 (levelp25) put
dup
currenttransfer dup length 0 eq
{pop pop pop (Unknown)}
{0 get dup 1 lt
{1000000 mul round 1000000 div}
{100000 mul round 100000 div} ifelse
dup
3 1 roll
known
{ get }
{ pop pop (Unknown)} ifelse
} ifelse
= flush
restore"
*End
*CloseUI: *HPBrightness
*%=============== Allow Application Halftoning ===============
*OpenUI *HPAppHalftoning/Application Halftoning: Boolean
*OrderDependency: 80.0 AnySetup *HPAppHalftoning
*DefaultHPAppHalftoning: False
*HPAppHalftoning True/Allow: ""
*HPAppHalftoning False/Disallow: "
userdict /setscreen { pop pop pop } put
userdict /setcolorscreen { pop pop pop pop pop pop pop pop pop pop pop pop } put
userdict /sethalftone{pop} put
<<>> setpagedevice"
*End
*?HPAppHalftoning: "
save
2 dict begin
/AllSamePop {
dup 0 get exch true exch
{ 2 index ne {pop false exit} if } forall
exch dup /pop eq exch /pop load eq or and
} def
/Lenchk { dup type /arraytype eq
{dup length 3 -1 roll eq {true}{pop false}ifelse}
{pop pop false}
ifelse
} def
3 /setscreen load Lenchk {AllSamePop}{false}ifelse
12 /setcolorscreen load Lenchk {AllSamePop}{false}ifelse
1 /sethalftone load Lenchk {AllSamePop}{false}ifelse
end
and and not
{(True)} {(False)} ifelse
= flush
restore"
*End
*CloseUI: *HPAppHalftoning
*%=============== Paper Handling ===============
*OpenUI *PageSize: PickOne
*OrderDependency: 30.0 AnySetup *PageSize
*DefaultPageSize: Unknown
*PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
*PageSize LetterFullBleed/Full Bleed US Letter: "<</PageSize[777 1009]/ImagingBBox null>>setpagedevice"
*PageSize Tabloid/Tabloid: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
*PageSize TabloidFullBleed/Full Bleed Tabloid: "<</PageSize[957 1441]/ImagingBBox null>>setpagedevice"
*PageSize AnsiC/ANSI C: "<</PageSize[1224 1584]/ImagingBBox null>>setpagedevice"
*PageSize AnsiD/ANSI D: "<</PageSize[1584 2448]/ImagingBBox null>>setpagedevice"
*PageSize AnsiE/ANSI E: "<</PageSize[2448 3168]/ImagingBBox null>>setpagedevice"
*PageSize ARCHA/ARCH A: "<</PageSize[648 864]/ImagingBBox null>>setpagedevice"
*PageSize ARCHB/ARCH B: "<</PageSize[864 1296]/ImagingBBox null>>setpagedevice"
*PageSize ARCHC/ARCH C: "<</PageSize[1296 1728]/ImagingBBox null>>setpagedevice"
*PageSize ARCHD/ARCH D: "<</PageSize[1728 2592]/ImagingBBox null>>setpagedevice"
*PageSize ARCHE/ARCH E: "<</PageSize[2592 3456]/ImagingBBox null>>setpagedevice"
*PageSize A4/ISO A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
*PageSize A4FullBleed/Full Bleed ISO A4: "<</PageSize[760 1059]/ImagingBBox null>>setpagedevice"
*PageSize A3/ISO A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
*PageSize A3FullBleed/Full Bleed ISO A3: "<</PageSize[1007 1408]/ImagingBBox null>>setpagedevice"
*PageSize A2/ISO A2: "<</PageSize[1191 1684]/ImagingBBox null>>setpagedevice"
*PageSize A1/ISO A1: "<</PageSize[1684 2384]/ImagingBBox null>>setpagedevice"
*PageSize A0/ISO A0: "<</PageSize[2384 3370]/ImagingBBox null>>setpagedevice"
*PageSize OVERSIZEA2/Oversize A2: "<</PageSize[1377 1772]/ImagingBBox null>>setpagedevice"
*PageSize OVERSIZEA1/Oversize A1: "<</PageSize[1788 2551]/ImagingBBox null>>setpagedevice"
*PageSize OVERSIZEA0/Oversize A0: "<</PageSize[2567 3529]/ImagingBBox null>>setpagedevice"
*PageSize B4/JIS B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
*PageSize B3/JIS B3: "<</PageSize[1032 1460]/ImagingBBox null>>setpagedevice"
*PageSize B2/JIS B2: "<</PageSize[1460 2064]/ImagingBBox null>>setpagedevice"
*PageSize B1/JIS B1: "<</PageSize[2064 2920]/ImagingBBox null>>setpagedevice"
*PageSize P24x48/24" x 48": "<</PageSize[1728 3456]/ImagingBBox null>>setpagedevice"
*PageSize P24x60/24" x 60": "<</PageSize[1728 4320]/ImagingBBox null>>setpagedevice"
*PageSize P24x72/24" x 72": "<</PageSize[1728 5184]/ImagingBBox null>>setpagedevice"
*PageSize P24x84/24" x 84": "<</PageSize[1728 6048]/ImagingBBox null>>setpagedevice"
*PageSize P24x96/24" x 96": "<</PageSize[1728 6912]/ImagingBBox null>>setpagedevice"
*PageSize P24x108/24" x 108": "<</PageSize[1728 7776]/ImagingBBox null>>setpagedevice"
*PageSize P36x60/36" x 60": "<</PageSize[2592 4320]/ImagingBBox null>>setpagedevice"
*PageSize P36x72/36" x 72": "<</PageSize[2592 5184]/ImagingBBox null>>setpagedevice"
*PageSize P36x84/36" x 84": "<</PageSize[2592 6048]/ImagingBBox null>>setpagedevice"
*PageSize P36x96/36" x 96": "<</PageSize[2592 6912]/ImagingBBox null>>setpagedevice"
*PageSize P36x108/36" x 108": "<</PageSize[2592 7776]/ImagingBBox null>>setpagedevice"
*?PageSize: "
save
currentpagedevice /PageSize get aload pop
2 copy gt {exch} if
(Unknown)
42 dict
dup [612 792] (Letter) put
dup [777 1009] (LetterFullBleed) put
dup [792 1224] (Tabloid) put
dup [957 1441] (TabloidFullBleed) put
dup [1224 1584] (AnsiC) put
dup [1584 2448] (AnsiD) put
dup [2448 3168] (AnsiE) put
dup [648 864] (ARCHA) put
dup [864 1296] (ARCHB) put
dup [1296 1728] (ARCHC) put
dup [1728 2592] (ARCHD) put
dup [2592 3456] (ARCHE) put
dup [595 842] (A4) put
dup [760 1059] (A4FullBleed) put
dup [842 1191] (A3) put
dup [1007 1408] (A3FullBleed) put
dup [1191 1684] (A2) put
dup [1684 2384] (A1) put
dup [2384 3370] (A0) put
dup [1377 1772] (OVERSIZEA2) put
dup [1788 2551] (OVERSIZEA1) put
dup [2567 3529] (OVERSIZEA0) put
dup [729 1032] (B4) put
dup [1032 1460] (B3) put
dup [1460 2064] (B2) put
dup [2064 2920] (B1) put
dup [1728 3456] (P24x48) put
dup [1728 4320] (P24x60) put
dup [1728 5184] (P24x72) put
dup [1728 6048] (P24x84) put
dup [1728 6912] (P24x96) put
dup [1728 7776] (P24x108) put
dup [2592 4320] (P36x60) put
dup [2592 5184] (P36x72) put
dup [2592 6048] (P36x84) put
dup [2592 6912] (P36x96) put
dup [2592 7776] (P36x108) put
{ 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: PickOne
*OrderDependency: 40.0 AnySetup *PageRegion
*DefaultPageRegion: Unknown
*PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
*PageRegion LetterFullBleed/Full Bleed US Letter: "<</PageSize[777 1009]/ImagingBBox null>>setpagedevice"
*PageRegion Tabloid/Tabloid: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
*PageRegion TabloidFullBleed/Full Bleed Tabloid: "<</PageSize[957 1441]/ImagingBBox null>>setpagedevice"
*PageRegion AnsiC/ANSI C: "<</PageSize[1224 1584]/ImagingBBox null>>setpagedevice"
*PageRegion AnsiD/ANSI D: "<</PageSize[1584 2448]/ImagingBBox null>>setpagedevice"
*PageRegion AnsiE/ANSI E: "<</PageSize[2448 3168]/ImagingBBox null>>setpagedevice"
*PageRegion ARCHA/ARCH A: "<</PageSize[648 864]/ImagingBBox null>>setpagedevice"
*PageRegion ARCHB/ARCH B: "<</PageSize[864 1296]/ImagingBBox null>>setpagedevice"
*PageRegion ARCHC/ARCH C: "<</PageSize[1296 1728]/ImagingBBox null>>setpagedevice"
*PageRegion ARCHD/ARCH D: "<</PageSize[1728 2592]/ImagingBBox null>>setpagedevice"
*PageRegion ARCHE/ARCH E: "<</PageSize[2592 3456]/ImagingBBox null>>setpagedevice"
*PageRegion A4/ISO A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
*PageRegion A4FullBleed/Full Bleed ISO A4: "<</PageSize[760 1059]/ImagingBBox null>>setpagedevice"
*PageRegion A3/ISO A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
*PageRegion A3FullBleed/Full Bleed ISO A3: "<</PageSize[1007 1408]/ImagingBBox null>>setpagedevice"
*PageRegion A2/ISO A2: "<</PageSize[1191 1684]/ImagingBBox null>>setpagedevice"
*PageRegion A1/ISO A1: "<</PageSize[1684 2384]/ImagingBBox null>>setpagedevice"
*PageRegion A0/ISO A0: "<</PageSize[2384 3370]/ImagingBBox null>>setpagedevice"
*PageRegion OVERSIZEA2/Oversize A2: "<</PageSize[1377 1772]/ImagingBBox null>>setpagedevice"
*PageRegion OVERSIZEA1/Oversize A1: "<</PageSize[1788 2551]/ImagingBBox null>>setpagedevice"
*PageRegion OVERSIZEA0/Oversize A0: "<</PageSize[2567 3529]/ImagingBBox null>>setpagedevice"
*PageRegion B4/JIS B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
*PageRegion B3/JIS B3: "<</PageSize[1032 1460]/ImagingBBox null>>setpagedevice"
*PageRegion B2/JIS B2: "<</PageSize[1460 2064]/ImagingBBox null>>setpagedevice"
*PageRegion B1/JIS B1: "<</PageSize[2064 2920]/ImagingBBox null>>setpagedevice"
*PageRegion P24x48/24" x 48": "<</PageSize[1728 3456]/ImagingBBox null>>setpagedevice"
*PageRegion P24x60/24" x 60": "<</PageSize[1728 4320]/ImagingBBox null>>setpagedevice"
*PageRegion P24x72/24" x 72": "<</PageSize[1728 5184]/ImagingBBox null>>setpagedevice"
*PageRegion P24x84/24" x 84": "<</PageSize[1728 6048]/ImagingBBox null>>setpagedevice"
*PageRegion P24x96/24" x 96": "<</PageSize[1728 6912]/ImagingBBox null>>setpagedevice"
*PageRegion P24x108/24" x 108": "<</PageSize[1728 7776]/ImagingBBox null>>setpagedevice"
*PageRegion P36x60/36" x 60": "<</PageSize[2592 4320]/ImagingBBox null>>setpagedevice"
*PageRegion P36x72/36" x 72": "<</PageSize[2592 5184]/ImagingBBox null>>setpagedevice"
*PageRegion P36x84/36" x 84": "<</PageSize[2592 6048]/ImagingBBox null>>setpagedevice"
*PageRegion P36x96/36" x 96": "<</PageSize[2592 6912]/ImagingBBox null>>setpagedevice"
*PageRegion P36x108/36" x 108": "<</PageSize[2592 7776]/ImagingBBox null>>setpagedevice"
*CloseUI: *PageRegion
*% The following entries provide information about specific paper keywords.
*DefaultImageableArea: Letter
*ImageableArea Letter/US Letter: "51 77 561 715"
*ImageableArea LetterFullBleed/Full Bleed US Letter: "51 77 726 932"
*ImageableArea Tabloid/Tabloid: "51 77 741 1147"
*ImageableArea TabloidFullBleed/Full Bleed Tabloid: "51 77 906 1364"
*ImageableArea AnsiC/ANSI C: "51 77 1173 1507"
*ImageableArea AnsiD/ANSI D: "51 77 1533 2371"
*ImageableArea AnsiE/ANSI E: "51 77 2397 3091"
*ImageableArea ARCHA/ARCH A: "51 77 597 787"
*ImageableArea ARCHB/ARCH B: "51 77 813 1219"
*ImageableArea ARCHC/ARCH C: "51 77 1245 1651"
*ImageableArea ARCHD/ARCH D: "51 77 1677 2515"
*ImageableArea ARCHE/ARCH E: "51 77 2541 3379"
*ImageableArea A4/ISO A4: "51 77 544 765"
*ImageableArea A4FullBleed/Full Bleed ISO A4: "51 77 709 982"
*ImageableArea A3/ISO A3: "51 77 791 1114"
*ImageableArea A3FullBleed/Full Bleed ISO A3: "51 77 956 1331"
*ImageableArea A2/ISO A2: "51 77 1140 1607"
*ImageableArea A1/ISO A1: "51 77 1633 2307"
*ImageableArea A0/ISO A0: "51 77 2333 3293"
*ImageableArea OVERSIZEA2/Oversize A2: "51 77 1326 1695"
*ImageableArea OVERSIZEA1/Oversize A1: "51 77 1737 2474"
*ImageableArea OVERSIZEA0/Oversize A0: "51 77 2516 3452"
*ImageableArea B4/JIS B4: "51 77 678 955"
*ImageableArea B3/JIS B3: "51 77 981 1383"
*ImageableArea B2/JIS B2: "51 77 1409 1987"
*ImageableArea B1/JIS B1: "51 77 2013 2843"
*ImageableArea P24x48/24" x 48": "51 77 1677 3379"
*ImageableArea P24x60/24" x 60": "51 77 1677 4243"
*ImageableArea P24x72/24" x 72": "51 77 1677 5107"
*ImageableArea P24x84/24" x 84": "51 77 1677 5971"
*ImageableArea P24x96/24" x 96": "51 77 1677 6835"
*ImageableArea P24x108/24" x 108": "51 77 1677 7699"
*ImageableArea P36x60/36" x 60": "51 77 2541 4243"
*ImageableArea P36x72/36" x 72": "51 77 2541 5107"
*ImageableArea P36x84/36" x 84": "51 77 2541 5971"
*ImageableArea P36x96/36" x 96": "51 77 2541 6835"
*ImageableArea P36x108/36" x 108": "51 77 2541 7699"
*?ImageableArea: "
save
/cvp {cvi ( ) cvs
print ( ) print} bind def
newpath clippath pathbbox
4 -2 roll exch 2 {ceiling cvp} repeat
exch 2 {floor cvp} repeat flush
restore"
*End
*% These provide the physical dimensions of the paper (by keyword)
*DefaultPaperDimension:Letter
*PaperDimension Letter/US Letter: "612 792"
*PaperDimension LetterFullBleed/Full Bleed US Letter: "777 1009"
*PaperDimension Tabloid/Tabloid: "792 1224"
*PaperDimension TabloidFullBleed/Full Bleed Tabloid: "957 1441"
*PaperDimension AnsiC/ANSI C: "1224 1584"
*PaperDimension AnsiD/ANSI D: "1584 2448"
*PaperDimension AnsiE/ANSI E: "2448 3168"
*PaperDimension ARCHA/ARCH A: "648 864"
*PaperDimension ARCHB/ARCH B: "864 1296"
*PaperDimension ARCHC/ARCH C: "1296 1728"
*PaperDimension ARCHD/ARCH D: "1728 2592"
*PaperDimension ARCHE/ARCH E: "2592 3456"
*PaperDimension A4/ISO A4: "595 842"
*PaperDimension A4FullBleed/Full Bleed ISO A4: "760 1059"
*PaperDimension A3/ISO A3: "842 1191"
*PaperDimension A3FullBleed/Full Bleed ISO A3: "1007 1408"
*PaperDimension A2/ISO A2: "1191 1684"
*PaperDimension A1/ISO A1: "1684 2384"
*PaperDimension A0/ISO A0: "2384 3370"
*PaperDimension OVERSIZEA2/Oversize A2: "1377 1772"
*PaperDimension OVERSIZEA1/Oversize A1: "1788 2551"
*PaperDimension OVERSIZEA0/Oversize A0: "2567 3529"
*PaperDimension B4/JIS B4: "729 1032"
*PaperDimension B3/JIS B3: "1032 1460"
*PaperDimension B2/JIS B2: "1460 2064"
*PaperDimension B1/JIS B1: "2064 2920"
*PaperDimension P24x48/24" x 48": "1728 3456"
*PaperDimension P24x60/24" x 60": "1728 4320"
*PaperDimension P24x72/24" x 72": "1728 5184"
*PaperDimension P24x84/24" x 84": "1728 6048"
*PaperDimension P24x96/24" x 96": "1728 6912"
*PaperDimension P24x108/24" x 108": "1728 7776"
*PaperDimension P36x60/36" x 60": "2592 4320"
*PaperDimension P36x72/36" x 72": "2592 5184"
*PaperDimension P36x84/36" x 84": "2592 6048"
*PaperDimension P36x96/36" x 96": "2592 6912"
*PaperDimension P36x108/36" x 108": "2592 7776"
*RequiresPageRegion All: True
*OpenUI *InputSlot: PickOne
*DefaultInputSlot: OnlyOne
*InputSlot OnlyOne/Only One: ""
*?InputSlot: "save (OnlyOne) = flush restore"
*CloseUI: *InputSlot
*%=============== Custom Page Sizes ===============
*MaxMediaWidth: "2642"
*MaxMediaHeight: "129600"
*HWMargins: 51 77 51 77
*ADUseHWMargins: True
*ParamCustomPageSize Width/Width: 1 points 200 2642
*ParamCustomPageSize Height/Height: 2 points 200 129600
*ParamCustomPageSize WidthOffset/WidthOffset: 4 points 0 0
*ParamCustomPageSize HeightOffset/HeightOffset: 5 points 0 0
*ParamCustomPageSize Orientation/Orientation: 3 int 0 3
*NonUIOrderDependency: 30.0 AnySetup *CustomPageSize
*CustomPageSize True: "
pop pop % discard offsets
2 mod 0 eq
{ exch
3 dict begin
/PageSize [ 4 -2 roll ] def
userdict /HPCustTrans 0 put
/ImagingBBox null def
currentdict end setpagedevice
}
{
3 dict begin
/PageSize [ 4 -2 roll ] def
userdict /HPCustTrans 0 put
/ImagingBBox null def
currentdict end setpagedevice
} ifelse"
*End
*%=============== Font Information ===============
*DefaultFont: Courier
*Font AlbertusMT-Italic: Standard "(501.000)" Standard ROM
*Font AlbertusMT-Light: Standard "(501.000)" Standard ROM
*Font AlbertusMT: Standard "(501.000)" Standard ROM
*Font AntiqueOlive-Bold: Standard "(501.000)" Standard ROM
*Font AntiqueOlive-Compact: Standard "(501.000)" Standard ROM
*Font AntiqueOlive-Italic: Standard "(501.000)" Standard ROM
*Font AntiqueOlive-Roman: Standard "(501.000)" Standard ROM
*Font AntiqueOliveCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font AntiqueOliveCE-Compact: Win1250 "(501.000)" ExtendedRoman ROM
*Font AntiqueOliveCE-Italic: Win1250 "(501.000)" ExtendedRoman ROM
*Font AntiqueOliveCE-Roman: Win1250 "(501.000)" ExtendedRoman ROM
*Font Apple-Chancery: Standard "(501.000)" Standard ROM
*Font Apple-ChanceryCE: Win1250 "(501.000)" ExtendedRoman ROM
*Font ArialMT: Standard "(501.000)" Standard ROM
*Font Arial-BoldMT: Standard "(501.000)" Standard ROM
*Font Arial-BoldItalicMT: Standard "(501.000)" Standard ROM
*Font Arial-ItalicMT: Standard "(501.000)" Standard ROM
*Font ArialCE: Win1250 "(501.000)" ExtendedRoman ROM
*Font ArialCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font ArialCE-BoldItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font ArialCE-Italic: Win1250 "(501.000)" ExtendedRoman ROM
*Font AvantGarde-Book: Standard "(501.000)" Standard ROM
*Font AvantGarde-BookOblique: Standard "(501.000)" Standard ROM
*Font AvantGarde-Demi: Standard "(501.000)" Standard ROM
*Font AvantGarde-DemiOblique: Standard "(501.000)" Standard ROM
*Font AvantGardeCE-Book: Win1250 "(501.000)" ExtendedRoman ROM
*Font AvantGardeCE-BookOblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font AvantGardeCE-Demi: Win1250 "(501.000)" ExtendedRoman ROM
*Font AvantGardeCE-DemiOblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font Bodoni: Standard "(501.000)" Standard ROM
*Font Bodoni-Bold: Standard "(501.000)" Standard ROM
*Font Bodoni-BoldItalic: Standard "(501.000)" Standard ROM
*Font Bodoni-Italic: Standard "(501.000)" Standard ROM
*Font Bodoni-Poster: Standard "(501.000)" Standard ROM
*Font Bodoni-PosterCompressed: Standard "(501.000)" Standard ROM
*Font BodoniCE: Win1250 "(501.000)" ExtendedRoman ROM
*Font BodoniCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font BodoniCE-BoldItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font BodoniCE-Italic: Win1250 "(501.000)" ExtendedRoman ROM
*Font BodoniCE-Poster: Win1250 "(501.000)" ExtendedRoman ROM
*Font BodoniCE-PosterCompressed: Win1250 "(501.000)" ExtendedRoman ROM
*Font Bookman-Demi: Standard "(501.000)" Standard ROM
*Font Bookman-DemiItalic: Standard "(501.000)" Standard ROM
*Font Bookman-Light: Standard "(501.000)" Standard ROM
*Font Bookman-LightItalic: Standard "(501.000)" Standard ROM
*Font BookmanCE-Demi: Win1250 "(501.000)" ExtendedRoman ROM
*Font BookmanCE-DemiItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font BookmanCE-Light: Win1250 "(501.000)" ExtendedRoman ROM
*Font BookmanCE-LightItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font Carta: Standard "(501.000)" Standard ROM
*Font Chicago: Standard "(501.000)" Standard ROM
*Font ChicagoCE: Win1250 "(501.000)" ExtendedRoman ROM
*Font Clarendon: Standard "(501.000)" Standard ROM
*Font Clarendon-Bold: Standard "(501.000)" Standard ROM
*Font Clarendon-Light: Standard "(501.000)" Standard ROM
*Font ClarendonCE: Win1250 "(501.000)" ExtendedRoman ROM
*Font ClarendonCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font ClarendonCE-Light: Win1250 "(501.000)" ExtendedRoman ROM
*Font CooperBlack: Standard "(501.000)" Standard ROM
*Font CooperBlack-Italic: Standard "(501.000)" Standard ROM
*Font Copperplate-ThirtyThreeBC: Standard "(501.000)" Standard ROM
*Font Copperplate-ThirtyTwoBC: Standard "(501.000)" Standard ROM
*Font Coronet-Regular: Standard "(501.000)" Standard ROM
*Font CoronetCE-Regular: Win1250 "(501.000)" ExtendedRoman ROM
*Font Courier: Standard "(501.000)" Standard ROM
*Font Courier-Bold: Standard "(501.000)" Standard ROM
*Font Courier-BoldOblique: Standard "(501.000)" Standard ROM
*Font Courier-Oblique: Standard "(501.000)" Standard ROM
*Font CourierCE: Win1250 "(501.000)" ExtendedRoman ROM
*Font CourierCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font CourierCE-BoldOblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font CourierCE-Oblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font Eurostile: Standard "(501.000)" Standard ROM
*Font Eurostile-Bold: Standard "(501.000)" Standard ROM
*Font Eurostile-BoldExtendedTwo: Standard "(501.000)" Standard ROM
*Font Eurostile-ExtendedTwo: Standard "(501.000)" Standard ROM
*Font EurostileCE: Win1250 "(501.000)" ExtendedRoman ROM
*Font EurostileCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font EurostileCE-BoldExtendedTwo: Win1250 "(501.000)" ExtendedRoman ROM
*Font EurostileCE-ExtendedTwo: Win1250 "(501.000)" ExtendedRoman ROM
*Font Geneva: Standard "(501.000)" Standard ROM
*Font GenevaCE: Win1250 "(501.000)" ExtendedRoman ROM
*Font GillSans: Standard "(501.000)" Standard ROM
*Font GillSans-Bold: Standard "(501.000)" Standard ROM
*Font GillSans-BoldCondensed: Standard "(501.000)" Standard ROM
*Font GillSans-BoldItalic: Standard "(501.000)" Standard ROM
*Font GillSans-Condensed: Standard "(501.000)" Standard ROM
*Font GillSans-ExtraBold: Standard "(501.000)" Standard ROM
*Font GillSans-Italic: Standard "(501.000)" Standard ROM
*Font GillSans-Light: Standard "(501.000)" Standard ROM
*Font GillSans-LightItalic: Standard "(501.000)" Standard ROM
*Font GillSansCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font GillSansCE-BoldCondensed: Win1250 "(501.000)" ExtendedRoman ROM
*Font GillSansCE-BoldItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font GillSansCE-Condensed: Win1250 "(501.000)" ExtendedRoman ROM
*Font GillSansCE-ExtraBold: Win1250 "(501.000)" ExtendedRoman ROM
*Font GillSansCE-Italic: Win1250 "(501.000)" ExtendedRoman ROM
*Font GillSansCE-Light: Win1250 "(501.000)" ExtendedRoman ROM
*Font GillSansCE-LightItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font GillSansCE-Roman: Win1250 "(501.000)" ExtendedRoman ROM
*Font Goudy: Standard "(501.000)" Standard ROM
*Font Goudy-Bold: Standard "(501.000)" Standard ROM
*Font Goudy-BoldItalic: Standard "(501.000)" Standard ROM
*Font Goudy-ExtraBold: Standard "(501.000)" Standard ROM
*Font Goudy-Italic: Standard "(501.000)" Standard ROM
*Font Helvetica: Standard "(501.000)" Standard ROM
*Font Helvetica-Bold: Standard "(501.000)" Standard ROM
*Font Helvetica-BoldOblique: Standard "(501.000)" Standard ROM
*Font Helvetica-Condensed: Standard "(501.000)" Standard ROM
*Font Helvetica-Condensed-Bold: Standard "(501.000)" Standard ROM
*Font Helvetica-Condensed-BoldObl: Standard "(501.000)" Standard ROM
*Font Helvetica-Condensed-Oblique: Standard "(501.000)" Standard ROM
*Font Helvetica-Narrow: Standard "(501.000)" Standard ROM
*Font Helvetica-Narrow-Bold: Standard "(501.000)" Standard ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(501.000)" Standard ROM
*Font Helvetica-Narrow-Oblique: Standard "(501.000)" Standard ROM
*Font Helvetica-Oblique: Standard "(501.000)" Standard ROM
*Font HelveticaCE: Win1250 "(501.000)" ExtendedRoman ROM
*Font HelveticaCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font HelveticaCE-BoldOblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font HelveticaCE-Cond: Win1250 "(501.000)" ExtendedRoman ROM
*Font HelveticaCE-CondBold: Win1250 "(501.000)" ExtendedRoman ROM
*Font HelveticaCE-CondBoldObl: Win1250 "(501.000)" ExtendedRoman ROM
*Font HelveticaCE-CondObl: Win1250 "(501.000)" ExtendedRoman ROM
*Font HelveticaCE-Narrow: Win1250 "(501.000)" ExtendedRoman ROM
*Font HelveticaCE-NarrowBold: Win1250 "(501.000)" ExtendedRoman ROM
*Font HelveticaCE-NarrowBoldOblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font HelveticaCE-NarrowOblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font HelveticaCE-Oblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font HoeflerText-Black: Standard "(501.000)" Standard ROM
*Font HoeflerText-BlackItalic: Standard "(501.000)" Standard ROM
*Font HoeflerText-Italic: Standard "(501.000)" Standard ROM
*Font HoeflerText-Ornaments: Standard "(501.000)" Standard ROM
*Font HoeflerText-Regular: Standard "(501.000)" Standard ROM
*Font HoeflerTextCE-Black: Win1250 "(501.000)" ExtendedRoman ROM
*Font HoeflerTextCE-BlackItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font HoeflerTextCE-Italic: Win1250 "(501.000)" ExtendedRoman ROM
*Font HoeflerTextCE-Regular: Win1250 "(501.000)" ExtendedRoman ROM
*Font JoannaMT: Standard "(501.000)" Standard ROM
*Font JoannaMT-Bold: Standard "(501.000)" Standard ROM
*Font JoannaMT-BoldItalic: Standard "(501.000)" Standard ROM
*Font JoannaMT-Italic: Standard "(501.000)" Standard ROM
*Font JoannaMTCE: Win1250 "(501.000)" ExtendedRoman ROM
*Font JoannaMTCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font JoannaMTCE-BoldItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font JoannaMTCE-Italic: Win1250 "(501.000)" ExtendedRoman ROM
*Font LetterGothic: Standard "(501.000)" Standard ROM
*Font LetterGothic-Bold: Standard "(501.000)" Standard ROM
*Font LetterGothic-BoldSlanted: Standard "(501.000)" Standard ROM
*Font LetterGothic-Slanted: Standard "(501.000)" Standard ROM
*Font LetterGothicCE: Win1250 "(501.000)" ExtendedRoman ROM
*Font LetterGothicCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font LetterGothicCE-BoldSlanted: Win1250 "(501.000)" ExtendedRoman ROM
*Font LetterGothicCE-Slanted: Win1250 "(501.000)" ExtendedRoman ROM
*Font LubalinGraph-Book: Standard "(501.000)" Standard ROM
*Font LubalinGraph-BookOblique: Standard "(501.000)" Standard ROM
*Font LubalinGraph-Demi: Standard "(501.000)" Standard ROM
*Font LubalinGraph-DemiOblique: Standard "(501.000)" Standard ROM
*Font LubalinGraphCE-Book: Win1250 "(501.000)" ExtendedRoman ROM
*Font LubalinGraphCE-BookOblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font LubalinGraphCE-Demi: Win1250 "(501.000)" ExtendedRoman ROM
*Font LubalinGraphCE-DemiOblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font Marigold: Standard "(501.000)" Standard ROM
*Font Monaco: Standard "(501.000)" Standard ROM
*Font MonacoCE: Win1250 "(501.000)" ExtendedRoman ROM
*Font MonaLisa-Recut: Standard "(501.000)" Standard ROM
*Font NewCenturySchlbk-Bold: Standard "(501.000)" Standard ROM
*Font NewCenturySchlbk-BoldItalic: Standard "(501.000)" Standard ROM
*Font NewCenturySchlbk-Italic: Standard "(501.000)" Standard ROM
*Font NewCenturySchlbk-Roman: Standard "(501.000)" Standard ROM
*Font NewCenturySchlbkCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font NewCenturySchlbkCE-BoldItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font NewCenturySchlbkCE-Italic: Win1250 "(501.000)" ExtendedRoman ROM
*Font NewCenturySchlbkCE-Roman: Win1250 "(501.000)" ExtendedRoman ROM
*Font NewYork: Standard "(501.000)" Standard ROM
*Font NewYorkCE: Win1250 "(501.000)" ExtendedRoman ROM
*Font Optima: Standard "(501.000)" Standard ROM
*Font Optima-Bold: Standard "(501.000)" Standard ROM
*Font Optima-BoldItalic: Standard "(501.000)" Standard ROM
*Font Optima-Italic: Standard "(501.000)" Standard ROM
*Font OptimaCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font OptimaCE-BoldItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font OptimaCE-Italic: Win1250 "(501.000)" ExtendedRoman ROM
*Font OptimaCE-Roman: Win1250 "(501.000)" ExtendedRoman ROM
*Font Oxford: Standard "(501.000)" Standard ROM
*Font Palatino-Bold: Standard "(501.000)" Standard ROM
*Font Palatino-BoldItalic: Standard "(501.000)" Standard ROM
*Font Palatino-Italic: Standard "(501.000)" Standard ROM
*Font Palatino-Roman: Standard "(501.000)" Standard ROM
*Font PalatinoCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font PalatinoCE-BoldItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font PalatinoCE-Italic: Win1250 "(501.000)" ExtendedRoman ROM
*Font PalatinoCE-Roman: Win1250 "(501.000)" ExtendedRoman ROM
*Font StempelGaramond-Bold: Standard "(501.000)" Standard ROM
*Font StempelGaramond-BoldItalic: Standard "(501.000)" Standard ROM
*Font StempelGaramond-Italic: Standard "(501.000)" Standard ROM
*Font StempelGaramond-Roman: Standard "(501.000)" Standard ROM
*Font StempelGaramondCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font StempelGaramondCE-BoldItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font StempelGaramondCE-Italic: Win1250 "(501.000)" ExtendedRoman ROM
*Font StempelGaramondCE-Roman: Win1250 "(501.000)" ExtendedRoman ROM
*Font Symbol: Standard "(501.000)" Standard ROM
*Font Tekton: Standard "(501.000)" Standard ROM
*Font Times-Bold: Standard "(501.000)" Standard ROM
*Font Times-BoldItalic: Standard "(501.000)" Standard ROM
*Font Times-Italic: Standard "(501.000)" Standard ROM
*Font Times-Roman: Standard "(501.000)" Standard ROM
*Font TimesCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font TimesCE-BoldItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font TimesCE-Italic: Win1250 "(501.000)" ExtendedRoman ROM
*Font TimesCE-Roman: Win1250 "(501.000)" ExtendedRoman ROM
*Font TimesNewRomanPSMT: Standard "(501.000)" Standard ROM
*Font TimesNewRomanPS-BoldMT: Standard "(501.000)" Standard ROM
*Font TimesNewRomanPS-BoldItalicMT: Standard "(501.000)" Standard ROM
*Font TimesNewRomanPS-ItalicMT: Standard "(501.000)" Standard ROM
*Font TimesNewRomanCE: Win1250 "(501.000)" ExtendedRoman ROM
*Font TimesNewRomanCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font TimesNewRomanCE-BoldItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font TimesNewRomanCE-Italic: Win1250 "(501.000)" ExtendedRoman ROM
*Font Univers: Standard "(501.000)" Standard ROM
*Font Univers-Bold: Standard "(501.000)" Standard ROM
*Font Univers-BoldExt: Standard "(501.000)" Standard ROM
*Font Univers-BoldExtObl: Standard "(501.000)" Standard ROM
*Font Univers-BoldOblique: Standard "(501.000)" Standard ROM
*Font Univers-Condensed: Standard "(501.000)" Standard ROM
*Font Univers-CondensedBold: Standard "(501.000)" Standard ROM
*Font Univers-CondensedBoldOblique: Standard "(501.000)" Standard ROM
*Font Univers-CondensedOblique: Standard "(501.000)" Standard ROM
*Font Univers-Extended: Standard "(501.000)" Standard ROM
*Font Univers-ExtendedObl: Standard "(501.000)" Standard ROM
*Font Univers-Light: Standard "(501.000)" Standard ROM
*Font Univers-LightOblique: Standard "(501.000)" Standard ROM
*Font Univers-Oblique: Standard "(501.000)" Standard ROM
*Font UniversCE-Bold: Win1250 "(501.000)" ExtendedRoman ROM
*Font UniversCE-BoldExt: Win1250 "(501.000)" ExtendedRoman ROM
*Font UniversCE-BoldExtObl: Win1250 "(501.000)" ExtendedRoman ROM
*Font UniversCE-BoldOblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font UniversCE-Condensed: Win1250 "(501.000)" ExtendedRoman ROM
*Font UniversCE-CondensedBold: Win1250 "(501.000)" ExtendedRoman ROM
*Font UniversCE-CondensedBoldOblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font UniversCE-CondensedOblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font UniversCE-Extended: Win1250 "(501.000)" ExtendedRoman ROM
*Font UniversCE-ExtendedObl: Win1250 "(501.000)" ExtendedRoman ROM
*Font UniversCE-Light: Win1250 "(501.000)" ExtendedRoman ROM
*Font UniversCE-LightOblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font UniversCE-Medium: Win1250 "(501.000)" ExtendedRoman ROM
*Font UniversCE-Oblique: Win1250 "(501.000)" ExtendedRoman ROM
*Font Wingdings-Regular: Standard "(501.000)" Standard ROM
*Font ZapfChancery-MediumItalic: Standard "(501.000)" Standard ROM
*Font ZapfChanceryCE-MediumItalic: Win1250 "(501.000)" ExtendedRoman ROM
*Font ZapfDingbats: Standard "(501.000)" Standard ROM
*?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"
*% Status (format: %%[ status: <one of these> ] %%)
*Status: "idle"
*Status: "busy"
*Status: "waiting"
*Status: "printing"
*Status: "initializing"
*Status: "printing test page"
*Status: "PrinterError: needs attention"
*Status: "PrinterError: cover open"
*Status: "PrinterError: warming up"
*Status: "PrinterError: resetting printer"
*Status: "PrinterError: output bin full"
*Status: "PrinterError: Paper Jam"
*Status: "PrinterError: no toner cartridge"
*Status: "PrinterError: manual feed"
*Status: "PrinterError: out of paper"
*Status: "PrinterError: page protect needed"
*Status: "PrinterError: out of memory"
*Status: "PrinterError: off line"
*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
*Source: "Parallel"
*Source: "OptionalIO"
*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
*PrinterError: "needs attention"
*PrinterError: "cover open"
*PrinterError: "warming up"
*PrinterError: "resetting printer"
*PrinterError: "output bin full"
*PrinterError: "Paper Jam"
*PrinterError: "no toner cartridge"
*PrinterError: "manual feed"
*PrinterError: "out of paper"
*PrinterError: "page protect needed"
*PrinterError: "out of memory"
*PrinterError: "off line"
*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
*%=============== Color Separation Information ===============
*DefaultColorSep: ProcessBlack.60lpi.600dpi/60 lpi / 600 dpi
*InkName: ProcessBlack/Process Black
*InkName: CustomColor/Custom Color
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessYellow/Process Yellow
*% =============== For 60 lpi / 600 dpi ===============
*ColorSepScreenAngle ProcessBlack.60lpi.600dpi/60 lpi / 600 dpi: "45"
*ColorSepScreenAngle CustomColor.60lpi.600dpi/60 lpi / 600 dpi: "45"
*ColorSepScreenAngle ProcessCyan.60lpi.600dpi/60 lpi / 600 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.60lpi.600dpi/60 lpi / 600 dpi: "75"
*ColorSepScreenAngle ProcessYellow.60lpi.600dpi/60 lpi / 600 dpi: "0"
*ColorSepScreenFreq ProcessBlack.60lpi.600dpi/60 lpi / 600 dpi: "60"
*ColorSepScreenFreq CustomColor.60lpi.600dpi/60 lpi / 600 dpi: "60"
*ColorSepScreenFreq ProcessCyan.60lpi.600dpi/60 lpi / 600 dpi: "60"
*ColorSepScreenFreq ProcessMagenta.60lpi.600dpi/60 lpi / 600 dpi: "60"
*ColorSepScreenFreq ProcessYellow.60lpi.600dpi/60 lpi / 600 dpi: "60"
*% =============== For 53 lpi / 600 dpi ===============
*ColorSepScreenAngle ProcessBlack.53lpi.600dpi/53 lpi / 600 dpi: "45.0"
*ColorSepScreenAngle CustomColor.53lpi.600dpi/53 lpi / 600 dpi: "45.0"
*ColorSepScreenAngle ProcessCyan.53lpi.600dpi/53 lpi / 600 dpi: "71.5651"
*ColorSepScreenAngle ProcessMagenta.53lpi.600dpi/53 lpi / 600 dpi: "18.4349"
*ColorSepScreenAngle ProcessYellow.53lpi.600dpi/53 lpi / 600 dpi: "0.0"
*ColorSepScreenFreq ProcessBlack.53lpi.600dpi/53 lpi / 600 dpi: "53.033"
*ColorSepScreenFreq CustomColor.53lpi.600dpi/53 lpi / 600 dpi: "53.033"
*ColorSepScreenFreq ProcessCyan.53lpi.600dpi/53 lpi / 600 dpi: "47.4342"
*ColorSepScreenFreq ProcessMagenta.53lpi.600dpi/53 lpi / 600 dpi: "47.4342"
*ColorSepScreenFreq ProcessYellow.53lpi.600dpi/53 lpi / 600 dpi: "50.0"
*% Last Edit Date: Dec/1/1997, 16:00pm
*% Last localization Date: July 14th 1997
*% End of PPD file for HP DesignJet 2500CP
|