home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / clipart / gs22.zip / GDEVS.PS < prev    next >
Text File  |  1989-06-20  |  2KB  |  47 lines

  1. %    Copyright (C) 1989 Aladdin Enterprises.  All rights reserved.
  2. %    Distributed by Free Software Foundation, Inc.
  3. %
  4. % This file is part of Ghostscript.
  5. %
  6. % Ghostscript is distributed in the hope that it will be useful, but
  7. % WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. % to anyone for the consequences of using it or for whether it serves any
  9. % particular purpose or works at all, unless he says so in writing.  Refer
  10. % to the Ghostscript General Public License for full details.
  11. %
  12. % Everyone is granted permission to copy, modify and redistribute
  13. % Ghostscript, but only under the conditions described in the Ghostscript
  14. % General Public License.  A copy of this license is supposed to have been
  15. % given to you along with Ghostscript so you can know your rights and
  16. % responsibilities.  It should be in a file named COPYING.  Among other
  17. % things, the copyright notice and this notice must be preserved on all
  18. % copies.
  19.  
  20. % Device-specific initialization for Ghostscript, version 1.3.
  21. % The interpreter predefines the name defaultdevicename
  22. % as a string which is the default (currently, the only) device name.
  23.  
  24. /defaultdevicename defaultdevicename def    % only evaluate once
  25. /.ifdevice { defaultdevicename eq { exec stop } { pop } ifelse } def
  26.  
  27. {
  28.  
  29. % Device parameters for X Windows
  30.  {    /.device.width 8.5 72 mul cvi def
  31.     /.device.height 11 72 mul def
  32.     /.pixel.size 1 def    % pixel width in points
  33.     /.aspect.ratio 1 def    % pixel height/width
  34.  } (X) .ifdevice
  35.  
  36. % Device parameters for EGA
  37.  {    /.device.width 640 def
  38.     /.device.height 350 def
  39.     /.pixel.size 1 def
  40.     /.aspect.ratio 14 11 div def
  41.  } (EGA) .ifdevice
  42.  
  43. % Undefined device
  44. (Unknown device ) print defaultdevicename print (\n) print flush
  45.  
  46. } stopped pop
  47.