2

Let's say the font is a .fon or .fnt, could I embed these in a webpage? Is there a particular format for embedding a raster font?

TriforceOfKirby
  • 181
  • 1
  • 1
  • 10

2 Answers2

1

Unfortunately, there's no way to do this today. But while the technology is still in its infancy, multicolor fonts are coming to browsers. This would allow you to convert those bitmap formats to plain OpenType TTFs. All but Microsoft's proposal would allow for bitmap/raster fonts to be used.

This technology already works in current versions Firefox on all platforms. Support in other browsers is coming.

RoelN
  • 2,181
  • 13
  • 15
0

Support to font embedding via @font-face covers EOT (IE only), WOFF, SVG, and TTF/OTF. So the font files would need to be converted to at least one of these formats (and, for best browser coverage, all of them).

Jukka K. Korpela
  • 195,524
  • 37
  • 270
  • 390
  • Ok thank you, so do you know of a website/program that can convert a raster font to those formats? Or I also have a bitmap image of the font if that can be converted. – TriforceOfKirby May 30 '14 at 23:13