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

  1. %!
  2. % Copyright (C) 2001-2012 Artifex Software, Inc.
  3. % All Rights Reserved.
  4. %
  5. % This software is provided AS-IS with no warranty, either express or
  6. % implied.
  7. %
  8. % This software is distributed under license and may not be copied,
  9. % modified or distributed except as expressly authorized under the terms
  10. % of the license contained in the file LICENSE in this distribution.
  11. %
  12. % Refer to licensing information at http://www.artifex.com or contact
  13. % Artifex Software, Inc.,  7 Mt. Lassen Drive - Suite A-134, San Rafael,
  14. % CA  94903, U.S.A., +1(415)492-9861, for further information.
  15. %
  16.  
  17. % Add a "caption" to the bottom of each page.
  18. /captionsize 20 def
  19. /caption
  20.  { /Helvetica //captionsize selectfont
  21.    (Printed by Artifex's XXYYZZ) show
  22.    /Symbol //captionsize selectfont
  23.    (\324) show        % trademarkserif
  24.    /Helvetica //captionsize selectfont
  25.    ( product) show
  26.  } bind def
  27.  
  28. 10 dict begin
  29. gsave
  30.   initgraphics
  31.   clippath pathbbox
  32.   pop exch 36 add /by exch def
  33.                 % We can't use stringwidth, so we have to show and measure.
  34.   gsave
  35.     0 0 0 0 rectclip
  36.     0 0 moveto caption currentpoint pop /bw exch def
  37.   grestore
  38.   add bw sub 2 div /bx exch def
  39.                 % We don't have the font bbox available, so we guess.
  40.   /bh captionsize 1.05 mul def
  41. grestore
  42. /showcaption
  43.  { gsave
  44.      initgraphics
  45.      //bx 9 sub //by 9 sub //bw 18 add //bh 18 add
  46.      1 setgray 4 copy rectfill 0 setgray 1.5 setlinewidth rectstroke
  47.      //bx //by moveto //caption exec
  48.    grestore
  49.  } bind def
  50. << /EndPage [
  51.    %%
  52.    %% Only print the caption if 'reason' is not 2 (device deactivation)
  53.    %%
  54.    /dup load /exec load 2 /ne load /exec load [ /showcaption load /exec load ] cvx /if load /exec load
  55.    currentpagedevice /EndPage get /exec load
  56.    ] cvx
  57. >> setpagedevice
  58. end
  59.