home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Bureautique / Scribus / GhostscriptPortable_9.14.paf.exe / lib / viewcmyk.ps < prev    next >
Text File  |  2014-03-26  |  2KB  |  63 lines

  1. % Copyright (C) 2001-2012 Artifex Software, Inc.
  2. % All Rights Reserved.
  3. %
  4. % This software is provided AS-IS with no warranty, either express or
  5. % implied.
  6. %
  7. % This software is distributed under license and may not be copied,
  8. % modified or distributed except as expressly authorized under the terms
  9. % of the license contained in the file LICENSE in this distribution.
  10. %
  11. % Refer to licensing information at http://www.artifex.com or contact
  12. % Artifex Software, Inc.,  7 Mt. Lassen Drive - Suite A-134, San Rafael,
  13. % CA  94903, U.S.A., +1(415)492-9861, for further information.
  14. %
  15.  
  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.