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"
46 " { pop globaldict /?pdfmark /exec load put }\n"
47 " { globaldict begin\n"
48 " /?pdfmark /pop load def\n"
49 " /pdfmark /cleartomark load def\n"
54 "/w {neg moveto show} bind def\n"
55 "/m {neg moveto} bind def\n"
56 "/g {neg moveto {glyphshow} forall} bind def\n"
57 "/rgb {255 div 3 1 roll 255 div 3 1 roll 255 div 3 1 roll setrgbcolor} bind def\n"
58 "/rot {/y exch def /x exch def x y neg translate rotate x neg y translate} bind def\n"
59 "/done {/lastpage where {pop lastpage} if} def\n"
61 "% caching fonts, as selectfont is supposed to be doing\n"
62 "/fncache 16 dict def\n"
63 "/selectfont_append { fncache exch dup findfont put } bind def\n"
64 "/selectfont_cached {\n"
65 " exch dup fncache exch known not { dup selectfont_append } if\n"
66 " fncache exch get exch scalefont setfont\n"
69 " exch dup 3 1 roll scaling div selectfont_cached\n"
70 " linewidth mul scaling 10 mul div setlinewidth\n"
73 "/savedmatrix matrix def\n"
78 " savedmatrix currentmatrix pop scale\n"
79 " .5 0 rmoveto currentpoint .5 0 rmoveto .5 0 360 arc\n"
80 " savedmatrix setmatrix\n"
87 " currentpoint dy1 neg add exch dx1 add exch\n"
88 " dx1 dx1 mul dy1 dy1 mul add sqrt\n"
100 " x0 5 x1 mul add 6 div\n"
101 " y0 5 y1 mul add -6 div\n"
102 " x2 5 x1 mul add 6 div\n"
103 " y2 5 y1 mul add -6 div\n"
105 " y1 y2 add -2 div\n"
108 "% including EPS files\n"
110 " /epsf_state save def\n"
112 " div 3 1 roll div exch scale\n"
113 " neg exch neg exch translate\n"
114 " /dict_count countdictstack def\n"
115 " /op_count count 1 sub def\n"
117 " /showpage { } def\n"
118 " 0 setgray 0 setlinecap 1 setlinewidth 0 setlinejoin\n"
119 " 10 setmiterlimit [ ] 0 setdash newpath\n"
122 " count op_count sub {pop} repeat\n"
123 " countdictstack dict_count sub {end} repeat\n"
124 " epsf_state restore\n"
127 /* pagewidth and pageheight are in tenths of a millimetre */
128 void ps_header(int pagewidth
, int pageheight
, int linewidth
)
130 out("%%!PS-Adobe-2.0\n");
131 out("%%%%Version: 1.0\n");
132 out("%%%%Creator: Neatroff - http://litcave.rudi.ir/\n");
133 out("%%%%DocumentFonts: (atend)\n");
134 out("%%%%Pages: (atend)\n");
135 out("%%%%EndComments\n");
137 out("%%%%BeginProlog\n");
138 out("/resolution %d def\n", dev_res
);
139 out("/pagesize [%d %d] def\n", (pagewidth
* 72 + 127) / 254,
140 (pageheight
* 72 + 127) / 254);
141 out("/linewidth %d.%02d def\n\n", linewidth
/ 100, linewidth
% 100);
143 out("%%%%EndProlog\n");
144 out("%%%%BeginSetup\n");
145 out("<< /PageSize pagesize /ImagingBBox null >> setpagedevice\n");
148 out("%%%%EndSetup\n");