Home Forums Nazca OCR B font Reply To: OCR B font

#6736
Xaveer
Moderator

Dear Lorenzo,

The order should not matter. It is a dictionaly lookup. You use a different font by specifying something like my_font = nd.Font(‘my_font_file’) and then my_font.text() should write the proper text. my_font_file.nft can be in your current directory, or you can specify the full path to the font file.

You can get a sample of all characters in a font with my_font.sample(height=50).put() or a string with all characters in your font via my_font.characters()

Hope that helps.

Xaveer