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.

407 lines
14 KiB

  1. *PPD-Adobe: "4.0"
  2. *% Adobe Systems PostScript(R) Printer Description File
  3. *% Copyright 1987-1993 Adobe Systems Incorporated.
  4. *% All Rights Reserved.
  5. *% Permission is granted for redistribution of this file as
  6. *% long as this copyright notice is intact and the contents
  7. *% of the file is not altered in any way from its original form.
  8. *% End of Copyright statement
  9. *%Copyright 1994 Digital Equipment Corporation.
  10. *FormatVersion: "4.0"
  11. *FileVersion: "1.3"
  12. *PCFileName: "DCLN82R1.PPD"
  13. *LanguageVersion: English
  14. *Product: "(Luna0.3PS)"
  15. *PSVersion: "(51.2) 0"
  16. *ModelName: "Digital LN82R-AJ"
  17. *NickName: "Digital LN82R-AJ v51.2"
  18. *% General Information and Defaults ===============
  19. *FreeVM: "3315854"
  20. *LanguageLevel: "1"
  21. *Extensions: FileSystem Composite
  22. *ColorDevice: False
  23. *Protocols: BCP
  24. *DefaultColorSpace: Gray
  25. *VariablePaperSize: False
  26. *FileSystem: True
  27. *?FileSystem: "
  28. save
  29. statusdict /diskonline get exec {(True)}{(False)} ifelse = flush
  30. restore
  31. "
  32. *End
  33. *Throughput: "8"
  34. *Password: "0"
  35. *ExitServer: "
  36. count 0 eq { % is the password on the stack?
  37. true
  38. }{
  39. dup% potential password
  40. statusdict /checkpassword get exec not
  41. } ifelse
  42. { % if no password or not valid
  43. (WARNING : Cannot perform the exitserver command.) =
  44. (Password supplied is not valid.) =
  45. (Please contact the author of this software.) = flush
  46. quit
  47. } if
  48. serverdict /exitserver get exec
  49. "
  50. *End
  51. *Reset: "
  52. count 0 eq { % is the password on the stack?
  53. true
  54. }{
  55. dup% potential password
  56. statusdict /checkpassword get exec not
  57. } ifelse
  58. { % if no password or not valid
  59. (WARNING : Cannot reset printer.) =
  60. (Password supplied is not valid.) =
  61. (Please contact the author of this software.) = flush
  62. quit
  63. } if
  64. serverdict /exitserver get exec
  65. systemdict /quit get exec
  66. (WARNING : Printer Reset Failed.) = flush
  67. "
  68. *End
  69. *DefaultResolution: 400dpi
  70. *?Resolution: "
  71. save
  72. initgraphics
  73. matrix defaultmatrix dup
  74. 0 get dup mul exch 1 get dup mul add sqrt
  75. 72 mul round cvi
  76. ( ) cvs print (dpi) = flush
  77. restore
  78. "
  79. *End
  80. *% Halftone Information ===============
  81. *ScreenFreq: "60.0"
  82. *ScreenAngle: "45.0"
  83. *DefaultScreenProc: Dot
  84. *ScreenProc Dot: "
  85. {abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1
  86. sub }{dup mul exch dup mul add 1 exch sub }ifelse }
  87. "
  88. *End
  89. *ScreenProc Line: "{ pop }"
  90. *ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
  91. *DefaultTransfer: Null
  92. *Transfer Null: "{ }"
  93. *Transfer Null.Inverse: "{ 1 exch sub }"
  94. *% Paper Handling ===================
  95. *% Use these entries to set paper size most of the time, unless there is
  96. *% specific reason to use PageRegion.
  97. *OpenUI *PageSize: PickOne
  98. *OrderDependency: 30 AnySetup *PageSize
  99. *DefaultPageSize: A4
  100. *PageSize A4: "statusdict /a4tray get exec"
  101. *PageSize A5: "statusdict /a5tray get exec"
  102. *PageSize B4: "statusdict /b4tray get exec"
  103. *PageSize B5: "statusdict /b5tray get exec"
  104. *PageSize Postcard: "statusdict /postcardtray get exec"
  105. *?PageSize: "
  106. save
  107. 5 dict
  108. dup /a4 (A4) put
  109. dup /a5 (A5) put
  110. dup /b4 (B4) put
  111. dup /b5 (B5) put
  112. dup /postcard (Postcard) put
  113. statusdict /papersize get exec
  114. 3 1 roll {get} stopped {(Unknown)}if
  115. exch not { print (.Transverse) }if
  116. = flush
  117. restore
  118. "
  119. *End
  120. *CloseUI: *PageSize
  121. *% These entries will set up the frame buffer. Usually used with manual feed.
  122. *OpenUI *PageRegion: PickOne
  123. *OrderDependency: 40 AnySetup *PageRegion
  124. *DefaultPageRegion: A4
  125. *PageRegion A4: "a4"
  126. *PageRegion A5: "a5"
  127. *PageRegion B4: "b4"
  128. *PageRegion B5: "b5"
  129. *PageRegion Postcard: "postcard"
  130. *CloseUI: *PageRegion
  131. *% The following entries provide information about specific paper keywords.
  132. *DefaultImageableArea: A4
  133. *ImageableArea A4: "16.2001 15.48 580.5 821.7 "
  134. *ImageableArea A5: "16.2001 15.48 407.7 576.0 "
  135. *ImageableArea B4: "16.2001 15.4801 712.98 1008.9 "
  136. *ImageableArea B5: "16.2001 15.4801 499.86 708.3 "
  137. *ImageableArea Postcard: "8 8 271 406 "
  138. *?ImageableArea: "
  139. save
  140. /cvp { ( ) cvs print ( ) print } bind def
  141. /upperright {10000 mul floor 10000 div} bind def
  142. /lowerleft {10000 mul ceiling 10000 div} bind def
  143. newpath clippath pathbbox
  144. 4 -2 roll exch 2 {lowerleft cvp} repeat
  145. exch 2 {upperright cvp} repeat flush
  146. restore
  147. "
  148. *End
  149. *% These provide the physical dimensions of the paper (by keyword)
  150. *DefaultPaperDimension: A4
  151. *PaperDimension A4: "595 842"
  152. *PaperDimension A5: "420 595"
  153. *PaperDimension B4: "729 1032"
  154. *PaperDimension B5: "516 729"
  155. *PaperDimension Postcard: "283 420"
  156. *RequiresPageRegion All: True
  157. *OpenUI *InputSlot: PickOne
  158. *OrderDependency: 20 AnySetup *InputSlot
  159. *DefaultInputSlot: Bin1
  160. *InputSlot Bin1: "0 statusdict /setpapertray get exec"
  161. *InputSlot Bin2: "1 statusdict /setpapertray get exec"
  162. *InputSlot Automatic: "2 statusdict /setpapertray get exec"
  163. *?InputSlot: "
  164. save
  165. [ (Bin1) (Bin2) (Automatic) ]
  166. statusdict /papertray get exec
  167. {get exec} stopped { pop pop (Unknown)} if = flush
  168. restore
  169. "
  170. *End
  171. *CloseUI: *InputSlot
  172. *OpenUI *ManualFeed: Boolean
  173. *OrderDependency: 20 AnySetup *ManualFeed
  174. *ManualFeed True: "statusdict /manualfeed true put"
  175. *ManualFeed False: "statusdict /manualfeed false put"
  176. *DefaultManualFeed: False
  177. *?ManualFeed: "
  178. statusdict /manualfeed get
  179. {(True)}{(False)}ifelse = flush
  180. "
  181. *End
  182. *CloseUI: *ManualFeed
  183. *DefaultOutputOrder: Normal
  184. *% Font Information =====================
  185. *DefaultFont: Courier
  186. *Font Courier: Standard "(001.004)" Standard ROM
  187. *Font Courier-Bold: Standard "(001.004)" Standard ROM
  188. *Font Courier-BoldOblique: Standard "(001.004)" Standard ROM
  189. *Font Courier-Oblique: Standard "(001.004)" Standard ROM
  190. *Font Helvetica: Standard "(001.002)" Standard ROM
  191. *Font Helvetica-Bold: Standard "(001.002)" Standard ROM
  192. *Font Helvetica-BoldOblique: Standard "(001.002)" Standard ROM
  193. *Font Helvetica-Oblique: Standard "(001.002)" Standard ROM*Font Palatino-Bold: Standard "(001.002)" Standard ROM
  194. *Font Symbol: Special "(001.003)" Special ROM
  195. *Font Times-Bold: Standard "(001.002)" Standard ROM
  196. *Font Times-BoldItalic: Standard "(001.004)" Standard ROM
  197. *Font Times-Italic: Standard "(001.002)" Standard ROM
  198. *Font Times-Roman: Standard "(001.002)" Standard ROM
  199. *Font GothicBBB-Medium-78-EUC-H: EUC "(001.001)" JIS-83 Disk
  200. *Font GothicBBB-Medium-78-EUC-V: EUC "(001.001)" JIS-83 Disk
  201. *Font GothicBBB-Medium-78-H: JIS "(001.001)" JIS-83 Disk
  202. *Font GothicBBB-Medium-78-RKSJ-H: RKSJ "(001.001)" JIS-83 Disk
  203. *Font GothicBBB-Medium-78-RKSJ-V: RKSJ "(001.001)" JIS-83 Disk
  204. *Font GothicBBB-Medium-78-SJ-H: JIS "(001.001)" JIS-83 Disk
  205. *Font GothicBBB-Medium-78-SJ-V: JIS "(001.001)" JIS-83 Disk
  206. *Font GothicBBB-Medium-78-V: JIS "(001.001)" JIS-83 Disk
  207. *Font GothicBBB-Medium-83pv-RKSJ-H: RKSJ "(001.001)" 83pv Disk
  208. *Font GothicBBB-Medium-83pv-RKSJ-V: RKSJ "(001.001)" 83pv Disk
  209. *Font GothicBBB-Medium-EUC-H: EUC "(001.001)" JIS-83 Disk
  210. *Font GothicBBB-Medium-EUC-V: EUC "(001.001)" JIS-83 Disk
  211. *Font GothicBBB-Medium-Ext-EUC-H: EUC "(001.001)" JIS-83 Disk
  212. *Font GothicBBB-Medium-Ext-EUC-V: EUC "(001.001)" JIS-83 Disk
  213. *Font GothicBBB-Medium-Ext-H: JIS "(001.001)" Ext Disk
  214. *Font GothicBBB-Medium-Ext-RKSJ-H: RKSJ "(001.001)" Ext Disk
  215. *Font GothicBBB-Medium-Ext-RKSJ-V: RKSJ "(001.001)" Ext Disk
  216. *Font GothicBBB-Medium-Ext-SJ-H: JIS "(001.001)" Ext Disk
  217. *Font GothicBBB-Medium-Ext-SJ-V: JIS "(001.001)" Ext Disk
  218. *Font GothicBBB-Medium-Ext-V: JIS "(001.001)" Ext Disk
  219. *Font GothicBBB-Medium-H: JIS "(001.001)" JIS-83 Disk
  220. *Font GothicBBB-Medium-NWP-H: JIS "(001.001)" NWP Disk
  221. *Font GothicBBB-Medium-NWP-V: JIS "(001.001)" NWP Disk
  222. *Font GothicBBB-Medium-RKSJ-H: RKSJ "(001.001)" JIS-83 Disk
  223. *Font GothicBBB-Medium-RKSJ-V: RKSJ "(001.001)" JIS-83 Disk
  224. *Font GothicBBB-Medium-SJ-H: JIS "(001.001)" JIS-83 Disk
  225. *Font GothicBBB-Medium-SJ-V: JIS "(001.001)" JIS-83 Disk
  226. *Font GothicBBB-Medium-V: JIS "(001.001)" JIS-83 Disk
  227. *Font GothicBBB-Medium.Roman: Special "(001.001)" Special Disk
  228. *Font GothicBBB-Medium.WP-Symbol: Special "(001.001)" Special Disk
  229. *Font Mincho-PC-Hiragana: Special "(001.001)" Special Disk
  230. *Font Mincho-PC-Katakana: Special "(001.001)" Special Disk
  231. *Font Ryumin-Light-78-EUC-H: EUC "(001.001)" JIS-83 Disk
  232. *Font Ryumin-Light-78-EUC-V: EUC "(001.001)" JIS-83 Disk
  233. *Font Ryumin-Light-78-H: JIS "(001.001)" JIS-83 Disk
  234. *Font Ryumin-Light-78-RKSJ-H: RKSJ "(001.001)" JIS-83 Disk
  235. *Font Ryumin-Light-78-RKSJ-V: RKSJ "(001.001)" JIS-83 Disk
  236. *Font Ryumin-Light-78-SJ-H: JIS "(001.001)" JIS-83 Disk
  237. *Font Ryumin-Light-78-SJ-V: JIS "(001.001)" JIS-83 Disk
  238. *Font Ryumin-Light-78-V: JIS "(001.001)" JIS-83 Disk
  239. *Font Ryumin-Light-83pv-RKSJ-H: RKSJ "(001.001)" 83pv Disk
  240. *Font Ryumin-Light-83pv-RKSJ-V: RKSJ "(001.001)" 83pv Disk
  241. *Font Ryumin-Light-EUC-H: EUC "(001.001)" JIS-83 Disk
  242. *Font Ryumin-Light-EUC-V: EUC "(001.001)" JIS-83 Disk
  243. *Font Ryumin-Light-Ext-EUC-H: EUC "(001.001)" JIS-83 Disk
  244. *Font Ryumin-Light-Ext-EUC-V: EUC "(001.001)" JIS-83 Disk
  245. *Font Ryumin-Light-Ext-H: JIS "(001.001)" Ext Disk
  246. *Font Ryumin-Light-Ext-RKSJ-H: RKSJ "(001.001)" Ext Disk
  247. *Font Ryumin-Light-Ext-RKSJ-V: RKSJ "(001.001)" Ext Disk
  248. *Font Ryumin-Light-Ext-SJ-H: JIS "(001.001)" Ext Disk
  249. *Font Ryumin-Light-Ext-SJ-V: JIS "(001.001)" Ext Disk
  250. *Font Ryumin-Light-Ext-V: JIS "(001.001)" Ext Disk
  251. *Font Ryumin-Light-H: JIS "(001.001)" JIS-83 Disk
  252. *Font Ryumin-Light-NWP-H: JIS "(001.001)" NWP Disk
  253. *Font Ryumin-Light-NWP-V: JIS "(001.001)" NWP Disk
  254. *Font Ryumin-Light-RKSJ-H: RKSJ "(001.001)" JIS-83 Disk
  255. *Font Ryumin-Light-RKSJ-V: RKSJ "(001.001)" JIS-83 Disk
  256. *Font Ryumin-Light-SJ-H: JIS "(001.001)" JIS-83 Disk
  257. *Font Ryumin-Light-SJ-V: JIS "(001.001)" JIS-83 Disk
  258. *Font Ryumin-Light-V: JIS "(001.001)" JIS-83 Disk
  259. *Font Ryumin-Light.Roman: Special "(001.001)" Special Disk
  260. *Font Ryumin-Light.WP-Symbol: Special "(001.001)" Special Disk
  261. *?FontQuery: "
  262. save
  263. {
  264. count 1 gt {
  265. exch dup 128 string cvs (/) print print (:) print
  266. dup FontDirectory exch known {pop (Yes)}
  267. {
  268. (fonts/ )
  269. dup 3 -1 roll 128 string cvs dup length /len exch def
  270. 6 exch putinterval
  271. 0 len 6 add getinterval mark exch
  272. { } 128 string filenameforall counttomark 0 gt {
  273. cleartomark (Yes)}{cleartomark (No)}ifelse
  274. }ifelse =
  275. }{ exit } ifelse
  276. } bind loop
  277. (*) = flush
  278. restore
  279. "
  280. *End
  281. *?FontList: "
  282. save
  283. FontDirectory { pop == } bind forall flush
  284. /filenameforall where {
  285. pop (fonts/*) {
  286. dup length 6 sub 6 exch getinterval cvn ==
  287. } bind
  288. 128 string filenameforall flush
  289. } if
  290. (*) = flush
  291. restore
  292. "
  293. *End
  294. *% Printer Messages (verbatim from printer):
  295. *Message: "%%[ exitserver: permanent state may be changed ]%%"
  296. *Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
  297. *Message: "\FontName\ not found, using Courier"
  298. *% Status (format: %%[ status: <one of these> ]%% )
  299. *Status: "idle"
  300. *Status: "busy"
  301. *Status: "waiting"
  302. *Status: "printing"
  303. *Status: "warming up"
  304. *Status: "PrinterError: fuser failure"
  305. *Status: "PrinterError: prnt. mem. error"
  306. *Status: "PrinterError: fan failure"
  307. *Status: "PrinterError: motor failure"
  308. *Status: "PrinterError: bin 1 paper out"
  309. *Status: "PrinterError: bin 2 paper out"
  310. *Status: "PrinterError: check bin 1"
  311. *Status: "PrinterError: check bin 2"
  312. *Status: "PrinterError: cver open"
  313. *Status: "PrinterError: paper jam"
  314. *Status: "PrinterError: insert letter"
  315. *Status: "PrinterError: insert legal"
  316. *Status: "PrinterError: insert a4"
  317. *Status: "PrinterError: insert b5"
  318. *Status: "PrinterError: warming up"
  319. *% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
  320. *Source: "serial9"
  321. *Source: "serial25"
  322. *Source: "AppleTalk"
  323. *Source: "Centronics"
  324. *% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
  325. *PrinterError: " fuser failure"
  326. *PrinterError: " prnt. mem. error"
  327. *PrinterError: " fan failure"
  328. *PrinterError: " motor failure"
  329. *PrinterError: " bin 1 paper out"
  330. *PrinterError: " bin 2 paper out"
  331. *PrinterError: " check bin 1"
  332. *PrinterError: " check bin 2"
  333. *PrinterError: " cver open"
  334. *PrinterError: " paper jam"
  335. *PrinterError: " insert letter"
  336. *PrinterError: " insert legal"
  337. *PrinterError: " insert a4"
  338. *PrinterError: " insert b5"
  339. *PrinterError: " warming up"
  340. *%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
  341. *% Color Separation Information =====================
  342. *DefaultColorSep: ProcessBlack.71lpi.400dpi/71 lpi / 400 dpi
  343. *InkName: ProcessBlack/Process Black
  344. *InkName: CustomColor/Custom Color
  345. *InkName: ProcessCyan/Process Cyan
  346. *InkName: ProcessMagenta/Process Magenta
  347. *InkName: ProcessYellow/Process Yellow
  348. *% For 71 lpi / 400 dpi ===============================
  349. *ColorSepScreenAngle ProcessBlack.71lpi.400dpi/71 lpi / 400 dpi: "45.0"
  350. *ColorSepScreenAngle CustomColor.71lpi.400dpi/71 lpi / 400 dpi: "45.0"
  351. *ColorSepScreenAngle ProcessCyan.71lpi.400dpi/71 lpi / 400 dpi: "71.5651"
  352. *ColorSepScreenAngle ProcessMagenta.71lpi.400dpi/71 lpi / 400 dpi: "18.4349"
  353. *ColorSepScreenAngle ProcessYellow.71lpi.400dpi/71 lpi / 400 dpi: "0.0"
  354. *ColorSepScreenFreq ProcessBlack.71lpi.400dpi/71 lpi / 400 dpi: "70.7107"
  355. *ColorSepScreenFreq CustomColor.71lpi.400dpi/71 lpi / 400 dpi: "70.7107"
  356. *ColorSepScreenFreq ProcessCyan.71lpi.400dpi/71 lpi / 400 dpi: "63.2456"
  357. *ColorSepScreenFreq ProcessMagenta.71lpi.400dpi/71 lpi / 400 dpi: "63.2456"
  358. *ColorSepScreenFreq ProcessYellow.71lpi.400dpi/71 lpi / 400 dpi: "66.6667"
  359. *% For 47 lpi / 400 dpi ===============================
  360. *ColorSepScreenAngle ProcessBlack.47lpi.400dpi/47 lpi / 400 dpi: "45.0"
  361. *ColorSepScreenAngle CustomColor.47lpi.400dpi/47 lpi / 400 dpi: "45.0"
  362. *ColorSepScreenAngle ProcessCyan.47lpi.400dpi/47 lpi / 400 dpi: "71.5651"
  363. *ColorSepScreenAngle ProcessMagenta.47lpi.400dpi/47 lpi / 400 dpi: "18.4349"
  364. *ColorSepScreenAngle ProcessYellow.47lpi.400dpi/47 lpi / 400 dpi: "0.0"
  365. *ColorSepScreenFreq ProcessBlack.47lpi.400dpi/47 lpi / 400 dpi: "47.1405"
  366. *ColorSepScreenFreq CustomColor.47lpi.400dpi/47 lpi / 400 dpi: "47.1405"
  367. *ColorSepScreenFreq ProcessCyan.47lpi.400dpi/47 lpi / 400 dpi: "42.1637"
  368. *ColorSepScreenFreq ProcessMagenta.47lpi.400dpi/47 lpi / 400 dpi: "42.1637"
  369. *ColorSepScreenFreq ProcessYellow.47lpi.400dpi/47 lpi / 400 dpi: "44.4444"
  370. *% Last Edit Date: Feb 28 1994
  371. *% end of PPD file for LN82R-AJ