home *** CD-ROM | disk | FTP | other *** search
/ Acorn User 10 / AU_CD10.iso / Updates / GhostScript / !GhostScr / 6_01 / lib / viewcmyk.ps < prev    next >
Text File  |  2000-03-09  |  2KB  |  67 lines

  1. %    Copyright (C) 1996, 1997, 1998 Aladdin Enterprises.  All rights reserved.
  2. %
  3. % This file is part of Ghostscript.
  4. %
  5. % Ghostscript is distributed in the hope that it will be useful, but
  6. % WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. % to anyone for the consequences of using it or for whether it serves any
  8. % particular purpose or works at all, unless he says so in writing.  Refer
  9. % to the Ghostscript General Public License for full details.
  10. %
  11. % Everyone is granted permission to copy, modify and redistribute
  12. % Ghostscript, but only under the conditions described in the Ghostscript
  13. % General Public License.  A copy of this license is supposed to have been
  14. % given to you along with Ghostscript so you can know your rights and
  15. % responsibilities.  It should be in a file named COPYING.  Among other
  16. % things, the copyright notice and this notice must be preserved on all
  17. % copies.
  18.  
  19. % $Id: viewcmyk.ps,v 1.1 2000/03/09 08:40:40 lpd Exp $
  20. % viewcmyk.ps
  21. % Display a raw CMYK file.
  22. % Requires the colorimage operator.
  23. % If SCALE is defined, maps input pixels to output pixels with that scale;
  24. % if SCALE is undefined, scales the image to fit the page.
  25. % If BITS is defined, it is the number of bits per sample (1,2,4,8,12);
  26. % if BITS is undefined, its default value is 1.
  27.  
  28. /viewcmyk {            % <filename> <width> viewcmyk -
  29.   20 dict begin
  30.   /w exch def
  31.   /fname exch def
  32.   /bpc /BITS where { pop BITS } { 1 } ifelse def
  33.   /f fname (r) file def
  34.   mark fname status pop pop pop /flen exch def cleartomark
  35.   /h flen w bpc 4 mul mul 7 add 8 idiv idiv def
  36.   (Dimensions: ) print [w h] == flush
  37.         % Set up scaling.
  38.   /SCALE where {
  39.     pop
  40.     % Map pixels SCALE-for-1.  Assume orthogonal transformation.
  41.     SCALE 1 0 dtransform add abs div
  42.     SCALE 0 1 dtransform add abs div
  43.   } {
  44.     % Scale the image (uniformly) to fit the page.
  45.     clippath pathbbox pop pop translate
  46.     pathbbox 3 -1 roll sub h div
  47.     3 1 roll exch sub w div min dup
  48.   } ifelse scale
  49.   w h bpc [1 0 0 -1 0 h] f false 4 colorimage
  50.   showpage
  51.   f closefile
  52.   end
  53. } bind def
  54.  
  55. % If the program was invoked from the command line, run it now.
  56. [ shellarguments {
  57.   counttomark 2 eq {
  58.     cvi viewcmyk
  59.   } {
  60.     cleartomark
  61.     (Usage: gs -- viewcmyk.ps filename.cmyk width\n) print
  62.     ( e.g.: gs -- viewcmyk.ps my.cmyk 2550\n) print flush
  63.   } ifelse
  64. } {
  65.   pop
  66. } ifelse
  67.