home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / Vyzkuste / gs / gs650w32.exe / gs6.50 / lib / viewcmyk.ps < prev    next >
Text File  |  2000-12-05  |  2KB  |  66 lines

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