(4 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
In order to continue to use bitmap font with pango, | In order to continue to use bitmap font with pango, | ||
please use the fonttosfnt tool to convert the font. | please use the fonttosfnt tool to convert the font. | ||
== Details == | |||
Please install the latest package xorg-x11-font-utils and freetype-demos in Fedora 31. | |||
We will use some python script to help the conversion. | |||
URL: https://ndim.fedorapeople.org/stuff/bitmapfonts2otb/bitmapfonts2otb.py | |||
Here are two ways to convert the fonts: | |||
1. Convert one BDF/PCF font to one OTB font | |||
2. Combine the BDF/PCF fonts into one OTB font with the same family and style name | |||
Currently we prefer the second method, but sometimes it will make | |||
the bitmap font not monospaced; if this problem happens, | |||
please try the first method. | |||
== Take the Terminus font as example == | == Take the Terminus font as example == | ||
=== Steps === | === Steps === | ||
1. Install fonttosfnt | 1. Install fonttosfnt and ftdump in Fedora 31 | ||
2. Convert the font with bitmapfonts2otb.py | |||
$ | $ python3 bitmapfonts2otb.py ../terminus-fonts/ter-*.pcf.gz | ||
3. remove the terminus-fonts package and install the | 3. remove the terminus-fonts package and install the Terminus.otb and Terminus-Bold.otb fonts | ||
4. re-login the desktop and use the "Terminus" font | 4. re-login the desktop and use the "Terminus" font | ||
Line 25: | Line 39: | ||
=== Commands for the ucs-miscfixed-fonts font === | === Commands for the ucs-miscfixed-fonts font === | ||
$ | <nowiki> | ||
$ for i in `ls ../ucs-miscfixed/*.bdf`; | |||
do fonttosfnt -v -b -c -g 2 -m 2 -o ${i%%.bdf}.otb $i; | |||
done | |||
</nowiki> | |||
=== Commands for the terminus-fonts font === | === Commands for the terminus-fonts font === | ||
$ | $ python3 bitmapfonts2otb.py ../terminus-fonts/ter-*.pcf.gz | ||
=== Commands for the bitmap-lucida-typewriter-fonts font === | === Commands for the bitmap-lucida-typewriter-fonts font === | ||
$ | $ python3 bitmapfonts2otb.py ../bitmap-lucida-typewriter-fonts/lut*.pcf.gz | ||
Latest revision as of 03:33, 10 February 2020
How to convert Bitmap Font to OpenType Bitmap Font
In Fedora 31, pango is upgraded to 1.44 and switch to use harfbuzz.
In order to continue to use bitmap font with pango, please use the fonttosfnt tool to convert the font.
Details
Please install the latest package xorg-x11-font-utils and freetype-demos in Fedora 31.
We will use some python script to help the conversion.
URL: https://ndim.fedorapeople.org/stuff/bitmapfonts2otb/bitmapfonts2otb.py
Here are two ways to convert the fonts:
1. Convert one BDF/PCF font to one OTB font
2. Combine the BDF/PCF fonts into one OTB font with the same family and style name
Currently we prefer the second method, but sometimes it will make the bitmap font not monospaced; if this problem happens, please try the first method.
Take the Terminus font as example
Steps
1. Install fonttosfnt and ftdump in Fedora 31
2. Convert the font with bitmapfonts2otb.py
$ python3 bitmapfonts2otb.py ../terminus-fonts/ter-*.pcf.gz
3. remove the terminus-fonts package and install the Terminus.otb and Terminus-Bold.otb fonts
4. re-login the desktop and use the "Terminus" font
Commands for the ucs-miscfixed-fonts font
$ for i in `ls ../ucs-miscfixed/*.bdf`; do fonttosfnt -v -b -c -g 2 -m 2 -o ${i%%.bdf}.otb $i; done
Commands for the terminus-fonts font
$ python3 bitmapfonts2otb.py ../terminus-fonts/ter-*.pcf.gz
Commands for the bitmap-lucida-typewriter-fonts font
$ python3 bitmapfonts2otb.py ../bitmap-lucida-typewriter-fonts/lut*.pcf.gz