Mercurial > emacs
annotate etc/ps-prin1.ps @ 28857:3ec1142abebd
(cvs-status-minor-wrap): Use mark-active.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 10 May 2000 22:08:28 +0000 |
parents | 8e8534ef4b0a |
children | 66e571cf74c6 |
rev | line source |
---|---|
27165 | 1 % === BEGIN ps-print prologue 1 |
2 | |
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. | |
8 /ISOLatin1Encoding | |
9 StandardEncoding 0 45 getinterval aload pop | |
10 /minus | |
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. | |
15 % 0200 (128) | |
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 | |
20 % 0240 (160) | |
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 | |
29 % 0300 (192) | |
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 | |
38 % 0340 (224) | |
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 | |
47 256 packedarray def | |
48 }ifelse | |
49 | |
50 /reencodeFontISO{ %def | |
51 dup | |
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. | |
54 | |
55 begin % Make the new font the current dictionary. | |
56 | |
57 | |
58 {1 index /FID ne | |
59 {def}{pop pop}ifelse | |
60 }forall % Copy each of the symbols from the old dictionary | |
61 % to the new one except for the font ID. | |
62 | |
63 currentdict /FontType get 0 ne{ | |
64 /Encoding ISOLatin1Encoding def % Override the encoding with | |
65 % the ISOLatin1 encoding. | |
66 }if | |
67 | |
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. | |
71 | |
72 % ^ (x2 y2) | |
73 % | | | |
74 % | v | |
75 % | +----+ - - | |
76 % | | | ^ | |
77 % | | | | Ascent (usually > 0) | |
78 % | | | | | |
79 % (0 0) -> +--+----+--------> | |
80 % | | | | |
81 % | | v Descent (usually < 0) | |
82 % (x1 y1) --> +----+ - - | |
83 | |
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 | |
88 }{ | |
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 | |
93 }ifelse | |
94 | |
95 /FontHeight Ascent Descent sub def % use `sub' because descent < 0 | |
96 | |
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 | |
108 | |
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. | |
113 }bind def | |
114 | |
115 /DefFont{ % Font definition | |
116 findfont exch scalefont reencodeFontISO | |
117 }def | |
118 | |
119 /F{ % Font selection | |
120 findfont | |
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 | |
133 setfont | |
134 }def | |
135 | |
136 /FG /setrgbcolor load def | |
137 | |
138 /bg false def | |
139 /BG{ | |
140 dup /bg exch def | |
141 {mark 4 1 roll ]} | |
142 {[ 1.0 1.0 1.0 ]} | |
143 ifelse | |
144 /bgcolor exch def | |
145 }def | |
146 | |
147 % B width C | |
148 % +-----------+ | |
149 % | Ascent (usually > 0) | |
150 % A + + | |
151 % | Descent (usually < 0) | |
152 % +-----------+ | |
153 % E width D | |
154 | |
155 /dobackground{ % width -- | |
156 currentpoint % -- width x y | |
157 gsave | |
158 newpath | |
159 moveto % A (x y) | |
160 0 Ascent rmoveto % B | |
161 dup 0 rlineto % C | |
162 0 Descent Ascent sub rlineto % D | |
163 neg 0 rlineto % E | |
164 closepath | |
28428
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
165 FillBgColor |
27165 | 166 grestore |
167 }def | |
168 | |
169 /eolbg{ % dobackground until right margin | |
170 PrintWidth % -- x-eol | |
171 currentpoint pop % -- cur-x | |
172 sub % -- width until eol | |
173 dobackground | |
174 }def | |
175 | |
28762
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
176 /PSL{bg{eolbg}if 0 currentpoint exch pop LineHeight sub moveto}def |
27165 | 177 /PLN{PrintLineNumber{doLineNumber}if}def |
178 | |
28762
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
179 /SL{PSL isLineStep pop}def % Soft Linefeed |
27165 | 180 |
28762
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
181 /HL{PSL PLN}def % Hard Linefeed |
27165 | 182 |
183 % Some debug | |
184 /dcp{currentpoint exch 40 string cvs print (, ) print =}def | |
185 /dp{print 2 copy exch 40 string cvs print (, ) print =}def | |
186 | |
187 /W{ | |
188 ( ) stringwidth % Get the width of a space in the current font. | |
189 pop % Discard the Y component. | |
190 mul % Multiply the width of a space | |
191 % by the number of spaces to plot | |
192 bg{dup dobackground}if | |
193 0 rmoveto | |
194 }def | |
195 | |
196 /Effect 0 def | |
197 /EF{/Effect exch def}def | |
198 | |
199 % stack: string |- -- | |
200 % effect: 1 - underline 2 - strikeout 4 - overline | |
201 % 8 - shadow 16 - box 32 - outline | |
202 /S{ | |
203 /xx currentpoint dup Descent add /yy exch def | |
204 Ascent add /YY exch def def | |
205 dup stringwidth pop xx add /XX exch def | |
206 Effect 8 and 0 ne{ | |
207 /yy yy Yshadow add def | |
208 /XX XX Xshadow add def | |
209 }if | |
210 bg{ | |
211 true | |
212 Effect 16 and 0 ne | |
213 {SpaceBackground doBox} | |
214 {xx yy XX YY doRect} | |
215 ifelse | |
216 }if % background | |
217 Effect 16 and 0 ne{false 0 doBox}if % box | |
218 Effect 8 and 0 ne{dup doShadow}if % shadow | |
219 Effect 32 and 0 ne | |
220 {true doOutline} % outline | |
221 {show} % normal text | |
222 ifelse | |
223 Effect 1 and 0 ne{UnderlinePosition Hline}if % underline | |
224 Effect 2 and 0 ne{StrikeoutPosition Hline}if % strikeout | |
225 Effect 4 and 0 ne{OverlinePosition Hline}if % overline | |
226 }bind def | |
227 | |
228 % stack: position |- -- | |
229 /Hline{ | |
230 currentpoint exch pop add dup | |
231 gsave | |
232 newpath | |
233 xx exch moveto | |
234 XX exch lineto | |
235 closepath | |
236 LineThickness setlinewidth stroke | |
237 grestore | |
238 }bind def | |
239 | |
240 % stack: fill-or-not delta |- -- | |
241 /doBox{ | |
242 /dd exch def | |
243 xx XBox sub dd sub yy YBox sub dd sub | |
244 XX XBox add dd add YY YBox add dd add | |
245 doRect | |
246 }bind def | |
247 | |
248 % stack: fill-or-not lower-x lower-y upper-x upper-y |- -- | |
249 /doRect{ | |
250 /rYY exch def | |
251 /rXX exch def | |
252 /ryy exch def | |
253 /rxx exch def | |
254 gsave | |
255 newpath | |
256 rXX rYY moveto | |
257 rxx rYY lineto | |
258 rxx ryy lineto | |
259 rXX ryy lineto | |
260 closepath | |
261 % top of stack: fill-or-not | |
262 {FillBgColor} | |
263 {LineThickness setlinewidth stroke} | |
264 ifelse | |
265 grestore | |
266 }bind def | |
267 | |
268 % stack: string |- -- | |
269 /doShadow{ | |
270 gsave | |
271 Xshadow Yshadow rmoveto | |
272 false doOutline | |
273 grestore | |
274 }bind def | |
275 | |
276 /st 1 string def | |
277 | |
278 % stack: string fill-or-not |- -- | |
279 /doOutline{ | |
280 /-fillp- exch def | |
281 /-ox- currentpoint /-oy- exch def def | |
282 gsave | |
283 LineThickness setlinewidth | |
284 {st 0 3 -1 roll put | |
285 st dup true charpath | |
286 -fillp- {gsave FillBgColor grestore}if | |
287 stroke stringwidth | |
288 -oy- add /-oy- exch def | |
289 -ox- add /-ox- exch def | |
290 -ox- -oy- moveto | |
291 }forall | |
292 grestore | |
293 -ox- -oy- moveto | |
294 }bind def | |
295 | |
296 % stack: -- | |
297 /FillBgColor{bgcolor aload pop setrgbcolor fill}bind def | |
298 | |
299 /L0 6 /Times-Italic DefFont | |
300 | |
28762
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
301 % stack: -- |- boolean |
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
302 /isLineStep{ |
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
303 SyncLineZebra |
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
304 {PrintLineStep 1 gt |
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
305 {/PrintLineStep PrintLineStep 1 sub def false} % or inside zebra |
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
306 {/PrintLineStep ZebraHeight def true}ifelse} % or 1st zebra line |
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
307 {LineNumber 1 sub PrintLineStep mod 0 eq}ifelse % or line step |
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
308 }def |
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
309 |
27165 | 310 % stack: -- |
311 /doLineNumber{ | |
312 /LineNumber where | |
28762
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
313 {pop |
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
314 isLineStep % or line step |
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
315 LineNumber Lines ge or % or last line |
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
316 {currentfont |
27165 | 317 gsave |
318 0.0 0.0 0.0 setrgbcolor | |
319 /L0 findfont setfont | |
320 LineNumber Lines ge | |
28762
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
321 {(end )} |
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
322 {LineNumber 6 string cvs ( ) strcat}ifelse |
27165 | 323 dup stringwidth pop neg 0 rmoveto |
324 show | |
325 grestore | |
28762
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
326 setfont}if |
27165 | 327 /LineNumber LineNumber 1 add def |
328 }if | |
329 }def | |
330 | |
28428
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
331 % stack: color-specifier |- -- |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
332 /SetColor{dup type /realtype eq{setgray}{aload pop setrgbcolor}ifelse}def |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
333 |
27165 | 334 % stack: -- |
335 /printZebra{ | |
336 gsave | |
28428
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
337 ZebraColor SetColor |
27165 | 338 /double-zebra ZebraHeight ZebraHeight add def |
339 /yiter double-zebra LineHeight mul neg def | |
340 /xiter PrintWidth InterColumn add def | |
341 NumberOfColumns{LinesPerColumn doColumnZebra xiter 0 rmoveto}repeat | |
342 grestore | |
343 }def | |
344 | |
345 % stack: lines-per-column |- -- | |
346 /doColumnZebra{ | |
347 gsave | |
348 dup double-zebra idiv{ZebraHeight doZebra 0 yiter rmoveto}repeat | |
349 double-zebra mod | |
350 dup 0 le{pop}{dup ZebraHeight gt {pop ZebraHeight}if doZebra}ifelse | |
351 grestore | |
352 }def | |
353 | |
354 % stack: zebra-height (in lines) |- -- | |
355 /doZebra{ | |
356 /zh exch 0.05 sub LineHeight mul def | |
357 gsave | |
358 0 LineHeight 0.65 mul rmoveto | |
359 PrintWidth 0 rlineto | |
360 0 zh neg rlineto | |
361 PrintWidth neg 0 rlineto | |
362 0 zh rlineto | |
363 fill | |
364 grestore | |
365 }def | |
366 | |
28428
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
367 % stack: -- |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
368 /printBackground{ |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
369 /BackgroundColor where{ |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
370 pop gsave BackgroundColor SetColor |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
371 NumberOfColumns{ |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
372 gsave |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
373 0 LineHeight 0.65 mul rmoveto |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
374 PrintWidth 0 rlineto |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
375 0 PrintHeight neg rlineto |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
376 PrintWidth neg 0 rlineto |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
377 0 PrintHeight rlineto |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
378 fill |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
379 grestore |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
380 PrintWidth InterColumn add 0 rmoveto |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
381 }repeat |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
382 grestore |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
383 }if |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
384 }def |
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
385 |
27165 | 386 % tx ty rotation xscale yscale xpos ypos BeginBackImage |
387 /BeginBackImage{ | |
388 /-save-image- save def | |
389 /showpage{}def | |
390 translate | |
391 scale | |
392 rotate | |
393 translate | |
394 }def | |
395 | |
396 /EndBackImage{-save-image- restore}def | |
397 | |
398 % string fontsize fontname rotation gray xpos ypos ShowBackText | |
399 /ShowBackText{ | |
400 gsave | |
401 translate | |
402 setgray | |
403 rotate | |
404 findfont exch dup /-offset- exch -0.25 mul def scalefont setfont | |
405 0 -offset- moveto | |
406 /-saveLineThickness- LineThickness def | |
407 /LineThickness 1 def | |
408 false doOutline | |
409 /LineThickness -saveLineThickness- def | |
410 grestore | |
411 }def | |
412 | |
413 /BeginDoc{ | |
414 % ---- Remember space width of the normal text font `f0'. | |
415 /SpaceWidth /f0 findfont setfont ( ) stringwidth pop def | |
416 % ---- save the state of the document (useful for ghostscript!) | |
417 /docState save def | |
418 % ---- [andrewi] set PageSize based on chosen dimensions | |
419 UseSetpagedevice{ | |
28762
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
420 BMark /PageSize [PageWidth LandscapePageHeight] EMark setpagedevice |
27165 | 421 }{ |
422 LandscapeMode{ | |
423 % ---- translate to bottom-right corner of Portrait page | |
424 LandscapePageHeight 0 translate | |
425 90 rotate | |
426 }if | |
427 }ifelse | |
428 % ---- [jack] Kludge: my ghostscript window is 21x27.7 instead of 21x29.7 | |
429 /JackGhostscript where{pop 1 27.7 29.7 div scale}if | |
28762
8e8534ef4b0a
PostScript level 1 compatibility, Upside-down
Gerd Moellmann <gerd@gnu.org>
parents:
28428
diff
changeset
|
430 UpsideDown{PageWidth LandscapePageHeight translate 180 rotate}if |
27165 | 431 % ---- N-Up printing |
432 N-Up 1 gt{ | |
433 % ---- landscape | |
434 N-Up-Landscape{ | |
435 PageWidth 0 translate | |
436 90 rotate | |
437 }if | |
438 N-Up-Margin dup translate | |
439 % ---- scale | |
440 LandscapeMode{ | |
441 /HH PageWidth def | |
442 /WW LandscapePageHeight def | |
443 }{ | |
444 /HH LandscapePageHeight def | |
445 /WW PageWidth def | |
446 }ifelse | |
447 WW N-Up-Margin sub N-Up-Margin sub | |
448 N-Up-Landscape | |
449 {N-Up-Lines div HH}{N-Up-Columns N-Up-Missing add div WW}ifelse | |
450 div dup scale | |
451 0 N-Up-Repeat 1 sub LandscapePageHeight mul translate | |
452 % ---- go to start position in page matrix | |
453 N-Up-XStart N-Up-Missing 0.5 mul | |
454 LandscapeMode{ | |
455 LandscapePageHeight mul N-Up-YStart add | |
456 }{ | |
457 PageWidth mul add N-Up-YStart | |
458 }ifelse | |
459 translate | |
460 }if | |
461 /ColumnWidth PrintWidth InterColumn add def | |
462 % ---- translate to lower left corner of TEXT | |
463 LeftMargin BottomMargin translate | |
464 % ---- define where printing will start | |
465 /f0 F % this installs Ascent | |
466 /PrintStartY PrintHeight Ascent sub def | |
467 /ColumnIndex 1 def | |
468 /N-Up-Counter N-Up-End 1 sub def | |
469 }def | |
470 | |
471 /EndDoc{ | |
472 % ---- restore the state of the document (useful for ghostscript!) | |
473 docState restore | |
474 }def | |
475 | |
476 /BeginDSCPage{ | |
477 % ---- when 1st column, save the state of the page | |
478 ColumnIndex 1 eq{ | |
479 /pageState save def | |
480 }if | |
481 % ---- save the state of the column | |
482 /columnState save def | |
483 }def | |
484 | |
485 /PrintHeaderWidth PrintOnlyOneHeader{PrintPageWidth}{PrintWidth}ifelse def | |
486 | |
487 /BeginPage{ | |
488 % ---- when 1st column, print all background effects | |
489 ColumnIndex 1 eq{ | |
490 0 PrintStartY moveto % move to where printing will start | |
28428
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
491 printBackground |
27165 | 492 Zebra {printZebra}if |
493 printGlobalBackground | |
494 printLocalBackground | |
495 }if | |
496 PrintHeader{ | |
497 PrintOnlyOneHeader{ColumnIndex 1 eq}{true}ifelse{ | |
498 PrintHeaderFrame{HeaderFrame}if | |
499 HeaderText | |
500 }if | |
501 }if | |
502 0 PrintStartY moveto % move to where printing will start | |
503 PLN | |
504 }def | |
505 | |
506 /EndPage{bg{eolbg}if}def | |
507 | |
508 /EndDSCPage{ | |
509 ColumnIndex NumberOfColumns eq{ | |
510 % ---- restore the state of the page | |
511 pageState restore | |
512 /ColumnIndex 1 def | |
513 % ---- N-up printing | |
514 N-Up 1 gt{ | |
515 N-Up-Counter 0 gt{ | |
516 % ---- Next page on same row | |
517 /N-Up-Counter N-Up-Counter 1 sub def | |
518 N-Up-XColumn N-Up-YColumn | |
519 }{ | |
520 % ---- Next page on next line | |
521 /N-Up-Counter N-Up-End 1 sub def | |
522 N-Up-XLine N-Up-YLine | |
523 }ifelse | |
524 translate | |
525 }if | |
526 }{ % else | |
527 % ---- restore the state of the current column | |
528 columnState restore | |
529 % ---- and translate to the next column | |
530 ColumnWidth 0 translate | |
531 /ColumnIndex ColumnIndex 1 add def | |
532 }ifelse | |
533 }def | |
534 | |
535 % stack: number-of-pages-per-sheet |- -- | |
536 /BeginSheet{ | |
537 /sheetState save def | |
538 /pages-per-sheet exch def | |
539 % ---- N-up printing | |
540 N-Up 1 gt N-Up-Border and pages-per-sheet 0 gt and{ | |
541 % ---- page border | |
542 gsave | |
543 0 setgray | |
544 LeftMargin neg BottomMargin neg moveto | |
545 N-Up-Repeat | |
546 {N-Up-End | |
547 {gsave | |
548 PageWidth 0 rlineto | |
549 0 LandscapePageHeight rlineto | |
550 PageWidth neg 0 rlineto | |
551 closepath stroke | |
552 grestore | |
553 /pages-per-sheet pages-per-sheet 1 sub def | |
554 pages-per-sheet 0 le{exit}if | |
555 N-Up-XColumn N-Up-YColumn rmoveto | |
556 }repeat | |
557 pages-per-sheet 0 le{exit}if | |
558 N-Up-XLine N-Up-XColumn sub N-Up-YLine rmoveto | |
559 }repeat | |
560 grestore | |
561 }if | |
562 }def | |
563 | |
564 /EndSheet{ | |
565 showpage | |
566 sheetState restore | |
567 }def | |
568 | |
569 /SetHeaderLines{ % nb-lines -- | |
570 /HeaderLines exch def | |
571 % ---- bottom up | |
572 HeaderPad | |
573 HeaderLines 1 sub HeaderLineHeight mul add | |
574 HeaderTitleLineHeight add | |
575 HeaderPad add | |
576 /HeaderHeight exch def | |
577 }def | |
578 | |
579 % |---------| | |
580 % | tm | | |
581 % |---------| | |
582 % | header | | |
583 % |-+-------| <-- (x y) | |
584 % | ho | | |
585 % |---------| | |
586 % | text | | |
587 % |-+-------| <-- (0 0) | |
588 % | bm | | |
589 % |---------| | |
590 | |
591 /HeaderFrameStart{ % -- x y | |
592 0 PrintHeight HeaderOffset add | |
593 }def | |
594 | |
595 /HeaderFramePath{ | |
596 PrintHeaderWidth 0 rlineto | |
597 0 HeaderHeight rlineto | |
598 PrintHeaderWidth neg 0 rlineto | |
599 0 HeaderHeight neg rlineto | |
600 }def | |
601 | |
602 /HeaderFrame{ | |
603 gsave | |
604 0.4 setlinewidth | |
605 % ---- fill a black rectangle (the shadow of the next one) | |
606 HeaderFrameStart moveto | |
607 1 -1 rmoveto | |
608 HeaderFramePath | |
609 0 setgray fill | |
610 % ---- do the next rectangle ... | |
611 HeaderFrameStart moveto | |
612 HeaderFramePath | |
613 gsave 0.9 setgray fill grestore % filled with grey | |
614 gsave 0 setgray stroke grestore % drawn with black | |
615 grestore | |
616 }def | |
617 | |
618 /HeaderStart{ | |
619 HeaderFrameStart | |
620 exch HeaderPad add exch % horizontal pad | |
621 % ---- bottom up | |
622 HeaderPad add % vertical pad | |
623 HeaderDescent sub | |
624 HeaderLineHeight HeaderLines 1 sub mul add | |
625 }def | |
626 | |
627 /strcat{ | |
628 dup length 3 -1 roll dup length dup 4 -1 roll add string dup | |
629 0 5 -1 roll putinterval | |
630 dup 4 2 roll exch putinterval | |
631 }def | |
632 | |
633 /pagenumberstring{ | |
634 PageNumber 32 string cvs | |
635 ShowNofN{ | |
636 (/) strcat | |
637 PageCount 32 string cvs strcat | |
638 }if | |
639 }def | |
640 | |
641 /HeaderText{ | |
642 HeaderStart moveto | |
643 | |
644 HeaderLinesRight HeaderLinesLeft % -- rightLines leftLines | |
645 | |
646 % ---- hack: `PN 1 and' == `PN 2 modulo' | |
647 | |
648 % ---- if even page number and duplex, then exchange left and right | |
649 PageNumber 1 and 0 eq DuplexValue and{exch}if | |
650 | |
651 { % ---- process the left lines | |
652 aload pop | |
653 exch F | |
654 gsave | |
655 dup xcheck{exec}if | |
656 show | |
657 grestore | |
658 0 HeaderLineHeight neg rmoveto | |
659 }forall | |
660 | |
661 HeaderStart moveto | |
662 | |
663 { % ---- process the right lines | |
664 aload pop | |
665 exch F | |
666 gsave | |
667 dup xcheck{exec}if | |
668 dup stringwidth pop | |
669 PrintHeaderWidth exch sub HeaderPad 2 mul sub 0 rmoveto | |
670 show | |
671 grestore | |
672 0 HeaderLineHeight neg rmoveto | |
673 }forall | |
674 }def | |
675 | |
676 /ReportFontInfo{ | |
677 2 copy | |
678 /t0 3 1 roll DefFont | |
679 /t0 F | |
680 /lh FontHeight def | |
681 /sw ( ) stringwidth pop def | |
682 /aw (01234567890abcdefghijklmnopqrstuvwxyz) dup length exch | |
683 stringwidth pop exch div def | |
684 /t1 12 /Helvetica-Oblique DefFont | |
685 /t1 F | |
686 gsave | |
687 (languagelevel = ) show | |
28428
b2d43a699564
Replace gs_languagelevel by languagelevel.
Gerd Moellmann <gerd@gnu.org>
parents:
28284
diff
changeset
|
688 languagelevel 32 string cvs show |
27165 | 689 grestore |
690 0 FontHeight neg rmoveto | |
691 gsave | |
692 (For ) show | |
693 128 string cvs show | |
694 ( ) show | |
695 32 string cvs show | |
696 ( point, the line height is ) show | |
697 lh 32 string cvs show | |
698 (, the space width is ) show | |
699 sw 32 string cvs show | |
700 (,) show | |
701 grestore | |
702 0 FontHeight neg rmoveto | |
703 gsave | |
704 (and a crude estimate of average character width is ) show | |
705 aw 32 string cvs show | |
706 (.) show | |
707 grestore | |
708 0 FontHeight neg rmoveto | |
709 }def | |
710 | |
711 /cm{ % cm to point | |
712 72 mul 2.54 div | |
713 }def | |
714 | |
715 /ReportAllFontInfo{ | |
716 FontDirectory | |
717 { % key = font name value = font dictionary | |
718 pop 10 exch ReportFontInfo | |
719 }forall | |
720 }def | |
721 | |
722 % 3 cm 20 cm moveto 10 /Courier ReportFontInfo showpage | |
723 % 3 cm 20 cm moveto ReportAllFontInfo showpage | |
724 | |
725 % === END ps-print prologue 1 |