home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume12 / postscript / ps.diff.v4 / text0000.txt < prev   
Encoding:
Text File  |  1989-02-16  |  1.7 KB  |  52 lines

  1. in v7n149 David Classen (dclassen@vulture.bcm.tmc.edu) asks a question:
  2.  
  3. > I am looking for a PostScript previewer for SunView.
  4.  
  5. so apparently is everybody else. here is our answer the one of the most
  6. often asked questions on the net:  first get Crispin Goswells'
  7. PostScript(R) interpreter from your favorite comp.sources.unix archive
  8. (uunet.uu.net [192.12.141.129] is one).  it's in 18 parts in volume 12.
  9. then apply the speed ups, bug fixes and enhancements found on
  10. z.andrew.cmu.edu [128.2.30.8] in psdiff/ps.diff.v[123].  then apply our
  11. patch to pixwin.c to make it work correctly:
  12. __________
  13.  
  14. ***************
  15. *** 402,408 ****
  16.         case ROP_NOTDEST:       op = PIX_NOT (PIX_SRC); break;
  17.         case ROP_TRUE:          op = PIX_SET;           break;
  18.         }
  19. +     bm = Pixrect_addr (to);
  20.       rop = rop_map [rop];
  21.       UpdateControl (to, FALSE);
  22.       for (i = top; i < height; i++)
  23. __________
  24.  
  25. if you want to preview Scribe(R) output feed the output to sed with the
  26. following script:
  27.  
  28. __________
  29.  
  30. cat scribe.ps |\
  31. sed -e "/^\% Unilogic\/Scribe version of LaserPrep v4.0/,/^\%\%EndProlog/ d" >\
  32. scribe.ps.good
  33. __________
  34.  
  35. this stuff works for us.  hope it does for you too.  maybe Mr.  LeFebvre
  36. can collect all the other PostScript info and have available for everybody
  37. to get at when the question comes up again, as it certainly will.
  38.  
  39.     thanks, 
  40.         steve(R) beaty@handel.colostate.edu
  41.  
  42.         QTC/Horizon Labs/Colorado State University
  43.  
  44. disclamers, etc:
  45.  
  46. (R) PostScript is a registered trademark of Adobe Systems Incorporated
  47. (R) Scribe is a registered trademark of UNILOGIC(R), LTD
  48. (R) UNILOGIC is a registered trademark of UNILOGIC, LTD
  49. (R) steve is a registered trademark of no one in particular
  50.  
  51.  
  52.