-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxr_WorkCentre7120.drv
4341 lines (4336 loc) · 200 KB
/
xr_WorkCentre7120.drv
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
// CUPS PPD Compiler CUPS v2.3.4
// Include necessary files...
#include <font.defs>
#include <media.defs>
// Xerox WorkCentre 7120
{
Copyright "Adobe Systems PostScript(R) Printer Description File"
Copyright "Copyright 1987-1996 Adobe Systems Incorporated. "
Copyright "All Rights Reserved. "
Copyright "Permission is granted for redistribution of this file as"
Copyright "long as this copyright notice is intact and the contents"
Copyright "of the file is not altered in any way from its original form."
Copyright "End of Copyright statement"
Manufacturer "Xerox"
ModelName "WorkCentre 7120"
PCFileName "XRSRCEE1.PPD"
Version "1.0"
DriverType ps
ColorDevice Yes
Throughput 35
Attribute "NickName" "" "Xerox WorkCentre 7120"
Attribute "ShortNickName" "" "Xerox WorkCentre 7120"
Attribute "Product" "" "(WorkCentre 7120)"
Attribute "PSVersion" "" "(3016.103) 6"
Attribute "JobPatchFile" "0" ""
Attribute "?XRPaperTrayConfiguration" "" "
save
currentpagedevice
/InputAttributes get length 2 sub
[(None)(2Tray)(Unknown)(4Tray)] exch {get} stopped {pop pop (Unknown)}
{
/Custom /ProcSet resourcestatus
{ pop pop /Custom /ProcSet findresource
dup /engineoptions known {
/engineoptions get exec
/TandemTray 2 copy known {get}{pop pop false} ifelse
}
{ pop false } ifelse
{(4Tray) eq {(4TrayTTM)}{(Unknown)}ifelse} if
} if
} ifelse
= flush
restore
"
Attribute "?XROutputOptions" "" "
save
currentpagedevice /OutputAttributes get 30 known {
currentpagedevice /PunchDetails get /NumHoles get 3 eq {
(Finisher3Holes)
}{
(Finisher2and4Holes)
} ifelse
}{
(None)
} ifelse
= flush
restore
"
Attribute "?XRBookletTray" "" "save currentpagedevice/OutputAttributes get 50 known{(True)}{(False)}ifelse = flush restore"
Attribute "?XRRegionalPaperSetting" "" "
save
/Custom /ProcSet resourcestatus
{ pop pop /Custom /ProcSet findresource dup /currentpapersizegroup known
{
/currentpapersizegroup get exec
dup 0 eq{(Unknown) exch} if
dup 1 eq{(Mm) exch} if
dup 2 eq{(Inch) exch} if
dup 3 eq{(Legal13) exch} if
dup 4 eq{(Kai) exch} if
dup 5 eq{(Legal) exch} if
pop
}
{
pop (Unknown)
} ifelse
}if
= flush
restore
"
Attribute "?XRColorModeSetting" "" "save(Color)= flush restore"
Attribute "?InstalledMemory" "" "
save
currentsystemparams /InstalledRam 2 copy known
{ get dup null eq {pop (Unknown)}
{dup 805306368 eq{pop (768Meg)}
{ dup 1073741824 eq{pop (1024Meg)}
{pop (Unknown)} ifelse
} ifelse
} ifelse
} { pop pop (Unknown)} ifelse
= flush
restore
"
Attribute "LanguageLevel" "" "3"
Attribute "Protocols" "" "BCP TBCP"
Attribute "1284Modes" "Parallel" "Compat Nibble ECP"
Attribute "1284DeviceID" "" "MANUFACTURER:XEROX;COMMAND SET:;MODEL:WorkCentre 7245;CLASS:PRINTER;COMPATIBLE ID:;DESCRIPTION:XEROX WorkCentre 7245;"
Attribute "FreeVM" "" "23247104"
Attribute "VMOption" "768Meg/768MB" "23247104"
Attribute "VMOption" "1024Meg/1024MB" "23247104"
Attribute "DefaultColorSpace" "" "CMYK"
Attribute "LandscapeOrientation" "" "Plus90"
Attribute "TTRasterizer" "" "Type42"
Attribute "?TTRasterizer" "" "
save
42 /FontType resourcestatus
{pop pop (Type42)}{(No Type42)} ifelse = flush
restore
"
Attribute "FileSystem" "" "True"
Attribute "?FileSystem" "" "
save false
(%disk?%)
{ currentdevparams dup /Writeable known
{ /Writeable get {pop true} if } { pop } ifelse
} 10 string /IODevice resourceforall
{(True)}{(False)} ifelse = flush
restore
"
Attribute "Password" "" "()"
Attribute "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
"
Attribute "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
"
Attribute "SuggestedJobTimeout" "" "0"
Attribute "SuggestedWaitTimeout" "" "300"
Attribute "PrintPSErrors" "" "True"
Attribute "DefaultResolution" "" "600dpi"
Attribute "?Resolution" "" "
save
currentpagedevice /HWResolution get dup aload pop eq
{0 get cvi 9 string cvs print}
{aload pop exch cvi 9 string cvs print (x) print cvi 9 string cvs print}
ifelse (dpi) =
restore
"
Attribute "AccurateScreensSupport" "" "True"
Attribute "RequiresPageRegion" "All" "True"
Attribute "?PageSize" "" "
save
currentpagedevice /PageSize get aload pop
2 copy gt {exch} if
(Unknown)
25 dict
dup [842 1191] (A3) put
dup [729 1032] (B4) put
dup [595 842] (A4) put
dup [516 729] (B5) put
dup [420 595] (A5) put
dup [363 516] (B6) put
dup [297 420] (A6) put
dup [283 420] (XRPostcard) put
dup [420 567] (DoublePostcardRotated) put
dup [288 432] (XR4x6) put
dup [340 666] (EnvChou3) put
dup [907 1274] (SRA3) put
dup [360 504] (XR5x7) put
dup [396 612] (Statement) put
dup [522 756] (Executive) put
dup [576 720] (8x10) put
dup [609 892] (XR846x124) put
dup [612 792] (Letter) put
dup [612 1008] (Legal) put
dup [612 936] (FanFoldGermanLegal) put
dup [792 1080] (XR11x15) put
dup [792 1224] (Tabloid) put
dup [864 1296] (TabloidExtra) put
dup [757 1100] (XR8-KAI) put
dup [550 757] (XR16-KAI) put
dup [632 842] (XRA4Cover) put
dup [648 792] (9x11) 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
"
Attribute "?ImageableArea" "" "
save
3 dict begin
/cvp { ( ) cvs print ( ) print } bind def
/upperright {10000 mul floor 10000 div} bind def
/lowerleft {10000 mul ceiling 10000 div} bind def
newpath clippath pathbbox
4 -2 roll exch 2 {lowerleft cvp} repeat
exch 2 {upperright cvp} repeat (\\n) print flush
end
restore
"
Attribute "?InputSlot" "" "
save
6 dict
dup 0 (1stTray) put
dup 1 (2ndTray) put
dup 2 (3rdTray) put
dup 3 (4thTray) put
dup 4 (3rdTrayTTM) put
dup 5 (4thTrayTTM) put
currentpagedevice dup /MediaPosition known
{ /MediaPosition get dup null eq {pop pop (MediaTypeAPS)}
{
/Custom /ProcSet resourcestatus {
pop pop /Custom /ProcSet findresource dup /engineoptions known {
/engineoptions get exec /TandemTray 2 copy known {get {2 add} if}{pop pop} ifelse
} {pop} ifelse
} if
get
} ifelse
} {pop pop (Unknown)} ifelse
= flush
restore
"
Attribute "?OutputBin" "" "
save
currentpagedevice
dup /OutputType get null eq {
/OutputAttributes get dup /Priority get
{
2 copy known {exit} {pop} ifelse
} forall
dup type /integertype eq {
exch pop
} {
pop 0
} ifelse
} {
/OutputAttributes get
dup /Priority get
{
2 copy known {
2 copy get /OutputType get
currentpagedevice /OutputType get
anchorsearch {
pop length 0 eq {exit} if
} {
pop
} ifelse
pop
} {
pop
} ifelse
} forall
dup type /integertype eq {
exch pop
} {
pop 30
} ifelse
} ifelse
3 dict
dup 0 (Auto) put
dup 1 (SideTray) put
dup 30 (FinisherTray) put
exch 2 copy known {get} {pop pop (Unknown)} ifelse
= flush
restore
"
Attribute "?ManualFeed" "" "
save
currentpagedevice /ManualFeed known
{currentpagedevice /ManualFeed get {(True)}{(False)}ifelse}
{(False)} ifelse = flush
restore
"
Attribute "?Duplex" "" "
save
currentpagedevice /Duplex known
{ currentpagedevice /Duplex get
{ currentpagedevice /Tumble get
{(DuplexTumble)}{(DuplexNoTumble)}ifelse
}
{ (None) } ifelse
}
{ (None)}
ifelse = flush
restore
"
Attribute "?Collate" "" "save currentpagedevice dup/Collate known{/Collate get{(True)}{(False)}ifelse}{pop(Unknown)}ifelse = flush restore"
Attribute "?MediaType" "" "
save mark {
40 dict
(stationary) (Stationary)
(used) (StationaryBack)
(recycled) (RecyclePaper)
(fine) (FinePaper)
(user1) (CustomSizedPaper1)
(user2) (CustomSizedPaper2)
(user3) (CustomSizedPaper3)
(user4) (CustomSizedPaper4)
(user5) (CustomSizedPaper5)
(thin) (ThinPaper)
(thick1) (ThickPaper)
(thick1 side2) (ThickPaperBack)
(thick2) (ThickPaper2)
(thick2 side2) (ThickPaper2Back)
(transparency) (Transparency)
(coating1) (CoatingPaper1)
(coating1 side2) (CoatingPaper1Back)
(coating2) (CoatingPaper2)
(coating2 side2) (CoatingPaper2Back)
(label) (LabelPaper)
(thick1 finisher) (ThickPaperFinisher)
(coating1 finisher) (CoatingPaperFinisher)
(thick1 finisher[A]) (ThickPaperFinisherA)
(thick1 finisher[B]) (ThickPaperFinisherB)
(thick1 finisher[C]) (ThickPaperFinisherC)
(thick1 finisher[S]) (ThickPaperFinisherS)
(thick1[A]) (ThickPaperA)
(thick1[B]) (ThickPaperB)
(thick1[C]) (ThickPaperC)
(thick1[S]) (ThickPaperS)
(thick2[A]) (ThickPaper2A)
(thick2[B]) (ThickPaper2B)
(thick2[C]) (ThickPaper2C)
(thick2[D]) (ThickPaper2D)
(thick2[S]) (ThickPaper2S)
currentpagedevice /MediaClass get get = flush
} stopped { (Unknown) = flush } if
cleartomark restore
"
Attribute "?XRColorMode" "" "save currentpagedevice/ProcessColorModel get cvn/DeviceGray eq{(Black)}{(Color)}ifelse = flush restore"
Attribute "?XRStaple" "" "
save
currentpagedevice dup /Staple 2 copy known
{get 0 eq
{pop (None)}
{/StapleDetails 2 copy known
{get dup /Type get 7 eq
{/Location get [(UpperLeftSinglePort)(LowerLeftSinglePort)(UpperRightSinglePort)(LowerRightSinglePort)
(TopDoublePort)(BottomDoublePort)(LeftDoublePort)(RightDoublePort)] exch get}
% {/Location get [(UpperRightSingleLand)(UpperLeftSingleLand)(LowerRightSingleLand)(LowerLeftSingleLand)
% (RightDoubleLand)(LeftDoubleLand)(TopDoubleLand)(BottomDoubleLand)] exch get}
{pop (Unknown)} ifelse
{pop pop (Unknown)}ifelse
}ifelse
}
{pop pop pop
currentpagedevice dup /Booklet 2 copy known
{get {(SaddleStaple)}{(Unknown)} ifelse}{pop pop (Unknown)} ifelse
} ifelse
= flush
restore
"
Attribute "?XRPunch" "" "
save mark {
currentpagedevice /Punch get 0 eq {
(None) = flush
} {
[(TopPort)(BottomPort)(LeftPort)(RightPort)]
% [(RightLand)(LeftLand)(TopLand)(BottomLand)]
currentpagedevice /PunchDetails get /Position get = flush
} ifelse
} stopped { (Unknown) = flush } if
cleartomark restore
"
Attribute "?XRNumPunchHoles" "" "
save mark {
currentpagedevice /PunchDetails get /NumHoles 2 copy known {
get [(Unknown)(Unknown)(2Holes)(3Holes)(4Holes)] exch get = flush
} {
(Auto) = flush
} ifelse
} stopped { (Unknown) = flush } if
cleartomark restore
"
Attribute "?XRFold" "" "
save
currentpagedevice dup /Fold known {
dup /Fold get 4 eq {
dup /FoldDetails get dup /FoldType get dup 0 eq {
exch /ImageRotation get 0 eq {
pop pop (ZFoldLeft)
}{
pop pop (ZFoldRight)
} ifelse
}{
dup 1 eq {
exch /PrintInside get {
pop pop (ZLFoldInside)
}{
pop pop (ZLFoldOutside)
} ifelse
}{
pop /PrintInside get {
pop (CLFoldInside)
}{
pop (CLFoldOutside)
} ifelse
} ifelse
} ifelse
}{ % Fold is 0
dup /Booklet known {
dup /Booklet get {
/BookletDetails get dup /StapleType get 0 eq {
/PrintInside get {
(BiFoldMulti) pop % .....
(BiFoldInside)
}{
(BiFoldOutside)
} ifelse
}{
pop (None)
} ifelse
}{
pop (None)
} ifelse
}{
pop (None)
} ifelse
} ifelse
}{
dup /Booklet known {
dup /Booklet get {
/BookletDetails get dup /StapleType get 0 eq {
/PrintInside get {
(BiFoldInside)
}{
(BiFoldOutside)
} ifelse
}{
pop (None)
} ifelse
}{
pop (None)
} ifelse
}{
pop (None)
} ifelse
} ifelse
= flush
restore
"
Attribute "?Jog" "" "
save
[(None)(DeviceDeactivation)(DeviceDeactivation)(EndOfSet)]
currentpagedevice /Jog known
{currentpagedevice /Jog get {get} stopped {pop pop (Unknown)} if}
{pop (Unknown)}ifelse = flush
restore
"
Attribute "?XRMSILeadingEdge" "" "
save
(Unknown)
[(ShortEdge) (LongEdge)]
currentpagedevice dup /LeadingEdge known
{/LeadingEdge get dup null eq
{pop pop}
{2 copy exch length ge {pop pop}{get exch pop} ifelse} ifelse
}
{pop pop} ifelse
= flush
restore
"
Attribute "?XRIntCoverSheet" "" "
save mark {
[
(None)
(1stTray)
(2ndTray)
(3rdTray)
(4thTray)
(MSI)
] /Custom /ProcSet findresource /currentcoversheet get exec
/CoverSheet get get} stopped {(Unknown)}
{
/Custom /ProcSet resourcestatus
{ pop pop /Custom /ProcSet findresource
dup /engineoptions known {
/engineoptions get exec
/TandemTray 2 copy known {get}{pop pop false} ifelse
}
{ pop false } ifelse
{ dup (4thTray) eq { pop (4thTrayTTM) }
{ dup (3rdTray) eq { pop (3rdTrayTTM) } if
}ifelse
} if
} if
}ifelse
= flush
cleartomark restore
"
Attribute "?XRIntBackCoverSheet" "" "
save mark {
[
(None)
(1stTray)
(2ndTray)
(3rdTray)
(4thTray)
(MSI)
] /Custom /ProcSet findresource /currentcoversheet get exec
/BackCoverSheet get get} stopped {(Unknown)}
{
/Custom /ProcSet resourcestatus
{ pop pop /Custom /ProcSet findresource
dup /engineoptions known {
/engineoptions get exec
/TandemTray 2 copy known {get}{pop pop false} ifelse
}
{ pop false } ifelse
{ dup (4thTray) eq { pop (4thTrayTTM) }
{ dup (3rdTray) eq { pop (3rdTrayTTM) } if
}ifelse
} if
} if
}ifelse
= flush
cleartomark restore
"
Attribute "?XRSlipSheet" "" "
save
currentpagedevice /SlipSheet known {
currentpagedevice dup /SlipSheet get 0 eq {pop (OFF)}
{
/SlipSheetDetails known {
currentpagedevice /SlipSheetDetails get dup /Type get 1 eq {
dup /AutoTraySelect get 1 eq {pop (AutoTray)}
{ /SheetTray get dup 3 ge {
/Custom /ProcSet resourcestatus {
pop pop /Custom /ProcSet findresource dup /engineoptions known {
/engineoptions get exec /TandemTray 2 copy known {get {2 add} if}{pop pop} ifelse
} {pop} ifelse
} if
} if
dup 100 eq {pop (MSI)}{[(1stTray)(2ndTray)(3rdTray)(4thTray)(3rdTrayTTM)(4thTrayTTM)] exch get} ifelse
} ifelse
} {(Unknown)} ifelse
} {(Unknown)} ifelse
} ifelse
}{(Unknown)} ifelse
= flush
restore
"
Attribute "?XRSlipSheetMediaType" "" "
save
mark {
currentpagedevice /SlipSheetDetails get
dup /Type 1 ne {stop} if
/MediaClass get
dup (null) eq {(Default)=} if
dup (stationary) eq {(Stationary)=} if
dup (used) eq {(StationaryBack)=} if
dup (recycled) eq {(RecyclePaper)=} if
dup (fine) eq {(FinePaper)=} if
dup (user1) eq {(CustomSizedPaper1)=} if
dup (user2) eq {(CustomSizedPaper2)=} if
dup (user3) eq {(CustomSizedPaper3)=} if
dup (user4) eq {(CustomSizedPaper4)=} if
dup (user5) eq {(CustomSizedPaper5)=} if
dup (thin) eq {(ThinPaper)=} if
dup (thick1) eq {(ThickPaper)=} if
dup (thick1 side2) eq {(ThickPaperBack)=} if
dup (thick2) eq {(ThickPaper2)=} if
dup (thick2 side2) eq {(ThickPaper2Back)=} if
dup (coating1) eq {(CoatingPaper1)=} if
dup (coating1 side2) eq {(CoatingPaper1Back)=} if
dup (coating2) eq {(CoatingPaper2)=} if
dup (coating2 side2) eq {(CoatingPaper2Back)=} if
dup (label) eq {(LabelPaper)=} if
pop
} stopped {(Unknown)=} if
cleartomark
flush
restore
"
Attribute "?XRMixSizePrint" "" "
save
/Custom /ProcSet resourcestatus
{ pop pop /Custom /ProcSet findresource dup /currentmixsizeenable known
{/currentmixsizeenable get exec {(True)}{(False)} ifelse }{pop (Unknown)} ifelse
}if
= flush
restore
"
Attribute "?Smoothing" "" "
save
currentpagedevice /PostRenderingEnhance 2 copy known {
get {
currentpagedevice /PostRenderingEnhanceDetails 2 copy known
{ get dup /Type get 32 eq {
/REValue get 1 eq
{(True)}{(False)}ifelse
}
{pop (Unknown)} ifelse
}
{ pop pop (Unknown)} ifelse
}{(False)} ifelse
}{(Unknown)}ifelse
= flush
restore
"
Attribute "?XRGrayBalance" "" "
save
currentpagedevice /DeviceRenderingInfo 2 copy known {
get dup /Type get 26 eq {
/RGBToK get
[(False) (True) (Unknown) (Unknown)] exch get
}
{pop (Unknown)} ifelse
}
{pop pop (Unknown)} ifelse
= flush
restore
"
Attribute "?XRTonerSaver" "" "
save
currentpagedevice /PostRenderingEnhanceDetails 2 copy known {
get dup /Type get 32 eq {
/TonerSaver get 1 eq
{(True)}{(False)}ifelse
}
{pop (Unknown)} ifelse
}
{pop pop (Unknown)} ifelse
= flush
restore
"
Attribute "?XRSubPaperSelection" "" "
save
[(Policy0)(Policy2)(SMH)(Policy3)(Policy4)(Policy5)(Policy6)(Unknown)]
currentpagedevice /Policies get /PageSize get get = flush
restore
"
Attribute "?XRSaveBlankSheet" "" "
save
/Custom /ProcSet resourcestatus
{ pop pop /Custom /ProcSet findresource dup /currentsaveblanksheet known
{/currentsaveblanksheet get exec {(True)}{(False)} ifelse }{pop (Unknown)} ifelse
}if
= flush
restore
"
Attribute "?XRCustomPageSizeCorrection" "" "
save
(Unknown)
userdict /4.3PPDCompliant known
{userdict /4.3PPDCompliant get
{pop (False) }{pop (True)} ifelse
} if
= flush
restore
"
Attribute "LeadingEdge" "Short" ""
Attribute "DefaultLeadingEdge" "" "Short"
Attribute "NonUIOrderDependency" "" "40.0 AnySetup *CustomPageSize"
Attribute "?XROutputMode" "" "
save
currentpagedevice dup /HWResolution get 0 get cvi 1200 eq {
pop (HighResolution)
}{
/DeviceRenderingInfo 2 copy known {
get dup /Type get 26 eq {
/ValuesPerColorComponent get 16 eq {(HighQuality)}{(HighSpeed)}ifelse
}{pop (Unknown)} ifelse
}{ pop pop (Unknown)} ifelse
} ifelse
= flush
restore
"
Attribute "?XRBrightness" "" "
save
currentpagedevice /DeviceRenderingInfo 2 copy known {
get dup /Type get 26 eq {
/Brightness get
11 dict
dup 5 (Bright5) put
dup 4 (Bright4) put
dup 3 (Bright3) put
dup 2 (Bright2) put
dup 1 (Bright1) put
dup 0 (Normal) put
dup -1 (Dark1) put
dup -2 (Dark2) put
dup -3 (Dark3) put
dup -4 (Dark4) put
dup -5 (Dark5) put
exch get
}
{pop (Unknown)} ifelse
}
{pop pop (Unknown)} ifelse
= flush
restore
"
Attribute "?XRRGBImageType" "" "
save
currentpagedevice /DeviceRenderingInfo 2 copy known {
get dup /Type get 26 eq {
/RGBCorrection get
10 dict
dup 3 (Standard) put
dup 1 (Photo) put
dup 4 (Presentation) put
dup 2 (Web) put
dup 5 (CAD) put
dup 0 (Off) put
exch get
}
{pop (Unknown)} ifelse
}
{pop pop (Unknown)} ifelse
= flush
restore
"
Attribute "?XREngineScreen" "" "
save
currentpagedevice /PostRenderingEnhanceDetails 2 copy known {
get dup /Type get 32 eq {
/EngineScreen get
10 dict
dup 2 (Auto) put
dup 0 (Fineness) put
dup 3 (Standard) put
dup 1 (Gradation) put
exch get
}
{pop (Unknown)} ifelse
}
{pop pop (Unknown)} ifelse
= flush
restore
"
Attribute "?XRRGBCorrection" "" "
currentpagedevice /DeviceRenderingInfo 2 copy known {
get dup /Type get 26 eq {
/RGBCorrection get
10 dict
dup 10 (Perceptual) put
dup 11 (Saturation) put
dup 12 (RelativeC) put
dup 13 (AbsoluteC) put
exch 2 copy known {get} {pop pop (None)} ifelse
}
{pop (Unknown)} ifelse
}
{pop pop (Unknown)} ifelse
= flush
restore
"
Attribute "?XRRGBInputProfile" "" "
save
currentpagedevice /DeviceRenderingInfo 2 copy known {
get dup /Type get 26 eq {
/RGBSpace get
[(SRGB) (AdobeRGB)] exch get
}
{pop (Unknown)} ifelse
}
{pop pop (Unknown)} ifelse
= flush
restore
"
Attribute "?XRRGBGammaCorrection" "" "
save
currentpagedevice /DeviceRenderingInfo 2 copy known {
get dup /Type get 26 eq {
/GammaCorrection get
10 dict
dup 1 (Lightest) put
dup 2 (Light) put
dup 3 (Standard) put
dup 4 (Dark) put
dup 5 (Darkest) put
exch get
}
{pop (Unknown)} ifelse
}
{pop pop (Unknown)} ifelse
= flush
restore
"
Attribute "?XRColorTemperature" "" "
save
currentpagedevice /DeviceRenderingInfo 2 copy known {
get dup /Type get 26 eq {
/WhitePoint get
[(TemperatureD50) (TemperatureD65) (Temperature9300K)] exch get
}
{pop (Unknown)} ifelse
}
{pop pop (Unknown)} ifelse
= flush
restore
"
Attribute "?XRCMYKCorrectionSTD" "" "
save
currentpagedevice /DeviceRenderingInfo 2 copy known {
get dup /Type get 26 eq {
/CMYKCorrection get
[(None) (JapanColor2001) (JapanColor2001) (JapanColor2001)
(EuroScale) (EuroScale) (EuroScale) (SWOP)] exch get
}
{pop (Unknown)} ifelse
}
{pop pop (Unknown)} ifelse
= flush
restore
"
Attribute "?XRCMYKCorrectionTarget" "" "
save
/Custom/ProcSet findresource/currenttargetpaper 2 copy known
{get exec
dup 0 eq{(Auto)=}if
dup 1 eq{(Type1)=}if
dup 3 eq{(Type3)=}if
dup 2 eq{(Type2)=}if
pop}
{pop pop (Unknown) =}ifelse
flush
restore
"
Attribute "DefaultHalftoneType" "" "5"
Attribute "ScreenFreq" "" "85.0"
Attribute "ScreenAngle" "" "45.0"
Attribute "DefaultScreenProc" "" "Dot"
Attribute "ScreenProc" "Dot" "{180 mul cos exch 180 mul cos add 2 div} bind"
Attribute "ScreenProc" "Line" "{ pop }"
Attribute "ScreenProc" "Ellipse" "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
Attribute "DefaultTransfer" "" "Null"
Attribute "Transfer" "Null" "{ }"
Attribute "Transfer" "Null.Inverse" "{ 1 exch sub }"
Attribute "FCacheSize" "768Meg" "1441792"
Attribute "FCacheSize" "1024Meg" "1441792"
Attribute "?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
"
Attribute "?FontList" "" "
save
(*) {cvn ==} 128 string /Font resourceforall
(*) = flush
restore
"
Attribute "Message" "" "%%[ exitserver: permanent state may be changed ]%%"
Attribute "Message" "" "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
Attribute "Message" "" "\\FontName\\ not found, using Courier"
Attribute "Status" "" "initializing"
Attribute "Status" "" "idle"
Attribute "Status" "" "holding"
Attribute "Status" "" "busy"
Attribute "Status" "" "waiting"
Attribute "Status" "" "PrinterError: Service Call"
Attribute "Status" "" "PrinterError: Drum&Toner Cartridge is Missing"
Attribute "Status" "" "PrinterError: No Toner"
Attribute "Status" "" "PrinterError: Left Hand Cover Open"
Attribute "Status" "" "PrinterError: Cabinet Left Hand Cover Open"
Attribute "Status" "" "PrinterError: Duplex Docking Cover Open"
Attribute "Status" "" "PrinterError: Side Tray Docking Unit Open"
Attribute "Status" "" "PrinterError: Side Tray Hand Cover Open"
Attribute "Status" "" "PrinterError: Tray Lifter Failed"
Attribute "Status" "" "PrinterError: Paper Jam"
Attribute "Status" "" "PrinterError: Paper Jam at Fuser"
Attribute "Status" "" "PrinterError: Paper Jam at Registration Roller"
Attribute "Status" "" "PrinterError: Paper Jam at Duplex Module"
Attribute "Status" "" "PrinterError: Paper Jam at Duplex Tray"
Attribute "Status" "" "PrinterError: Paper Jam at Tray1"
Attribute "Status" "" "PrinterError: Paper Jam at Tray2"
Attribute "Status" "" "PrinterError: Paper Jam at Tray3"
Attribute "Status" "" "PrinterError: Paper Jam at Tray4"
Attribute "Status" "" "PrinterError: Paper Jam at Manual Feed Tray"
Attribute "Status" "" "PrinterError: Paper Jam at Side Tray"
Attribute "Status" "" "PrinterError: Center bin is Full"
Attribute "Status" "" "PrinterError: Duplex Module Fail"
Attribute "Status" "" "PrinterError: Tray is Missing"
Attribute "Status" "" "PrinterError: Any Trays are Missing"
Attribute "Status" "" "PrinterError: Out of Paper in All Trays"
Attribute "Status" "" "PrinterError: Out of Paper"
Attribute "Status" "" "PrinterError: Out of Paper in Maunal Feed Tray"
Attribute "PrinterError" "" "Service Call"
Attribute "PrinterError" "" "Drum&Toner Cartridge is Missing"
Attribute "PrinterError" "" "No Toner"
Attribute "PrinterError" "" "Left Hand Cover Open"
Attribute "PrinterError" "" "Cabinet Left Hand Cover Open"
Attribute "PrinterError" "" "Duplex Docking Cover Open"
Attribute "PrinterError" "" "Side Tray Docking Unit Open"
Attribute "PrinterError" "" "Side Tray Hand Cover Open"
Attribute "PrinterError" "" "Tray Lifter Failed"
Attribute "PrinterError" "" "Paper Jam"
Attribute "PrinterError" "" "Paper Jam at Fuser"
Attribute "PrinterError" "" "Paper Jam at Registration Roller"
Attribute "PrinterError" "" "Paper Jam at Duplex Module"
Attribute "PrinterError" "" "Paper Jam at Duplex Tray"
Attribute "PrinterError" "" "Paper Jam at Tray1"
Attribute "PrinterError" "" "Paper Jam at Tray2"
Attribute "PrinterError" "" "Paper Jam at Tray3"
Attribute "PrinterError" "" "Paper Jam at Tray4"
Attribute "PrinterError" "" "Paper Jam at Manual Feed Tray"
Attribute "PrinterError" "" "Paper Jam at Side Tray"
Attribute "PrinterError" "" "Center bin is Full"
Attribute "PrinterError" "" "Duplex Module Fail"
Attribute "PrinterError" "" "Tray is Missing"
Attribute "PrinterError" "" "Any Trays are Missing"
Attribute "PrinterError" "" "Out of Paper in All Trays"
Attribute "PrinterError" "" "Out of Paper"
Attribute "PrinterError" "" "Out of Paper in Maunal Feed Tray"
Attribute "Source" "" "Serial"
Attribute "Source" "" "Parallel"
Attribute "Source" "" "LocalTalk"
Attribute "Source" "" "EtherTalk"
Attribute "Source" "" "RemotePrinter"
Attribute "Source" "" "PrintServer"
Attribute "Source" "" "LPR"
Attribute "Source" "" "Internal"
Attribute "DefaultGuaranteedMaxSeparations" "" "1"
Attribute "GuaranteedMaxSeparations" "4" ""
Attribute "GuaranteedMaxSeparations" "3" ""
Attribute "GuaranteedMaxSeparations" "2" ""
Attribute "GuaranteedMaxSeparations" "1" ""
Attribute "?GuaranteedMaxSeparations" "" "
currentpagedevice /MaxSeparations get ="
UIConstraints "*XRPaperTrayConfiguration 4Tray *InputSlot 3rdTrayTTM"
UIConstraints "*XRPaperTrayConfiguration 4Tray *InputSlot 4thTrayTTM"
UIConstraints "*XRPaperTrayConfiguration 4Tray *XRSlipSheet 3rdTrayTTM"
UIConstraints "*XRPaperTrayConfiguration 4Tray *XRSlipSheet 4thTrayTTM"
UIConstraints "*XRPaperTrayConfiguration 4Tray *XRIntCoverSheet 3rdTrayTTM"
UIConstraints "*XRPaperTrayConfiguration 4Tray *XRIntCoverSheet 4thTrayTTM"
UIConstraints "*XRPaperTrayConfiguration 4Tray *XRIntBackCoverSheet 3rdTrayTTM"
UIConstraints "*XRPaperTrayConfiguration 4Tray *XRIntBackCoverSheet 4thTrayTTM"
UIConstraints "*XRPaperTrayConfiguration 4TrayTTM *InputSlot 3rdTray"
UIConstraints "*XRPaperTrayConfiguration 4TrayTTM *InputSlot 4thTray"
UIConstraints "*XRPaperTrayConfiguration 4TrayTTM *XRSlipSheet 3rdTray"
UIConstraints "*XRPaperTrayConfiguration 4TrayTTM *XRSlipSheet 4thTray"
UIConstraints "*XRPaperTrayConfiguration 4TrayTTM *XRIntCoverSheet 3rdTray"
UIConstraints "*XRPaperTrayConfiguration 4TrayTTM *XRIntCoverSheet 4thTray"
UIConstraints "*XRPaperTrayConfiguration 4TrayTTM *XRIntBackCoverSheet 3rdTray"
UIConstraints "*XRPaperTrayConfiguration 4TrayTTM *XRIntBackCoverSheet 4thTray"
UIConstraints "*XROutputOptions None *OutputBin FinisherTray"
UIConstraints "*XROutputOptions None *XRPunch "
UIConstraints "*XROutputOptions None *XRStaple "
UIConstraints "*XROutputOptions None *XRBookletTray True"
UIConstraints "*XROutputOptions None *XRNumPunchHoles 2Holes"
UIConstraints "*XROutputOptions None *XRNumPunchHoles 4Holes"
UIConstraints "*XROutputOptions Finisher3Holes *XRNumPunchHoles 2Holes"
UIConstraints "*XROutputOptions Finisher3Holes *XRNumPunchHoles 4Holes"
UIConstraints "*XRBookletTray False *XRStaple SaddleStaple"
UIConstraints "*XRBookletTray False *XRFold "
UIConstraints "*XRRegionalPaperSetting Mm *PageSize XR4x6"
UIConstraints "*XRRegionalPaperSetting Mm *PageSize Statement"
UIConstraints "*XRRegionalPaperSetting Mm *PageSize Executive"
UIConstraints "*XRRegionalPaperSetting Mm *PageSize 8x10"
UIConstraints "*XRRegionalPaperSetting Mm *PageSize XR846x124"
UIConstraints "*XRRegionalPaperSetting Mm *PageSize XR8-KAI"
UIConstraints "*XRRegionalPaperSetting Mm *PageSize XR16-KAI"
UIConstraints "*XRRegionalPaperSetting Kai *PageSize XRPostcard"
UIConstraints "*XRRegionalPaperSetting Kai *PageSize DoublePostcardRotated"
UIConstraints "*XRRegionalPaperSetting Kai *PageSize Statement"
UIConstraints "*XRRegionalPaperSetting Kai *PageSize Executive"
UIConstraints "*XRRegionalPaperSetting Kai *PageSize 8x10"
UIConstraints "*XRRegionalPaperSetting Kai *PageSize XR846x124"
UIConstraints "*XRRegionalPaperSetting Legal13 *PageSize B4"
UIConstraints "*XRRegionalPaperSetting Legal13 *PageSize B6"
UIConstraints "*XRRegionalPaperSetting Legal13 *PageSize XRPostcard"
UIConstraints "*XRRegionalPaperSetting Legal13 *PageSize DoublePostcardRotated"
UIConstraints "*XRRegionalPaperSetting Legal13 *PageSize XR8-KAI"
UIConstraints "*XRRegionalPaperSetting Legal13 *PageSize XR16-KAI"
UIConstraints "*XRRegionalPaperSetting Legal *PageSize B4"
UIConstraints "*XRRegionalPaperSetting Legal *PageSize B6"
UIConstraints "*XRRegionalPaperSetting Legal *PageSize XRPostcard"
UIConstraints "*XRRegionalPaperSetting Legal *PageSize DoublePostcardRotated"
UIConstraints "*XRRegionalPaperSetting Legal *PageSize XR8-KAI"
UIConstraints "*XRRegionalPaperSetting Legal *PageSize XR16-KAI"
UIConstraints "*XRRegionalPaperSetting Inch *PageSize B4"
UIConstraints "*XRRegionalPaperSetting Inch *PageSize B6"
UIConstraints "*XRRegionalPaperSetting Inch *PageSize XRPostcard"
UIConstraints "*XRRegionalPaperSetting Inch *PageSize DoublePostcardRotated"
UIConstraints "*XRRegionalPaperSetting Inch *PageSize XR8-KAI"
UIConstraints "*XRRegionalPaperSetting Inch *PageSize XR16-KAI"
UIConstraints "*PageSize B6 *InputSlot MediaTypeAPS"
UIConstraints "*PageSize B6 *InputSlot 1stTray"
UIConstraints "*PageSize B6 *InputSlot 2ndTray"
UIConstraints "*PageSize B6 *InputSlot 3rdTray"
UIConstraints "*PageSize B6 *InputSlot 4thTray"
UIConstraints "*PageSize B6 *InputSlot 3rdTrayTTM"