home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / sgi / 12442 < prev    next >
Encoding:
Internet Message Format  |  1992-08-14  |  2.2 KB

  1. Path: sparky!uunet!paladin.american.edu!darwin.sura.net!jvnc.net!netnews.upenn.edu!dirac.physics.upenn.edu!raines
  2. From: raines@dirac.physics.upenn.edu (Paul Edgar Raines)
  3. Newsgroups: comp.sys.sgi
  4. Subject: Re: Add a LaserWriter to an Indigo?
  5. Message-ID: <86225@netnews.upenn.edu>
  6. Date: 14 Aug 92 21:11:55 GMT
  7. References: <31653@adm.brl.mil> <oirm10s@twilight.wpd.sgi.com>
  8. Sender: news@netnews.upenn.edu
  9. Lines: 44
  10. Nntp-Posting-Host: dirac.physics.upenn.edu
  11.  
  12. In article <oirm10s@twilight.wpd.sgi.com>, story@sgi.com (David (Duis) Story) writes:
  13. |> In article <31653@adm.brl.mil> stewart@aurora.ucns.uga.edu (David Stewart) writes:
  14. |> >
  15. |> 
  16. |> One possibility is to use the "Generic PostScript" model.  Use the
  17. |> Printer Manager to Add a printer, choose the appropriate (unused)
  18. |> serial port, and select Generic PostScript as your printer type.
  19. |> You will not gain access to any special features, but the printer
  20. |> should work.  Watch out for the margins getting clipped, you need more
  21. |> memory for that!
  22. |> 
  23.  
  24. The following is a short postscript program you can download to
  25. the IIg to turn off Photograde and gain back the smaller margins.
  26.  
  27. ------------------------------- cut ------------------------------
  28. %Disable PhotoGrade.ps        D.W.  11/91
  29. %This code disables PhotoGrade enhancement after a couple of checks:
  30. %  Verifies that it's running on a LaserWriter IIg or IIf
  31. %  Checks if PhotoGrade is already disabled - prevents NVRAM fatigue.
  32. %  (The memory device is limited to approximately 50000 writes)
  33.  
  34. statusdict /product get dup
  35. (LaserWriter IIf) ne exch (LaserWriter IIg) ne and
  36. { (Not a IIf or IIg and may not support PhotoGrade.  Canceling.) =
  37.   stop
  38. } if
  39. currentpagedevice /PreRenderingEnhance get not
  40. { (PhotoGrade is already disabled on this LaserWriter) = }
  41. { serverdict begin 0 exitserver }
  42. ifelse
  43. vmstatus pop pop 0 eq
  44. { (Disabling PhotoGrade.) =
  45.   <</PreRenderingEnhance false>> setpagedevice
  46. } if
  47. ------------------------------- cut -------------------------------
  48. The guy who gave this to me says it is from Apple. It worked for us.
  49. Not sure how to turn it back on. Probably change the false to true.
  50.  
  51. Paul Raines    raines@purcell.physics.upenn.edu    215-898-8832
  52. Dept. of Physics
  53. University of Pennsylvania
  54.  
  55.  
  56.