Japanese | English | Time-stamp "Feb 11 2002" |
Here are my softwares:
This tool extract bitmap data from a TrueType font file when the file has embedded bitmaps.
TrueType files that have bitmaps are limited. The author found 'Lucida Console' (lucon.ttf) in Windows98 is the one.
Output files are named '<fontname>-??px.bdf'. '??px' means 'pixel' (screen size), not 'point' (print-to-paper size).
TrueTypeCollection (TTC) files are not supported, but you can divide one TTC file into some TTF files with ftp://ftp.microsoft.com/developr/drg/truetype/ttsdk.zip
pronounced 'es bit get'.
contains a binary for Windows, and a sourcecode for Unix/Windows.
http://www.vector.co.jp/soft/dl/win95/util/s0227531.html
$ sbitget truetypefontfile
Output BDF-format files are NOT a real BDF files. Character-code information and glyph's encoding numbers are missing in these files.
( 'glyphID:xxxx' means index numbers used inside the TrueType font. TrueType 'cmap' table combines these numbers with character-encoding numbers. This software don't read 'cmap' table.)
If you want to use these files, please modify 'ENCODING ####' by your own (with Perl script, for example).
The bdf2bmp utility creates a BMP-image-file containing all the glyph-images in a BDF-font-file. That BMP file is a kind of Windows-type, 256 colors(8bitsPerPixel).
contains a binary for Windows, and a sourcecode for Unix/Windows.
http://www.vector.co.jp/soft/dl/win95/writing/s0175608.html
When you input
$ bdf2bmp courR18.bdf courR18.bmp
You will get this image
set a width of spacing = 3pixel, columns in one line = 16 glyphs
$ bdf2bmp -s3 -c16 courR18.bdf courR18.bmp
set glyph's widths showed
$ bdf2bmp -w xc/fonts/bdf/75dpi/timI18.bdf s.bmp
Working with 'bdf2bmp' (above), the bmp2bdf utility (this tool) enables you to modify glyphs in a BDF-font-file. See Example.
contains a binary for Windows, and a sourcecode for Unix/Windows.
http://www.vector.co.jp/soft/dl/win95/writing/s0179702.html