bdftopcf

Convert X font from Bitmap Distribution Format to Portable Compiled Format

brewmacoslinux
Try with needOr install directly
Source

About

Convert X font from Bitmap Distribution Format to Portable Compiled Format

Commands

bdftopcf

Examples

Convert a single BDF font file to PCF format$ bdftopcf myfont.bdf -o myfont.pcf
Convert BDF to PCF with compression$ bdftopcf -o myfont.pcf myfont.bdf
Convert multiple BDF files to PCF format$ for file in *.bdf; do bdftopcf "$file" -o "${file%.bdf}.pcf"; done