Search found 2 matches
- 2017-10-16T15:51:39-07:00
- Forum: Bugs
- Topic: ImageMagick incorrectly renders text using BDF font files.
- Replies: 5
- Views: 7090
Re: ImageMagick incorrectly renders text using BDF font files.
BDF is supported by freetype, which I believe ImageMagick uses. Code for the driver appears to be here: https://github.com/ImageMagick/ttf/tree/master/src/bdf? It can certainly load the font file as the correct characters do appear.
- 2017-10-16T12:32:51-07:00
- Forum: Bugs
- Topic: ImageMagick incorrectly renders text using BDF font files.
- Replies: 5
- Views: 7090
ImageMagick incorrectly renders text using BDF font files.
I'm trying to render text using the following command-line: convert -font unifont.bdf -pointsize 16 label:"Test" test.png The text renders but the characters are all overlayed rather than advancing along the x-axis. The BDF font in question came from here: http://unifoundry.com/pub/unifont-10.0.06 ...