1 % === BEGIN ps-print prologue 1
3 % ISOLatin1Encoding stolen from ps_init.ps in GhostScript 2.6.1.4:
4 /ISOLatin1Encoding where {pop}{
5 % -- The ISO Latin-1 encoding vector isn't known, so define it.
6 % -- The first half is the same as the standard encoding,
7 % -- except for minus instead of hyphen at code 055.
9 StandardEncoding 0 45 getinterval aload pop
11 StandardEncoding 46 82 getinterval aload pop
12 %*** NOTE: the following are missing in the Adobe documentation,
13 %*** but appear in the displayed table:
14 %*** macron at 0225, dieresis at 0230, cedilla at 0233, space at 0240.
16 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
17 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
18 /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
19 /dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron
21 /space /exclamdown /cent /sterling
22 /currency /yen /brokenbar /section
23 /dieresis /copyright /ordfeminine /guillemotleft
24 /logicalnot /hyphen /registered /macron
25 /degree /plusminus /twosuperior /threesuperior
26 /acute /mu /paragraph /periodcentered
27 /cedilla /onesuperior /ordmasculine /guillemotright
28 /onequarter /onehalf /threequarters /questiondown
30 /Agrave /Aacute /Acircumflex /Atilde
31 /Adieresis /Aring /AE /Ccedilla
32 /Egrave /Eacute /Ecircumflex /Edieresis
33 /Igrave /Iacute /Icircumflex /Idieresis
34 /Eth /Ntilde /Ograve /Oacute
35 /Ocircumflex /Otilde /Odieresis /multiply
36 /Oslash /Ugrave /Uacute /Ucircumflex
37 /Udieresis /Yacute /Thorn /germandbls
39 /agrave /aacute /acircumflex /atilde
40 /adieresis /aring /ae /ccedilla
41 /egrave /eacute /ecircumflex /edieresis
42 /igrave /iacute /icircumflex /idieresis
43 /eth /ntilde /ograve /oacute
44 /ocircumflex /otilde /odieresis /divide
45 /oslash /ugrave /uacute /ucircumflex
46 /udieresis /yacute /thorn /ydieresis
50 /reencodeFontISO{ %def
52 length 12 add dict % Make a new font (a new dict the same size
53 % as the old one) with room for our new symbols.
55 begin % Make the new font the current dictionary.
60 }forall % Copy each of the symbols from the old dictionary
61 % to the new one except for the font ID.
63 currentdict /FontType get 0 ne{
64 /Encoding ISOLatin1Encoding def % Override the encoding with
65 % the ISOLatin1 encoding.
68 % Use the font's bounding box to determine the ascent, descent,
69 % and overall height; don't forget that these values have to be
70 % transformed using the font's matrix.
77 % | | | | Ascent (usually > 0)
79 % (0 0) -> +--+----+-------->
81 % | | v Descent (usually < 0)
82 % (x1 y1) --> +----+ - -
84 currentdict /FontType get 0 ne{
85 /FontBBox load aload pop % -- x1 y1 x2 y2
86 FontMatrix transform /Ascent exch def pop
87 FontMatrix transform /Descent exch def pop
89 /PrimaryFont FDepVector 0 get def
90 PrimaryFont /FontBBox get aload pop
91 PrimaryFont /FontMatrix get transform /Ascent exch def pop
92 PrimaryFont /FontMatrix get transform /Descent exch def pop
95 /FontHeight Ascent Descent sub def % use `sub' because descent < 0
97 % Define these in case they're not in the FontInfo
98 % (also, here they're easier to get to).
99 /UnderlinePosition Descent 0.70 mul def
100 /OverlinePosition Descent UnderlinePosition sub Ascent add def
101 /StrikeoutPosition Ascent 0.30 mul def
102 /LineThickness FontHeight 0.05 mul def
103 /Xshadow FontHeight 0.08 mul def
104 /Yshadow FontHeight -0.09 mul def
105 /SpaceBackground Descent neg UnderlinePosition add def
106 /XBox Descent neg def
107 /YBox LineThickness 0.7 mul def
109 currentdict % Leave the new font on the stack
110 end % Stop using the font as the current dictionary.
111 definefont % Put the font into the font dictionary
112 pop % Discard the returned font.
115 /DefFont{ % Font definition
116 findfont exch scalefont reencodeFontISO
121 dup /Ascent get /Ascent exch def
122 dup /Descent get /Descent exch def
123 dup /FontHeight get /FontHeight exch def
124 dup /UnderlinePosition get /UnderlinePosition exch def
125 dup /OverlinePosition get /OverlinePosition exch def
126 dup /StrikeoutPosition get /StrikeoutPosition exch def
127 dup /LineThickness get /LineThickness exch def
128 dup /Xshadow get /Xshadow exch def
129 dup /Yshadow get /Yshadow exch def
130 dup /SpaceBackground get /SpaceBackground exch def
131 dup /XBox get /XBox exch def
132 dup /YBox get /YBox exch def
136 /FG /setrgbcolor load def
149 % | Ascent (usually > 0)
151 % | Descent (usually < 0)
155 /dobackground{ % width --
156 currentpoint % -- width x y
162 0 Descent Ascent sub rlineto % D
165 bgcolor aload pop setrgbcolor
170 /eolbg{ % dobackground until right margin
171 PrintWidth % -- x-eol
172 currentpoint pop % -- cur-x
173 sub % -- width until eol
177 /PLN{PrintLineNumber{doLineNumber}if}def
181 0 currentpoint exch pop LineHeight sub moveto
184 /HL{SL PLN}def % Hard Linefeed
187 /dcp{currentpoint exch 40 string cvs print (, ) print =}def
188 /dp{print 2 copy exch 40 string cvs print (, ) print =}def
191 ( ) stringwidth % Get the width of a space in the current font.
192 pop % Discard the Y component.
193 mul % Multiply the width of a space
194 % by the number of spaces to plot
195 bg{dup dobackground}if
200 /EF{/Effect exch def}def
202 % stack: string |- --
203 % effect: 1 - underline 2 - strikeout 4 - overline
204 % 8 - shadow 16 - box 32 - outline
206 /xx currentpoint dup Descent add /yy exch def
207 Ascent add /YY exch def def
208 dup stringwidth pop xx add /XX exch def
210 /yy yy Yshadow add def
211 /XX XX Xshadow add def
216 {SpaceBackground doBox}
220 Effect 16 and 0 ne{false 0 doBox}if % box
221 Effect 8 and 0 ne{dup doShadow}if % shadow
223 {true doOutline} % outline
226 Effect 1 and 0 ne{UnderlinePosition Hline}if % underline
227 Effect 2 and 0 ne{StrikeoutPosition Hline}if % strikeout
228 Effect 4 and 0 ne{OverlinePosition Hline}if % overline
231 % stack: position |- --
233 currentpoint exch pop add dup
239 LineThickness setlinewidth stroke
243 % stack: fill-or-not delta |- --
246 xx XBox sub dd sub yy YBox sub dd sub
247 XX XBox add dd add YY YBox add dd add
251 % stack: fill-or-not lower-x lower-y upper-x upper-y |- --
264 % top of stack: fill-or-not
266 {LineThickness setlinewidth stroke}
271 % stack: string |- --
274 Xshadow Yshadow rmoveto
281 % stack: string fill-or-not |- --
284 /-ox- currentpoint /-oy- exch def def
286 LineThickness setlinewidth
289 -fillp- {gsave FillBgColor grestore}if
291 -oy- add /-oy- exch def
292 -ox- add /-ox- exch def
300 /FillBgColor{bgcolor aload pop setrgbcolor fill}bind def
302 /L0 6 /Times-Italic DefFont
311 0.0 0.0 0.0 setrgbcolor
315 {LineNumber 6 string cvs ( ) strcat}
317 dup stringwidth pop neg 0 rmoveto
321 /LineNumber LineNumber 1 add def
329 /double-zebra ZebraHeight ZebraHeight add def
330 /yiter double-zebra LineHeight mul neg def
331 /xiter PrintWidth InterColumn add def
332 NumberOfColumns{LinesPerColumn doColumnZebra xiter 0 rmoveto}repeat
336 % stack: lines-per-column |- --
339 dup double-zebra idiv{ZebraHeight doZebra 0 yiter rmoveto}repeat
341 dup 0 le{pop}{dup ZebraHeight gt {pop ZebraHeight}if doZebra}ifelse
345 % stack: zebra-height (in lines) |- --
347 /zh exch 0.05 sub LineHeight mul def
349 0 LineHeight 0.65 mul rmoveto
352 PrintWidth neg 0 rlineto
358 % tx ty rotation xscale yscale xpos ypos BeginBackImage
360 /-save-image- save def
368 /EndBackImage{-save-image- restore}def
370 % string fontsize fontname rotation gray xpos ypos ShowBackText
376 findfont exch dup /-offset- exch -0.25 mul def scalefont setfont
378 /-saveLineThickness- LineThickness def
381 /LineThickness -saveLineThickness- def
386 % ---- Remember space width of the normal text font `f0'.
387 /SpaceWidth /f0 findfont setfont ( ) stringwidth pop def
388 % ---- save the state of the document (useful for ghostscript!)
390 % ---- [andrewi] set PageSize based on chosen dimensions
392 << /PageSize [PageWidth LandscapePageHeight] >> setpagedevice
395 % ---- translate to bottom-right corner of Portrait page
396 LandscapePageHeight 0 translate
400 % ---- [jack] Kludge: my ghostscript window is 21x27.7 instead of 21x29.7
401 /JackGhostscript where{pop 1 27.7 29.7 div scale}if
406 PageWidth 0 translate
409 N-Up-Margin dup translate
413 /WW LandscapePageHeight def
415 /HH LandscapePageHeight def
418 WW N-Up-Margin sub N-Up-Margin sub
420 {N-Up-Lines div HH}{N-Up-Columns N-Up-Missing add div WW}ifelse
422 0 N-Up-Repeat 1 sub LandscapePageHeight mul translate
423 % ---- go to start position in page matrix
424 N-Up-XStart N-Up-Missing 0.5 mul
426 LandscapePageHeight mul N-Up-YStart add
428 PageWidth mul add N-Up-YStart
432 /ColumnWidth PrintWidth InterColumn add def
433 % ---- translate to lower left corner of TEXT
434 LeftMargin BottomMargin translate
435 % ---- define where printing will start
436 /f0 F % this installs Ascent
437 /PrintStartY PrintHeight Ascent sub def
439 /N-Up-Counter N-Up-End 1 sub def
443 % ---- restore the state of the document (useful for ghostscript!)
448 % ---- when 1st column, save the state of the page
452 % ---- save the state of the column
453 /columnState save def
456 /PrintHeaderWidth PrintOnlyOneHeader{PrintPageWidth}{PrintWidth}ifelse def
459 % ---- when 1st column, print all background effects
461 0 PrintStartY moveto % move to where printing will start
463 printGlobalBackground
467 PrintOnlyOneHeader{ColumnIndex 1 eq}{true}ifelse{
468 PrintHeaderFrame{HeaderFrame}if
472 0 PrintStartY moveto % move to where printing will start
476 /EndPage{bg{eolbg}if}def
479 ColumnIndex NumberOfColumns eq{
480 % ---- restore the state of the page
486 % ---- Next page on same row
487 /N-Up-Counter N-Up-Counter 1 sub def
488 N-Up-XColumn N-Up-YColumn
490 % ---- Next page on next line
491 /N-Up-Counter N-Up-End 1 sub def
492 N-Up-XLine N-Up-YLine
497 % ---- restore the state of the current column
499 % ---- and translate to the next column
500 ColumnWidth 0 translate
501 /ColumnIndex ColumnIndex 1 add def
505 % stack: number-of-pages-per-sheet |- --
508 /pages-per-sheet exch def
510 N-Up 1 gt N-Up-Border and pages-per-sheet 0 gt and{
514 LeftMargin neg BottomMargin neg moveto
519 0 LandscapePageHeight rlineto
520 PageWidth neg 0 rlineto
523 /pages-per-sheet pages-per-sheet 1 sub def
524 pages-per-sheet 0 le{exit}if
525 N-Up-XColumn N-Up-YColumn rmoveto
527 pages-per-sheet 0 le{exit}if
528 N-Up-XLine N-Up-XColumn sub N-Up-YLine rmoveto
539 /SetHeaderLines{ % nb-lines --
540 /HeaderLines exch def
543 HeaderLines 1 sub HeaderLineHeight mul add
544 HeaderTitleLineHeight add
546 /HeaderHeight exch def
553 % |-+-------| <-- (x y)
557 % |-+-------| <-- (0 0)
561 /HeaderFrameStart{ % -- x y
562 0 PrintHeight HeaderOffset add
566 PrintHeaderWidth 0 rlineto
567 0 HeaderHeight rlineto
568 PrintHeaderWidth neg 0 rlineto
569 0 HeaderHeight neg rlineto
575 % ---- fill a black rectangle (the shadow of the next one)
576 HeaderFrameStart moveto
580 % ---- do the next rectangle ...
581 HeaderFrameStart moveto
583 gsave 0.9 setgray fill grestore % filled with grey
584 gsave 0 setgray stroke grestore % drawn with black
590 exch HeaderPad add exch % horizontal pad
592 HeaderPad add % vertical pad
594 HeaderLineHeight HeaderLines 1 sub mul add
598 dup length 3 -1 roll dup length dup 4 -1 roll add string dup
599 0 5 -1 roll putinterval
600 dup 4 2 roll exch putinterval
604 PageNumber 32 string cvs
607 PageCount 32 string cvs strcat
614 HeaderLinesRight HeaderLinesLeft % -- rightLines leftLines
616 % ---- hack: `PN 1 and' == `PN 2 modulo'
618 % ---- if even page number and duplex, then exchange left and right
619 PageNumber 1 and 0 eq DuplexValue and{exch}if
621 { % ---- process the left lines
628 0 HeaderLineHeight neg rmoveto
633 { % ---- process the right lines
639 PrintHeaderWidth exch sub HeaderPad 2 mul sub 0 rmoveto
642 0 HeaderLineHeight neg rmoveto
651 /sw ( ) stringwidth pop def
652 /aw (01234567890abcdefghijklmnopqrstuvwxyz) dup length exch
653 stringwidth pop exch div def
654 /t1 12 /Helvetica-Oblique DefFont
657 (languagelevel = ) show
658 gs_languagelevel 32 string cvs show
660 0 FontHeight neg rmoveto
666 ( point, the line height is ) show
667 lh 32 string cvs show
668 (, the space width is ) show
669 sw 32 string cvs show
672 0 FontHeight neg rmoveto
674 (and a crude estimate of average character width is ) show
675 aw 32 string cvs show
678 0 FontHeight neg rmoveto
687 { % key = font name value = font dictionary
688 pop 10 exch ReportFontInfo
692 % 3 cm 20 cm moveto 10 /Courier ReportFontInfo showpage
693 % 3 cm 20 cm moveto ReportAllFontInfo showpage
695 % === END ps-print prologue 1