Difference between revisions of "ImageFontFormat"

(Clarify the role of separator color)
m
Line 1: Line 1:
The imagefont file is an image file in a format that Löve can load. It can contain transparent pixels, so a PNG file is preferable, and it also needs to contain spacer color that will separate the different font glyphs.
+
The imagefont file is an image file in a format that LÖVE can load. It can contain transparent pixels, so a PNG file is preferable, and it also needs to contain spacer color that will separate the different font glyphs.
  
 
The ''upper left pixel'' of the image file is always taken to be the spacer color. All columns that have this color as their uppermost pixel are interpreted as separators of font glyphs. The areas between these separators are interpreted as the actual font glyphs.
 
The ''upper left pixel'' of the image file is always taken to be the spacer color. All columns that have this color as their uppermost pixel are interpreted as separators of font glyphs. The areas between these separators are interpreted as the actual font glyphs.
 
The width of the separator area after a particular font glyph sets the amount of space that goes after the glyph. It is currently not possible to add negative spacing for a character.
 
  
 
It is possible to have more areas in the image than are required for the font in the [[love.graphics.newImageFont]]() call. The extra areas are ignored.
 
It is possible to have more areas in the image than are required for the font in the [[love.graphics.newImageFont]]() call. The extra areas are ignored.
  
TODO: Upload a PoT sample image that works on every computer.
+
In versions prior to [[0.10.0]] the width of the separator area after a particular font glyph sets the amount of space that goes after the glyph. It is currently not possible to add negative spacing for a character.
  
 
== See Also ==
 
== See Also ==

Revision as of 08:38, 19 November 2015

The imagefont file is an image file in a format that LÖVE can load. It can contain transparent pixels, so a PNG file is preferable, and it also needs to contain spacer color that will separate the different font glyphs.

The upper left pixel of the image file is always taken to be the spacer color. All columns that have this color as their uppermost pixel are interpreted as separators of font glyphs. The areas between these separators are interpreted as the actual font glyphs.

It is possible to have more areas in the image than are required for the font in the love.graphics.newImageFont() call. The extra areas are ignored.

In versions prior to 0.10.0 the width of the separator area after a particular font glyph sets the amount of space that goes after the glyph. It is currently not possible to add negative spacing for a character.

See Also

Other Languages