Unifoundry.com

Retro PostScript Fonts


Home
GNU Unifont
Unicode Tutorial
Deckmate
Hangul Fonts
Japanese Fonts
Olden
Retro Fonts
Sequoyah
Unibetacode
Utf8gen
Utfcheck
Fontforge Poll
Downloads
Checking .sigs

Retro Type 3 PostScript Fonts

This page contains some retro fonts from classic dot-matrix printers in Type 3 PostScript form. PostScript fonts are fonts written in the PostScript language, designed to integrate with PostScript's font rendering engine. They can be embedded in PostScript files. Type 3 PostScript fonts are the original end user font format. Type 1 fonts follow Adobe's binary string font format (which Adobe kept proprietary initially). Other types exist, but those have been the most common for covering ranges of 256 glyphs or less.

The normal size for the fonts on this web page is 12 pt, which prints at the traditional line spacing of six lines per inch. Each font on this web page has four variants: normal, Bold, Oblique, and BoldOblique. The Bold versions simulate darker appearance with wider "dots", as may have resulted from repeated overprinting of the same character on a device using a printer ribbon. The Oblique forms are skewed at a 12° angle from the vertical, which is the convention with oblique forms of PostScript fonts. The Oblique and BoldOblique forms would not have been possible on the legacy hardware these fonts model; they are included for additional effects and experimentation.

In addition to the normal character range for each font, they also contain glyphs for IBM card punch character set support and to support the deckmate program on this website (in octal and hexadecimal):

\242, 0xA2 cents\263, 0xB3 double dagger
\262, 0xB2 dagger\330, 0xD8 logical not

The cents, dagger, and double dagger code points are the standard PostScript font locations for those glyphs in Times-Roman, Helvetica, and other PostScript fonts. The logical not code point is the location of that glyph in the PostScript Symbol font.

Why PostScript?

Why indeed. Why not some "modern", compact, "much better" binary font format? Well, Type 3 PostScript fonts are PostScript programs written in plain ASCII. Thus these fonts are much easier for someone interested to study directly, learn from, and adapt if desired — I am not aware of any other complete Type 3 PostScript font example anywhere on the Web. Plus I already had created such PostScript fonts stretching back decades that I could dust off to help preserve some of that work. Also, being plain 7-bit ASCII, this font format should have long-term archival permanence for simulating classic printing outputs from a bygone era compared to the ever-changing nature of binary font formats.

How to Use These Fonts

These are PostScript fonts that can be embedded in a PostScript document, Encapsulated PostScript (EPS) file, etc. The font definitions only use PostScript Language Level 1 and are seven-bit clean to maximize their portability. (Note for PostScript experts: the font files use the PostScript setcachedevice operator and provide the original BuildChar procedure as well as the newer BuildGlyph procedure; BuildChar is written to invoke BuildGlyph.)

For best integration, use these fonts in a PostScript file using Adobe's Document Structuring Conventions (DSC) version 2.1 or later. Font files should appear in the file header between a %%BeginSetup%%EndSetup line pair, which should follow the %%EndProlog line. Here is a short example:

      %!PS-Adobe-2.1
      %%Pages: 1
      %%DocumentFonts: DOTwriter DOTwriter-Bold
      %%DocumentSuppliedFonts: DOTwriter DOTwriter-Bold
      %%EndComments
      %%EndProlog
      %%BeginSetup
      [insert PostScript font file "DOTwriter-1.2.ps" here]
      %%EndSetup
      %%Page: 1 1
      /DOTwriter findfont 12 scalefont setfont
      72 688 moveto (Test of DOTwriter font at 12 pt.) show

      /DOTwriter-Bold findfont 12 scalefont setfont
      72 676 moveto (Test of DOTwriter-Bold font at 12 pt.) show
      showpage
      %%Trailer
      %%EOF

You can convert the resulting PostScript file to PDF with ps2pdf or a similar utility. All of the PDF files on this page were created using ps2pdf. Here is the result of converting the above PostScript: sample.pdf (40 kB).

Cardpunch

Cardpunch-.12-thumb.png

