True Type Parser

TTF and OTF font parser

License

License

GroupId

GroupId

com.jaredrummler
ArtifactId

ArtifactId

truetypeparser
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

aar
Description

Description

True Type Parser
TTF and OTF font parser
Project URL

Project URL

https://github.com/jaredrummler/TrueTypeParser
Source Code Management

Source Code Management

https://github.com/jaredrummler/TrueTypeParser

Download truetypeparser

How to add to project

<!-- https://jarcasting.com/artifacts/com.jaredrummler/truetypeparser/ -->
<dependency>
    <groupId>com.jaredrummler</groupId>
    <artifactId>truetypeparser</artifactId>
    <version>1.0.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.jaredrummler/truetypeparser/
implementation 'com.jaredrummler:truetypeparser:1.0.0'
// https://jarcasting.com/artifacts/com.jaredrummler/truetypeparser/
implementation ("com.jaredrummler:truetypeparser:1.0.0")
'com.jaredrummler:truetypeparser:aar:1.0.0'
<dependency org="com.jaredrummler" name="truetypeparser" rev="1.0.0">
  <artifact name="truetypeparser" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.jaredrummler', module='truetypeparser', version='1.0.0')
)
libraryDependencies += "com.jaredrummler" % "truetypeparser" % "1.0.0"
[com.jaredrummler/truetypeparser "1.0.0"]

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.

TrueTypeParser

Maven Central License API

TrueType Font Parser for Android based on Apache FOP.

Download

Download the latest AAR or grab via Gradle:

compile 'com.jaredrummler:truetypeparser:1.0.0'

or Maven:

<dependency>
  <groupId>com.jaredrummler</groupId>
  <artifactId>truetypeparser</artifactId>
  <version>1.0.0</version>
  <type>aar</type>
</dependency>

Usage

TTFFile ttfFile = TTFFile.open(getAssets().open("fonts/your-font.ttf"));
String name = ttfFile.getFullName();
String family = ttfFile.getSubFamilyName();
int fontWeight = ttfFile.getWeightClass();
String copyright = ttfFile.getCopyrightNotice();
Map<Integer, Map<Integer, Integer>> kerning = ttfFile.getKerning();

TrueTypeParser Light

If you don't need to read kerning pairs consider using the light version. The light version will read the font file's name, families, weight, and notice. The method count is much smaller.

compile 'com.jaredrummler:truetypeparser-light:1.0.0'

License

Copyright (C) 2016 Jared Rummler

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Versions

Version
1.0.0