parse-bmfont-binary

WebJar for parse-bmfont-binary

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

parse-bmfont-binary
Last Version

Last Version

1.0.6
Release Date

Release Date

Type

Type

jar
Description

Description

parse-bmfont-binary
WebJar for parse-bmfont-binary
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/Jam3/parse-bmfont-binary

Download parse-bmfont-binary

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/parse-bmfont-binary/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>parse-bmfont-binary</artifactId>
    <version>1.0.6</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/parse-bmfont-binary/
implementation 'org.webjars.npm:parse-bmfont-binary:1.0.6'
// https://jarcasting.com/artifacts/org.webjars.npm/parse-bmfont-binary/
implementation ("org.webjars.npm:parse-bmfont-binary:1.0.6")
'org.webjars.npm:parse-bmfont-binary:jar:1.0.6'
<dependency org="org.webjars.npm" name="parse-bmfont-binary" rev="1.0.6">
  <artifact name="parse-bmfont-binary" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='parse-bmfont-binary', version='1.0.6')
)
libraryDependencies += "org.webjars.npm" % "parse-bmfont-binary" % "1.0.6"
[org.webjars.npm/parse-bmfont-binary "1.0.6"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

parse-bmfont-binary

stable

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 Also

See text-modules for related modules.

Usage

NPM

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.

License

MIT, see LICENSE.md for details.

org.webjars.npm

Jam3

We create modern experiences for tomorrow’s brands

Versions

Version
1.0.6
1.0.5