The Cardpunch font simulates the dot-matrix printhead of a card punch machine, which would print glyphs along the top of a card corresponding to the card punch code for each column. Punched cards only printed upper-case letters, so some artistic license was taken to add lower-case letter forms. This font renders square dots in a 5 column by 7 row square grid. Four variant fonts are available: Cardpunch, Cardpunch-Bold, Cardpunch-Oblique, and Cardpunch-BoldOblique.

DOTwriter

DOTwriter-1.2-thumb.png

The DOTwriter font simulates the dot-matrix printhead of a Digital Equipment Corporation (DEC) LA36 DECwriter. I created this ASCII font from LA36 printouts of mine. The DECwriter printed round dots in a 7-by-7 grid, but with horizontal dot spacing tighter than vertical dot spacing. The print head consisted of a vertical column of seven heads driven by servos that could only strike impressions in every other column, giving them time to retract fully after striking. This constraint gave the DECwriter glyphs a somewhat unique look. Four variant fonts are available: DOTwriter, DOTwriter-Bold, DOTwriter-Oblique, and DOTwriter-BoldOblique.

DOTwriterAPL — an ISO-IR-68 APL Font

DOTwriterAPL-1.2-thumb.png

The DOTwriterAPL font simulates the dot-matrix printhead of a Digital Equipment Corporation (DEC) LA36 DECwriter with the optional APL character ROM. This LA36 with the APL character set option was also called the LA37. The font renders glyphs according to the ISO-IR-68 standard from the APL Working Group of the Canadian Standards Association, "APL Character Set for Workspace Interchange", 1 June 1983. DEC used this standardized encoding on DEC APL for their TOPS-10 and TOPS-20 systems. You can download a copy of that document here: ISO-IR-68.pdf (672 kB).

The August 1979 manual for DEC APL can be downloaded here: APLSF_Language_Manual.pdf (69 MB).

DOTwriterAPL is the only font family on this web page that defines a glyph for the ".notdef" PostScript character encoding. The glyph is rendered as the APL "squish quad" symbol, which is a narrower form of the APL "quad" symbol.

Special thanks to the Computer History Museum of Mountain View, California, USA for providing me with a scan from a 1985 DEC newsletter showing a DECwriter APL test printout from the APL Special Interest Group (SIG). The overstruck characters in that scan allowed me to verify vertical alignment of all APL glyphs. That along with a copy of the entire DECwriter ISO-IR-68 range in my hard-copy LA36 manual allowed me to adapt the existing DOTwriter font family quickly to create the DOTwriterAPL family. You can see an excerpt from the newsletter here: DECwriter-APL-Test-Print.pdf (280 kB).

Note: The Computer History Museum is closed during the pandemic. This is impacting them financially. If you would like to help, please visit https://computerhistory.org/ways-to-give/ to see the ways you can support them. The CHM is a nonprofit 501(c)(3) organization, and so donations to them are tax deductible for U.S. persons.

Four variant fonts are available: DOTwriterAPL, DOTwriterAPL-Bold, DOTwriterAPL-Oblique, and DOTwriterAPL-BoldOblique.

Exploring PostScript

PostScript is a very powerful, expressive, and efficient graphics description language. I have been using it since writing software for an Apple LaserWriter in 1986 (the first of many). Today PostScript is usually converted into Adobe's PDF file format with programs such as ps2pdf and ghostscript but you can still create your own PostScript programs and then convert them to PDF for display and printing.

The language is very enjoyable when you get used to its postfix command paradigm. If you want to learn more (even if only to better understand what the font files on this page are doing), here are some recommendations.

First, start with Adobe's "Blue" and "Red" books. Then to get a deeper understanding of the inner workings of the PostScript engine, study Adobe's "Green" book. Adobe has many of their documents available as free PDF downloads now, but it is easier learning the language if you have at least the physical Blue and Red books. Here is a synopsis of this triumvirate of books, followed by a few others.

License

The Cardpunch, DOTwriter, and DOTwriterAPL font files on this web page are Copyright © 2020 Paul Hardy and are distributed under the SIL Open Font License version 1.1 (http://scripts.sil.org/OFL). For reference, download the files OFL.txt and OFL-FAQ.txt.

PostScript® is a registered trademark of Adobe Systems, Inc.

Ready-Bye
Valid HTML 4.01 Transitional Valid CSS! Best Viewed with Any Browser