Difference between revisions of "love.font.newBMFontRasterizer"

(Created page with "{{newin|0.7.0|070|type=function}} Creates a new BMFontRasterizer. == Function == === Synopsis === <source lang="lua"> rasterizer = love.font.newBMFontRasterizer( imageData...")
 
m (Minor fix to rasterizer subtype names in descriptions.)
Line 1: Line 1:
 
{{newin|[[0.7.0]]|070|type=function}}
 
{{newin|[[0.7.0]]|070|type=function}}
Creates a new BMFontRasterizer.
+
Creates a new BMFont Rasterizer.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
Line 28: Line 28:
 
* [[Constructs::Rasterizer]]
 
* [[Constructs::Rasterizer]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Creates a new BMFontRasterizer.}}
+
{{#set:Description=Creates a new BMFont Rasterizer.}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.font.newBMFontRasterizer}}
 
{{i18n|love.font.newBMFontRasterizer}}

Revision as of 13:12, 15 February 2017

Available since LÖVE 0.7.0
This function is not supported in earlier versions.

Creates a new BMFont Rasterizer.

Function

Synopsis

rasterizer = love.font.newBMFontRasterizer( imageData, glyphs )

Arguments

ImageData imageData
The image data containing the drawable pictures of font glyphs.
string glyphs
The sequence of glyphs in the ImageData.

Returns

BMFontRasterizer rasterizer
The rasterizer.

Function

Synopsis

rasterizer = love.font.newBMFontRasterizer( ... )

Arguments

???

Returns

BMFontRasterizer rasterizer
The rasterizer.

See Also

Other Languages