home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / lang / postscri / 6392 < prev    next >
Encoding:
Text File  |  1993-01-21  |  1.9 KB  |  51 lines

  1. Newsgroups: comp.lang.postscript
  2. Path: sparky!uunet!spool.mu.edu!agate!ames!purdue!mentor.cc.purdue.edu!news
  3. From: ab@nova.cc.purdue.edu (Allen B)
  4. Subject: Re: Poster/Tiler
  5. Message-ID: <C17u6q.DAL@mentor.cc.purdue.edu>
  6. Sender: news@mentor.cc.purdue.edu (USENET News)
  7. Organization: Purdue University
  8. References: <1jmcrtINNpt5@usenet.INS.CWRU.Edu>
  9. Date: Thu, 21 Jan 1993 18:04:02 GMT
  10. Lines: 39
  11.  
  12. In article <1jmcrtINNpt5@usenet.INS.CWRU.Edu> ah395@cleveland.Freenet.Edu  
  13. (Jeffrey T. Hansen) writes:
  14. > We've got a Laserjet II NTX, which gives
  15. > us a 8" x 10 1/2" printing area, and I produce drawings that are
  16. > 30" x 42".  I'd like to be able to take a drawing, and have the
  17. > printer break it into tiles like poster, but have the tile move about
  18. > the drawing rather than have the drawing enlarged from a small 
  19. > area.  
  20.  
  21. Do you mean LaserWriter IINTX?  If so, do you have a disk
  22. drive attached to it?
  23.  
  24. The easiest way I've found to make posters of PostScript
  25. files is to have a program set up a new graphics state for a
  26. tile, execute the program you want to make a poster of and
  27. repeat as necessary.
  28.  
  29. The most effective way to do this is to run the poster image
  30. from a file.  To do this, you need to have a filesystem
  31. available to the PostScript engine.  This works in nearly
  32. all cases, and it's probably the best way to do this
  33. automatically. 
  34.  
  35. In some cases, you can just execute the code of the image
  36. over and over again in a loop.  Program 13 in The Blue Book
  37. does this.  If your code is too complicated, this won't
  38. work.
  39.  
  40. You could also try putting your program in an executable
  41. string and running it that way, but, again, if it's too big
  42. or complex it will fail.
  43.  
  44. I can post the code to make posters from a file, but the last
  45. time I did, people told me it wasn't useful because they
  46. don't have filesystems on their printers.  That's really
  47. a shame because it makes your printer so much more
  48. powerful and useful.  Their loss. :-)
  49.  
  50. ab
  51.