Created
February 26, 2022 03:17
-
-
Save gwollman/a637eb3fb7e5ee61624426b7698e4b7d to your computer and use it in GitHub Desktop.
A trivial program to generate type samples of the standard PostScript fonts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%!PS- | |
/fonts [ /Bookman-Light /Times-Roman /Palatino-Roman /NewCenturySchlbk-Roman | |
/AvantGarde-Book /ZapfChancery-MediumItalic /Courier /Helvetica | |
/Symbol /ZapfDingbats ] def | |
/size 36 def | |
/leading 12 def | |
/showit { | |
dup | |
findfont size scalefont setfont | |
( ) cvs | |
gsave show grestore | |
0 size leading add rmoveto | |
} def | |
50 50 moveto | |
fonts { showit } forall | |
showpage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment