liup a01a5aa773 | 3 viikkoa sitten | |
---|---|---|
.. | ||
LICENSE.md | 3 viikkoa sitten | |
README.md | 3 viikkoa sitten | |
index.js | 3 viikkoa sitten | |
package.json | 3 viikkoa sitten |
Encodes a BMFont from a binary Buffer into JSON, as per the BMFont Spec. Can be used in Node or the browser (e.g. with browserify).
var parse = require('parse-bmfont-binary')
fs.readFile('fonts/Lato.bin', function(err, data) {
if (err) throw err
var font = parse(data)
//do something with your font
console.log(font.info.face)
console.log(font.info.size)
console.log(font.common.lineHeight)
console.log(font.chars)
console.log(font.kernings)
})
See text-modules for related modules.
font = parse(buffer)
Reads a binary BMFont Buffer and returns a new JSON representation of that font. See here for details on the return format.
MIT, see LICENSE.md for details.