5 out("%%%%Page: %d %d\n", n
, n
);
6 out("/saveobj save def\n");
8 out("%d pagesetup\n", n
);
11 void ps_pageend(int n
)
15 out("saveobj restore\n");
18 void ps_trailer(int pages
, char *fonts
)
22 out("%%%%DocumentFonts: %s\n", fonts
);
23 out("%%%%Pages: %d\n", pages
);
29 " counttomark 2 idiv {def} repeat pop\n"
30 " /scaling 72 resolution div def\n"
31 " linewidth setlinewidth\n"
33 " 0 pagesize 1 get translate\n"
34 " scaling scaling scale\n"
40 " currentdict /pagedict known currentdict page known and {\n"
41 " page load pagedict exch get cvx exec\n"
45 "/w {neg moveto show} bind def\n"
46 "/m {neg moveto} bind def\n"
47 "/g {neg moveto {glyphshow} forall} bind def\n"
48 "/rgb {255 div 3 1 roll 255 div 3 1 roll 255 div 3 1 roll setrgbcolor} bind def\n"
49 "/done {/lastpage where {pop lastpage} if} def\n"
51 "% caching fonts, as selectfont is supposed to be doing\n"
52 "/fncache 16 dict def\n"
53 "/selectfont_append { fncache exch dup findfont put } bind def\n"
54 "/selectfont_cached {\n"
55 " exch dup fncache exch known not { dup selectfont_append } if\n"
56 " fncache exch get exch scalefont setfont\n"
59 " exch dup 3 1 roll scaling div selectfont_cached\n"
60 " linewidth mul scaling 10 mul div setlinewidth\n"
63 "/savedmatrix matrix def\n"
68 " savedmatrix currentmatrix pop scale\n"
69 " .5 0 rmoveto currentpoint .5 0 rmoveto .5 0 360 arc\n"
70 " savedmatrix setmatrix\n"
77 " currentpoint dy1 neg add exch dx1 add exch\n"
78 " dx1 dx1 mul dy1 dy1 mul add sqrt\n"
90 " x0 5 x1 mul add 6 div\n"
91 " y0 5 y1 mul add -6 div\n"
92 " x2 5 x1 mul add 6 div\n"
93 " y2 5 y1 mul add -6 div\n"
99 void ps_header(int pagewidth
, int pageheight
, int linewidth
)
101 out("%%!PS-Adobe-2.0\n");
102 out("%%%%Version: 1.0\n");
103 out("%%%%Creator: neatroff - http://litcave.rudi.ir/\n");
104 out("%%%%DocumentFonts: (atend)\n");
105 out("%%%%Pages: (atend)\n");
106 out("%%%%EndComments\n");
108 out("%%%%BeginProlog\n");
109 out("/resolution %d def\n", dev_res
);
110 out("/pagesize [%d %d] def\n", (pagewidth
* 720 + 127) / 254,
111 (pageheight
* 720 + 127) / 254);
112 out("/linewidth %d.%02d def\n\n", linewidth
/ 100, linewidth
% 100);
114 out("%%%%EndProlog\n");
115 out("%%%%BeginSetup\n");
116 out("<< /PageSize pagesize /ImagingBBox null >> setpagedevice\n");
119 out("%%%%EndSetup\n");