Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

766 lines
30 KiB

  1. *% Adobe Systems PostScript(R) Printer Description File
  2. *% For "Unity 1800PM-R"
  3. *%
  4. *% Copyright 1992, 1993, 1994 LaserMaster Corporation
  5. *% All Rights Reserved.
  6. *% Permission is granted for redistribution of this file as
  7. *% long as this copyright notice is intact and the contents
  8. *% of the file is not altered in any way from its original form.
  9. *%
  10. *%
  11. *% Date: 7 September, 1994
  12. *% Modified by Microsoft 1/22/99 a-roblow to include Languagelevel
  13. *FormatVersion: "3.0"
  14. *FileVersion: "4.3"
  15. *LanguageVersion: English
  16. *Manufacturer: "LaserMaster"
  17. *Product: "(Unity 1800PM-R)"
  18. *PSVersion: "(2002.001) 1"
  19. *NickName: "Unity 1800PM-R"
  20. *% PC Driver Flags ===============
  21. *AcceptsTrueType: True
  22. *AcceptsBinary: True
  23. *JobOptionDlg: False
  24. *% General Information and Defaults ===============
  25. *ColorDevice: False
  26. *LanguageLevel: "2"
  27. *FreeVM: "2210119"
  28. *VariablePaperSize: False
  29. *FileSystem: True
  30. *?FileSystem: "
  31. save statusdict begin
  32. (False) /diskstatus where{
  33. pop diskstatus exch pop 0 ne {pop (True)} if
  34. }if = flush
  35. end restore
  36. "
  37. *End
  38. *Throughput: "8"
  39. *Password: "0"
  40. *ExitServer: "
  41. count 0 eq { % is the password on the stack?
  42. true
  43. }{
  44. dup % potential password
  45. statusdict begin checkpassword end not
  46. } ifelse
  47. { % if no password or not valid
  48. (WARNING : Cannot perform the exitserver command.) =
  49. (Password supplied is not valid.) =
  50. (Please contact the author of this software.) = flush
  51. quit
  52. } if
  53. serverdict begin exitserver
  54. "
  55. *End
  56. *Reset: "
  57. count 0 eq { % is the password on the stack?
  58. true
  59. }{
  60. dup % potential password
  61. statusdict begin checkpassword end not
  62. } ifelse
  63. { % if no password or not valid
  64. (WARNING : Cannot reset printer.) =
  65. (Password supplied is not valid.) =
  66. (Please contact the author of this software.) = flush
  67. quit
  68. } if
  69. serverdict begin exitserver
  70. systemdict /quit get exec
  71. (WARNING : Printer Reset Failed.) = flush
  72. "
  73. *End
  74. *DefaultResolution: 1800dpi
  75. *SetResolution 600dpi: "statusdict begin true proofmode end"
  76. *SetResolution 1800dpi: "statusdict begin false proofmode end"
  77. *?Resolution: "
  78. save
  79. initgraphics
  80. 0 0 moveto currentpoint matrix defaultmatrix transform
  81. 0 72 lineto currentpoint matrix defaultmatrix transform
  82. 3 -1 roll sub dup mul
  83. 3 1 roll exch sub dup mul
  84. add sqrt round cvi
  85. ( ) cvs print (dpi) = flush
  86. restore
  87. "
  88. *End
  89. *% Halftone Information ===============
  90. *ScreenFreq: "85.0"
  91. *ScreenAngle: "45.0"
  92. *DefaultScreenProc: Dot
  93. *ScreenProc Dot: "
  94. { abs exch abs 2 copy add 1 gt
  95. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  96. { dup mul exch dup mul add 1.0 exch sub }
  97. ifelse }
  98. "
  99. *End
  100. *ScreenProc Line: "{ pop }"
  101. *ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
  102. *DefaultTransfer: Null
  103. *Transfer Null: "{ }"
  104. *Transfer Null.Inverse: "{ 1 exch sub }"
  105. *% Paper Handling ===================
  106. *% Use these entries to set paper size most of the time, unless there is
  107. *% specific reason to use PageRegion or PaperTray.
  108. *DefaultPageSize: Letter
  109. *PageSize A3: "a3"
  110. *PageSize A3.Extra: "a3_extra"
  111. *PageSize A4: "a4"
  112. *PageSize A4Small: "a4small"
  113. *PageSize A4.Transverse: "a4.transverse"
  114. *PageSize B5: "b5"
  115. *PageSize Letter: "letter"
  116. *PageSize LetterSmall: "lettersmall"
  117. *PageSize Letter.Transverse: "letter.transverse"
  118. *PageSize Legal: "legal"
  119. *PageSize Tabloid: "11x17"
  120. *PageSize TabloidExtra: "tabloid_extra"
  121. *PageSize Oversize: "LMoversize"
  122. *PageSize OversizePlus: "LMoversize"
  123. *PageSize Envelope.297.684/C10 Envelope: "com10envelope"
  124. *PageSize Envelope.312.624/DL Envelope: "dlenvelope"
  125. *?PageSize: "
  126. save statusdict begin
  127. /papersize where{ pop
  128. 12 dict begin
  129. /a3 (A3) def
  130. /a3_extra (A3.Extra) def
  131. /a4 (A4) def
  132. /a4small (A4Small) def
  133. /a4.transverse (A4.Transverse) def
  134. /letter (Letter) def
  135. /lettersmall (LetterSmall) def
  136. /letter.transverse (Letter.Transverse) def
  137. /legal (Legal) def
  138. /11x17 (Tabloid) def
  139. /LMoversize (Oversize) def
  140. /tabloid_extra (TabloidExtra) def
  141. /com10envelope (Envelope.297.684/C10 Envelope) def
  142. /dlenvelope (Envelope.312.624/DL Envelope) def
  143. papersize {
  144. {load exec} stopped not{= flush}if
  145. }{
  146. {load exec} stopped not{print (.Transverse) = flush}if
  147. }ifelse
  148. end
  149. }{
  150. /pagetype where{pop[(Letter)(Legal)]pagetype dup 1 gt{pop 1}if get = flush}if
  151. }ifelse
  152. end restore
  153. "
  154. *End
  155. *% These entries will set up the frame buffer. Usually used with manual feed.
  156. *DefaultPageRegion: Letter
  157. *PageRegion A3: "a3"
  158. *PageRegion A3.Extra: "a3_extra"
  159. *PageRegion A4: "a4"
  160. *PageRegion A4Small: "a4small"
  161. *PageRegion A4.Transverse: "a4.transverse"
  162. *PageRegion B5: "b5"
  163. *PageRegion Letter: "letter"
  164. *PageRegion LetterSmall: "lettersmall"
  165. *PageRegion Letter.Transverse: "letter.transverse"
  166. *PageRegion Legal: "legal"
  167. *PageRegion Tabloid: "11x17"
  168. *PageRegion TabloidExtra: "tabloid_extra"
  169. *PageRegion Oversize: "LMoversize"
  170. *PageRegion OversizePlus: "LMoversize"
  171. *PageRegion Envelope.297.684/C10 Envelope: "com10envelope"
  172. *PageRegion Envelope.312.624/DL Envelope: "dlenvelope"
  173. *% These entries will invoke a particular tray--error may occur if tray is not inserted.
  174. *% These errors should be trapped by software and a message displayed
  175. *DefaultPaperTray: None
  176. *PaperTray A3: ""
  177. *PaperTray A3.Extra: ""
  178. *PaperTray A4: ""
  179. *PaperTray A4.Transverse: ""
  180. *PaperTray B5: ""
  181. *PaperTray Letter: ""
  182. *PaperTray Letter.Transverse: ""
  183. *PaperTray Legal: ""
  184. *PaperTray Tabloid: ""
  185. *PaperTray TabloidExtra: ""
  186. *PaperTray Oversize: ""
  187. *PaperTray Envelope.297.684/C10 Envelope: ""
  188. *PaperTray Envelope.312.624/DL Envelope: ""
  189. *% The following entries provide information about specific paper keywords.
  190. *DefaultImageableArea: Letter
  191. *ImageableArea A3: "18 20 824 1171 "
  192. *ImageableArea A3.Extra: "0 0 856 1211 "
  193. *ImageableArea A4: "15 10 580 832 "
  194. *ImageableArea A4Small: "26 31 569 811 "
  195. *ImageableArea A4.Transverse: "10 15 832 580 "
  196. *ImageableArea B5: "21 10 500 715 "
  197. *ImageableArea Letter: "15 8 597 784 "
  198. *ImageableArea LetterSmall: "30 31 582 761 "
  199. *ImageableArea Letter.Transverse: "8 15 784 597"
  200. *ImageableArea Legal: "15 8 597 1000 "
  201. *ImageableArea Tabloid: "15 8 777 1216 "
  202. *ImageableArea TabloidExtra: "0 0 812 1244 "
  203. *ImageableArea Oversize: "0 0 839 1368 "
  204. *ImageableArea OversizePlus: "5 0 859 1368 "
  205. *ImageableArea Envelope.297.684/C10 Envelope: "11 14 287 670"
  206. *ImageableArea Envelope.312.624/DL Envelope: "4 4 308 620"
  207. *% These provide the physical dimensions of the paper (by keyword)
  208. *DefaultPaperDimension: Letter
  209. *PaperDimension A3: "842 1191"
  210. *PaperDimension A3.Extra: "856 1211"
  211. *PaperDimension A4: "596 842"
  212. *PaperDimension A4Small: "596 842"
  213. *PaperDimension A4.Transverse: "842 596"
  214. *PaperDimension B5: "516 729"
  215. *PaperDimension Letter: "612 792"
  216. *PaperDimension LetterSmall: "612 792"
  217. *PaperDimension Letter.Transverse: "792 612"
  218. *PaperDimension Legal: "612 1008"
  219. *PaperDimension Tabloid: "792 1224"
  220. *PaperDimension TabloidExtra: "812 1244"
  221. *PaperDimension Oversize: "852 1368"
  222. *PaperDimension OversizePlus: "864 1368"
  223. *PaperDimension Envelope.297.684/C10 Envelope: "297 684"
  224. *PaperDimension Envelope.312.624/DL Envelope: "312 624"
  225. *DefaultOutputBin: OnlyOne
  226. *DefaultInputSlot: AutoSelect
  227. *InputSlot AutoSelect: "statusdict begin -2 lmsetdefaulttray end"
  228. *InputSlot Upper: "statusdict begin 1 lmsetdefaulttray end"
  229. *InputSlot Lower: "statusdict begin 2 lmsetdefaulttray end"
  230. *InputSlot EnvelopeManual: "statusdict begin 3 lmsetdefaulttray end"
  231. *DefaultManualFeed: False
  232. *?ManualFeed: "
  233. save
  234. statusdict /manualfeed get
  235. {(True)}{(False)}ifelse = flush
  236. restore
  237. "
  238. *End
  239. *ManualFeed True: "statusdict begin /manualfeed true store end"
  240. *ManualFeed False: "statusdict begin /manualfeed false store end"
  241. *DefaultOutputOrder: Normal
  242. *DefaultCollator: None
  243. *DefaultSorter: None
  244. *DefaultDuplex: None
  245. *% Font Information =====================
  246. *DefaultFont: Courier
  247. *Font Antiqua-Medium-DTC: Standard "(001.003)"
  248. *Font Antiqua-MediumItalic-DTC: Standard "(001.003)"
  249. *Font Antiqua-Regular-DTC: Standard "(001.003)"
  250. *Font Antiqua-RegularItalic-DTC: Standard "(001.003)"
  251. *Font Antiqua-Ultra-DTC: Standard "(001.003)"
  252. *Font Antiqua-UltraItalic-DTC: Standard "(001.003)"
  253. *Font AvantGarde-Book: Standard "(001.003)"
  254. *Font AvantGarde-BookOblique: Standard "(001.003)"
  255. *Font AvantGarde-Demi: Standard "(001.003)"
  256. *Font AvantGarde-DemiOblique: Standard "(001.003)"
  257. *Font Blippo-Black-DTC: Standard "(001.003)"
  258. *Font Bookman-Demi: Standard "(001.003)"
  259. *Font Bookman-DemiItalic: Standard "(001.003)"
  260. *Font Bookman-Light: Standard "(001.003)"
  261. *Font Bookman-LightItalic: Standard "(001.003)"
  262. *Font Britannic-Bold-DTC: Standard "(001.003)"
  263. *Font Britannic-Light-DTC: Standard "(001.003)"
  264. *Font Britannic-Medium-DTC: Standard "(001.003)"
  265. *Font Broadway-DTC: Standard "(001.003)"
  266. *Font Brody-DTC: Standard "(001.003)"
  267. *Font BrushScript-DTC: Standard "(001.003)"
  268. *Font Chaucer-DTC: Standard "(001.003)"
  269. *Font Clarendon-Bold-DTC: Standard "(001.003)"
  270. *Font Clarendon-Light-DTC: Standard "(001.003)"
  271. *Font Clearface-Black-DTC: Standard "(001.003)"
  272. *Font Clearface-BlackItalic-DTC: Standard "(001.003)"
  273. *Font Clearface-Heavy-DTC: Standard "(001.003)"
  274. *Font Clearface-HeavyItalic-DTC: Standard "(001.003)"
  275. *Font Clearface-Regular-DTC: Standard "(001.003)"
  276. *Font Clearface-RegularItalic-DTC: Standard "(001.003)"
  277. *Font ClearfaceGothic-Bold-DTC: Standard "(001.003)"
  278. *Font ClearfaceGothic-ExtraBold-DTC: Standard "(001.003)"
  279. *Font ClearfaceGothic-Regular-DTC: Standard "(001.003)"
  280. *Font Cooper-Black-DTC: Standard "(001.003)"
  281. *Font Cooper-BlackItalic-DTC: Standard "(001.003)"
  282. *Font Copperplate-Bold-DTC: Standard "(001.003)"
  283. *Font Courier: Standard "(001.003)"
  284. *Font Courier-Bold: Standard "(001.003)"
  285. *Font Courier-BoldOblique: Standard "(001.003)"
  286. *Font Courier-Oblique: Standard "(001.003)"
  287. *Font Eurostile-Black-DTC: Standard "(001.003)"
  288. *Font Eurostile-Roman-DTC: Standard "(001.003)"
  289. *Font EurostileExtended-Black-DTC: Standard "(001.003)"
  290. *Font EurostileExtended-Roman-DTC: Standard "(001.003)"
  291. *Font FlareGothic-Bold-DTC: Standard "(001.003)"
  292. *Font FlareGothic-BoldItalic-DTC: Standard "(001.003)"
  293. *Font FlareGothic-Light-DTC: Standard "(001.003)"
  294. *Font FlareGothic-LightItalic-DTC: Standard "(001.003)"
  295. *Font FlareGothic-Regular-DTC: Standard "(001.003)"
  296. *Font FlareGothic-RegularItalic-DTC: Standard "(001.003)"
  297. *Font FrugalSans-Bold-DTC: Standard "(001.003)"
  298. *Font FrugalSans-BoldItalic-DTC: Standard "(001.003)"
  299. *Font FrugalSans-Light-DTC: Standard "(001.003)"
  300. *Font FrugalSans-LightItalic-DTC: Standard "(001.003)"
  301. *Font Garamond-Bold-DTC: Standard "(001.003)"
  302. *Font Garamond-BoldItalic-DTC: Standard "(001.003)"
  303. *Font Garamond-Book-DTC: Standard "(001.003)"
  304. *Font Garamond-BookItalic-DTC: Standard "(001.003)"
  305. *Font GaramondCondensed-Bold-DTC: Standard "(001.003)"
  306. *Font GaramondCondensed-BoldItalic-DTC: Standard "(001.003)"
  307. *Font GaramondCondensed-Book-DTC: Standard "(001.003)"
  308. *Font GaramondCondensed-BookItalic-DTC: Standard "(001.003)"
  309. *Font Goudy-Bold-DTC: Standard "(001.003)"
  310. *Font Goudy-Heavyface-DTC: Standard "(001.003)"
  311. *Font Goudy-Light-DTC: Standard "(001.003)"
  312. *Font GoudyCatalogue-Italic-DTC: Standard "(001.003)"
  313. *Font GoudyOldStyle-Regular-DTC: Standard "(001.003)"
  314. *Font GoudyOldStyle-RegularItalic-DTC: Standard "(001.003)"
  315. *Font Helvetica: Standard "(001.003)"
  316. *Font Helvetica-Bold: Standard "(001.003)"
  317. *Font Helvetica-BoldOblique: Standard "(001.003)"
  318. *Font Helvetica-Narrow: Standard "(001.003)"
  319. *Font Helvetica-Narrow-Bold: Standard "(001.003)"
  320. *Font Helvetica-Narrow-BoldOblique: Standard "(001.003)"
  321. *Font Helvetica-Narrow-Oblique: Standard "(001.003)"
  322. *Font Helvetica-Oblique: Standard "(001.003)"
  323. *Font Hobo-DTC: Standard "(001.003)"
  324. *Font Kauflinn-DTC: Standard "(001.003)"
  325. *Font Korinna-ExtraBold-DTC: Standard "(001.003)"
  326. *Font Korinna-ExtraBoldItalic-DTC: Standard "(001.003)"
  327. *Font Korinna-Regular-DTC: Standard "(001.003)"
  328. *Font Korinna-RegularItalic-DTC: Standard "(001.003)"
  329. *Font Mariage-DTC: Standard "(001.003)"
  330. *Font MuralScript-DTC: Standard "(001.003)"
  331. *Font NewBaskerville-Bold-DTC: Standard "(001.003)"
  332. *Font NewBaskerville-BoldItalic-DTC: Standard "(001.003)"
  333. *Font NewBaskerville-Roman-DTC: Standard "(001.003)"
  334. *Font NewBaskerville-RomanItalic-DTC: Standard "(001.003)"
  335. *Font NewCenturySchlbk-Bold: Standard "(001.004)"
  336. *Font NewCenturySchlbk-BoldItalic: Standard "(001.003)"
  337. *Font NewCenturySchlbk-Italic: Standard "(001.003)"
  338. *Font NewCenturySchlbk-Roman: Standard "(001.003)"
  339. *Font OldTowne-DTC: Standard "(001.003)"
  340. *Font Optimum-Bold-DTC: Standard "(001.003)"
  341. *Font Optimum-BoldItalic-DTC: Standard "(001.003)"
  342. *Font Optimum-Roman-DTC: Standard "(001.003)"
  343. *Font Optimum-RomanItalic-DTC: Standard "(001.003)"
  344. *Font Palatino-Bold: Standard "(001.003)"
  345. *Font Palatino-BoldItalic: Standard "(001.003)"
  346. *Font Palatino-Italic: Standard "(001.003)"
  347. *Font Palatino-Roman: Standard "(001.003)"
  348. *Font Palton-Light-DTC: Standard "(001.003)"
  349. *Font ParkAvenue-DTC: Standard "(001.003)"
  350. *Font SansBlackCondensed-DTC: Standard "(001.003)"
  351. *Font SansBlackCondensed-Oblique-DTC: Standard "(001.003)"
  352. *Font SansExtended-Medium-DTC: Standard "(001.003)"
  353. *Font SansExtended-Regular-DTC: Standard "(001.003)"
  354. *Font SansExtended-RegularOblique-DTC: Standard "(001.003)"
  355. *Font SansExtraBlackCondensed-DTC: Standard "(001.003)"
  356. *Font SansLightExtended-DTC: Standard "(001.003)"
  357. *Font SansThinCondensed-DTC: Standard "(001.003)"
  358. *Font SansThinCondensed-Oblique-DTC: Standard "(001.003)"
  359. *Font Serpentine-Bold-DTC: Standard "(001.003)"
  360. *Font Souvenir-Demi-DTC: Standard "(001.003)"
  361. *Font Souvenir-DemiItalic-DTC: Standard "(001.003)"
  362. *Font Souvenir-Light-DTC: Standard "(001.003)"
  363. *Font Souvenir-LightItalic-DTC: Standard "(001.003)"
  364. *Font SquareSerif-Black-DTC: Standard "(001.003)"
  365. *Font SquareSerif-BlackItalic-DTC: Standard "(001.003)"
  366. *Font SquareSerif-Bold-DTC: Standard "(001.003)"
  367. *Font SquareSerif-BoldItalic-DTC: Standard "(001.003)"
  368. *Font SquareSerif-Light-DTC: Standard "(001.003)"
  369. *Font SquareSerif-LightItalic-DTC: Standard "(001.003)"
  370. *Font Symbol: Special "(001.003)"
  371. *Font Times-Bold: Standard "(001.003)"
  372. *Font Times-BoldItalic: Standard "(001.003)"
  373. *Font Times-Italic: Standard "(001.003)"
  374. *Font Times-Roman: Standard "(001.003)"
  375. *Font UniversityRoman-Bold-DTC: Standard "(001.003)"
  376. *Font UniversityRoman-DTC: Standard "(001.003)"
  377. *Font Vivante-DTC: Standard "(001.003)"
  378. *Font Windsor-Bold-DTC: Standard "(001.003)"
  379. *Font Windsor-DTC: Standard "(001.003)"
  380. *Font ZapfChancery-MediumItalic: Standard "(001.003)"
  381. *Font ZapfDingbats: Standard "(001.003)"
  382. *?FontQuery: "
  383. save 4 dict begin /sv exch def
  384. /str (fonts/ ) def
  385. /st2 128 string def
  386. {
  387. count 0 gt {
  388. dup st2 cvs (/) print print (:) print
  389. dup FontDirectory exch known {pop (Yes)}{
  390. str exch st2 cvs dup length /len exch def
  391. 6 exch putinterval str 0 len 6 add getinterval mark exch
  392. { } st2 filenameforall counttomark 0 gt {
  393. cleartomark (Yes)}{cleartomark (No)}ifelse
  394. }ifelse = flush
  395. }{ exit } ifelse
  396. } bind loop
  397. (*) = flush
  398. sv end restore
  399. "
  400. *End
  401. *?FontList: "
  402. save 2 dict begin /sv exch def
  403. /str 128 string def
  404. FontDirectory { pop == } bind forall flush
  405. /filenameforall where {
  406. pop save (fonts/*) {
  407. dup length 6 sub 6 exch getinterval cvn ==
  408. } bind str filenameforall flush restore
  409. } if
  410. (*) = flush
  411. sv end restore
  412. "
  413. *End
  414. *% Printer Messages (verbatim from printer):
  415. *Message: "%%[ exitserver: permanent state may be changed ]%%"
  416. *Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
  417. *Message: "\FontName\ not found, using Courier"
  418. *% Status (format: %%[ status: <one of these> ]%% )
  419. *Status: "idle"
  420. *Status: "busy"
  421. *Status: "waiting"
  422. *Status: "printing"
  423. *Status: "warming up"
  424. *Status: "PrinterError: timeout, clearing printer"
  425. *Status: "PrinterError: warming up"
  426. *Status: "PrinterError: service call"
  427. *Status: "PrinterError: paper entry misfeed"
  428. *Status: "PrinterError: no toner cartridge"
  429. *Status: "PrinterError: paper entry misfeed"
  430. *% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
  431. *Source: "serial"
  432. *Source: "parallel"
  433. *Source: "EtherTalk"
  434. *Source: "LocalTalk"
  435. *% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
  436. *PrinterError: "timeout, clearing printer"
  437. *PrinterError: "warming up"
  438. *PrinterError: "service call"
  439. *PrinterError: "paper entry misfeed"
  440. *PrinterError: "no toner cartridge"
  441. *PrinterError: "paper entry misfeed"
  442. *DeviceAdjustMatrix: "[1 0 0 1 0 0]"
  443. *% Color Separation Information =====================
  444. *DefaultColorSep: ProcessBlack.85lpi.1800x1800dpi/85 lpi / 1800 dpi
  445. *InkName: ProcessBlack/Process Black
  446. *InkName: CustomColor/Custom Color
  447. *InkName: ProcessCyan/Process Cyan
  448. *InkName: ProcessMagenta/Process Magenta
  449. *InkName: ProcessYellow/Process Yellow
  450. *% For 133 lpi / 1800 dpi =====================================================
  451. *ColorSepScreenAngle ProcessBlack.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "45"
  452. *ColorSepScreenAngle CustomColor.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "45"
  453. *ColorSepScreenAngle ProcessCyan.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "108.4"
  454. *ColorSepScreenAngle ProcessMagenta.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "161.6"
  455. *ColorSepScreenAngle ProcessYellow.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "90"
  456. *ColorSepScreenFreq ProcessBlack.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "141.4"
  457. *ColorSepScreenFreq CustomColor.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "141.4"
  458. *ColorSepScreenFreq ProcessCyan.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "133.3"
  459. *ColorSepScreenFreq ProcessMagenta.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "133.3"
  460. *ColorSepScreenFreq ProcessYellow.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "150"
  461. *% For 110 lpi / 1800 dpi =====================================================
  462. *ColorSepScreenAngle ProcessBlack.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "45"
  463. *ColorSepScreenAngle CustomColor.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "45"
  464. *ColorSepScreenAngle ProcessCyan.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "108.4"
  465. *ColorSepScreenAngle ProcessMagenta.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "161.6"
  466. *ColorSepScreenAngle ProcessYellow.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "90"
  467. *ColorSepScreenFreq ProcessBlack.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "121.2"
  468. *ColorSepScreenFreq CustomColor.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "121.2"
  469. *ColorSepScreenFreq ProcessCyan.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "110"
  470. *ColorSepScreenFreq ProcessMagenta.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "110"
  471. *ColorSepScreenFreq ProcessYellow.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "119"
  472. *% For 100 lpi / 1800 dpi =====================================================
  473. *ColorSepScreenAngle ProcessBlack.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "45"
  474. *ColorSepScreenAngle CustomColor.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "45"
  475. *ColorSepScreenAngle ProcessCyan.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "108.4"
  476. *ColorSepScreenAngle ProcessMagenta.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "161.6"
  477. *ColorSepScreenAngle ProcessYellow.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "90"
  478. *ColorSepScreenFreq ProcessBlack.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "106.1"
  479. *ColorSepScreenFreq CustomColor.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "106.1"
  480. *ColorSepScreenFreq ProcessCyan.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "94.9"
  481. *ColorSepScreenFreq ProcessMagenta.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "94.9"
  482. *ColorSepScreenFreq ProcessYellow.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "100"
  483. *% For 85 lpi / 1800 dpi =====================================================
  484. *ColorSepScreenAngle ProcessBlack.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "45"
  485. *ColorSepScreenAngle CustomColor.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "45"
  486. *ColorSepScreenAngle ProcessCyan.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "108.4"
  487. *ColorSepScreenAngle ProcessMagenta.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "161.6"
  488. *ColorSepScreenAngle ProcessYellow.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "90"
  489. *ColorSepScreenFreq ProcessBlack.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "84.9"
  490. *ColorSepScreenFreq CustomColor.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "84.9"
  491. *ColorSepScreenFreq ProcessCyan.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "80"
  492. *ColorSepScreenFreq ProcessMagenta.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "80"
  493. *ColorSepScreenFreq ProcessYellow.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "85"
  494. *% For 70 lpi / 1800 dpi =====================================================
  495. *ColorSepScreenAngle ProcessBlack.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "45"
  496. *ColorSepScreenAngle CustomColor.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "45"
  497. *ColorSepScreenAngle ProcessCyan.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "108.4"
  498. *ColorSepScreenAngle ProcessMagenta.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "161.6"
  499. *ColorSepScreenAngle ProcessYellow.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "90"
  500. *ColorSepScreenFreq ProcessBlack.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "70.7"
  501. *ColorSepScreenFreq CustomColor.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "70.7"
  502. *ColorSepScreenFreq ProcessCyan.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "63.2"
  503. *ColorSepScreenFreq ProcessMagenta.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "63.2"
  504. *ColorSepScreenFreq ProcessYellow.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "66.7"
  505. *% For 60 lpi / 1800 dpi =====================================================
  506. *ColorSepScreenAngle ProcessBlack.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "45"
  507. *ColorSepScreenAngle CustomColor.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "45"
  508. *ColorSepScreenAngle ProcessCyan.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "108.4"
  509. *ColorSepScreenAngle ProcessMagenta.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "161.6"
  510. *ColorSepScreenAngle ProcessYellow.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "90"
  511. *ColorSepScreenFreq ProcessBlack.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "60.6"
  512. *ColorSepScreenFreq CustomColor.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "60.6"
  513. *ColorSepScreenFreq ProcessCyan.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "54.2"
  514. *ColorSepScreenFreq ProcessMagenta.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "54.2"
  515. *ColorSepScreenFreq ProcessYellow.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "57.1"
  516. *ColorSepScreenProc ProcessBlack.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "
  517. { abs exch abs 2 copy add 1 gt
  518. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  519. { dup mul exch dup mul add 1.0 exch sub }
  520. ifelse }
  521. "
  522. *End
  523. *ColorSepScreenProc CustomColor.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "
  524. { abs exch abs 2 copy add 1 gt
  525. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  526. { dup mul exch dup mul add 1.0 exch sub }
  527. ifelse }
  528. "
  529. *End
  530. *ColorSepScreenProc ProcessCyan.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "
  531. { abs exch abs 2 copy add 1 gt
  532. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  533. { dup mul exch dup mul add 1.0 exch sub }
  534. ifelse }
  535. "
  536. *End
  537. *ColorSepScreenProc ProcessMagenta.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "
  538. { abs exch abs 2 copy add 1 gt
  539. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  540. { dup mul exch dup mul add 1.0 exch sub }
  541. ifelse }
  542. "
  543. *End
  544. *ColorSepScreenProc ProcessYellow.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "
  545. { abs exch abs 2 copy add 1 gt
  546. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  547. { dup mul exch dup mul add 1.0 exch sub }
  548. ifelse }
  549. "
  550. *End
  551. *% For 50 lpi / 1800 dpi =====================================================
  552. *ColorSepScreenAngle ProcessBlack.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "45"
  553. *ColorSepScreenAngle CustomColor.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "45"
  554. *ColorSepScreenAngle ProcessCyan.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "108.4"
  555. *ColorSepScreenAngle ProcessMagenta.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "161.6"
  556. *ColorSepScreenAngle ProcessYellow.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "90"
  557. *ColorSepScreenFreq ProcessBlack.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "53"
  558. *ColorSepScreenFreq CustomColor.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "53"
  559. *ColorSepScreenFreq ProcessCyan.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "47.4"
  560. *ColorSepScreenFreq ProcessMagenta.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "47.4"
  561. *ColorSepScreenFreq ProcessYellow.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "50"
  562. *ColorSepScreenProc ProcessBlack.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "
  563. { abs exch abs 2 copy add 1 gt
  564. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  565. { dup mul exch dup mul add 1.0 exch sub }
  566. ifelse }
  567. "
  568. *End
  569. *ColorSepScreenProc CustomColor.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "
  570. { abs exch abs 2 copy add 1 gt
  571. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  572. { dup mul exch dup mul add 1.0 exch sub }
  573. ifelse }
  574. "
  575. *End
  576. *ColorSepScreenProc ProcessCyan.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "
  577. { abs exch abs 2 copy add 1 gt
  578. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  579. { dup mul exch dup mul add 1.0 exch sub }
  580. ifelse }
  581. "
  582. *End
  583. *ColorSepScreenProc ProcessMagenta.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "
  584. { abs exch abs 2 copy add 1 gt
  585. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  586. { dup mul exch dup mul add 1.0 exch sub }
  587. ifelse }
  588. "
  589. *End
  590. *ColorSepScreenProc ProcessYellow.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "
  591. { abs exch abs 2 copy add 1 gt
  592. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  593. { dup mul exch dup mul add 1.0 exch sub }
  594. ifelse }
  595. "
  596. *End
  597. *% For 40 lpi / 1800 dpi =====================================================
  598. *ColorSepScreenAngle ProcessBlack.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "45"
  599. *ColorSepScreenAngle CustomColor.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "45"
  600. *ColorSepScreenAngle ProcessCyan.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "108.4"
  601. *ColorSepScreenAngle ProcessMagenta.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "161.6"
  602. *ColorSepScreenAngle ProcessYellow.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "90"
  603. *ColorSepScreenFreq ProcessBlack.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "42.4"
  604. *ColorSepScreenFreq CustomColor.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "42.4"
  605. *ColorSepScreenFreq ProcessCyan.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "37.9"
  606. *ColorSepScreenFreq ProcessMagenta.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "37.9"
  607. *ColorSepScreenFreq ProcessYellow.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "40"
  608. *ColorSepScreenProc ProcessBlack.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "
  609. { abs exch abs 2 copy add 1 gt
  610. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  611. { dup mul exch dup mul add 1.0 exch sub }
  612. ifelse }
  613. "
  614. *End
  615. *ColorSepScreenProc CustomColor.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "
  616. { abs exch abs 2 copy add 1 gt
  617. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  618. { dup mul exch dup mul add 1.0 exch sub }
  619. ifelse }
  620. "
  621. *End
  622. *ColorSepScreenProc ProcessCyan.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "
  623. { abs exch abs 2 copy add 1 gt
  624. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  625. { dup mul exch dup mul add 1.0 exch sub }
  626. ifelse }
  627. "
  628. *End
  629. *ColorSepScreenProc ProcessMagenta.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "
  630. { abs exch abs 2 copy add 1 gt
  631. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  632. { dup mul exch dup mul add 1.0 exch sub }
  633. ifelse }
  634. "
  635. *End
  636. *ColorSepScreenProc ProcessYellow.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "
  637. { abs exch abs 2 copy add 1 gt
  638. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  639. { dup mul exch dup mul add 1.0 exch sub }
  640. ifelse }
  641. "
  642. *End
  643. *% For 30 lpi / 1800 dpi =====================================================
  644. *ColorSepScreenAngle ProcessBlack.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "45"
  645. *ColorSepScreenAngle CustomColor.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "45"
  646. *ColorSepScreenAngle ProcessCyan.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "108.4"
  647. *ColorSepScreenAngle ProcessMagenta.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "161.6"
  648. *ColorSepScreenAngle ProcessYellow.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "90"
  649. *ColorSepScreenFreq ProcessBlack.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "35.4"
  650. *ColorSepScreenFreq CustomColor.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "35.4"
  651. *ColorSepScreenFreq ProcessCyan.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "31.6"
  652. *ColorSepScreenFreq ProcessMagenta.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "31.6"
  653. *ColorSepScreenFreq ProcessYellow.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "33.3"
  654. *ColorSepScreenProc ProcessBlack.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "
  655. { abs exch abs 2 copy add 1 gt
  656. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  657. { dup mul exch dup mul add 1.0 exch sub }
  658. ifelse }
  659. "
  660. *End
  661. *ColorSepScreenProc CustomColor.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "
  662. { abs exch abs 2 copy add 1 gt
  663. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  664. { dup mul exch dup mul add 1.0 exch sub }
  665. ifelse }
  666. "
  667. *End
  668. *ColorSepScreenProc ProcessCyan.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "
  669. { abs exch abs 2 copy add 1 gt
  670. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  671. { dup mul exch dup mul add 1.0 exch sub }
  672. ifelse }
  673. "
  674. *End
  675. *ColorSepScreenProc ProcessMagenta.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "
  676. { abs exch abs 2 copy add 1 gt
  677. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  678. { dup mul exch dup mul add 1.0 exch sub }
  679. ifelse }
  680. "
  681. *End
  682. *ColorSepScreenProc ProcessYellow.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "
  683. { abs exch abs 2 copy add 1 gt
  684. { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  685. { dup mul exch dup mul add 1.0 exch sub }
  686. ifelse }
  687. "
  688. *End
  689. *% For 70 lpi / 600 dpi =====================================================
  690. *ColorSepScreenAngle ProcessBlack.70lpi.600x600dpi/70 lpi / 600 dpi: "45"
  691. *ColorSepScreenAngle CustomColor.70lpi.600x600dpi/70 lpi / 600 dpi: "45"
  692. *ColorSepScreenAngle ProcessCyan.70lpi.600x600dpi/70 lpi / 600 dpi: "108.4"
  693. *ColorSepScreenAngle ProcessMagenta.70lpi.600x600dpi/70 lpi / 600 dpi: "161.6"
  694. *ColorSepScreenAngle ProcessYellow.70lpi.600x600dpi/70 lpi / 600 dpi: "90"
  695. *ColorSepScreenFreq ProcessBlack.70lpi.600x600dpi/70 lpi / 600 dpi: "70.7"
  696. *ColorSepScreenFreq CustomColor.70lpi.600x600dpi/70 lpi / 600 dpi: "70.7"
  697. *ColorSepScreenFreq ProcessCyan.70lpi.600x600dpi/70 lpi / 600 dpi: "63.2"
  698. *ColorSepScreenFreq ProcessMagenta.70lpi.600x600dpi/70 lpi / 600 dpi: "63.2"
  699. *ColorSepScreenFreq ProcessYellow.70lpi.600x600dpi/70 lpi / 600 dpi: "66.7"
  700. *% end of PPD file for Unity 1800PM-R