home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-10-06 | 699 b | 38 lines | [TEXT/Ack?] |
- % Example from page 98 of the
- % Adobe PostScript Language Tutorial and Cookbook.
- % ©1985 Adobe Systems Incorporated.
-
- % ----- Procedures ------
-
- /Helvetica-Bold findfont 30 scalefont setfont
-
- /oshow % stack: (string)
- {true charpath stroke} def
-
- /circleofAdobe
- { 15 15 345
- { gsave
- rotate 0 0 moveto
- (Adobe) oshow
- grestore
- } for
- }def
-
- % --- Begin Program ---
-
- 250 400 translate
-
- .5 setlinewidth
- circleofAdobe
-
- 0 0 moveto
- (Adobe Systems) true charpath
- gsave 1 setgray fill grestore
- stroke
-
- % We don't execute the showpage below because PrClosePage does a final showpage for us.
- % Executing this one would cause the PrClosePage showpage to print an (extra) blank page.
-
- % showpage
-
-