https://github.com/jaredrummler/truetypeparser
TrueType Font Parser for Android
https://github.com/jaredrummler/truetypeparser
Last synced: over 1 year ago
JSON representation
TrueType Font Parser for Android
- Host: GitHub
- URL: https://github.com/jaredrummler/truetypeparser
- Owner: jaredrummler
- License: apache-2.0
- Created: 2016-02-16T03:28:24.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-06-16T18:38:52.000Z (about 6 years ago)
- Last Synced: 2025-03-24T11:08:02.198Z (over 1 year ago)
- Language: Java
- Size: 486 KB
- Stars: 37
- Watchers: 5
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TrueTypeParser
[](https://maven-badges.herokuapp.com/maven-central/com.jaredrummler/truetypeparser) [](LICENSE) [](https://android-arsenal.com/api?level=7)
TrueType Font Parser for Android based on [Apache FOP](http://xmlgraphics.apache.org/fop/).
Download
--------
Download [the latest AAR](https://repo1.maven.org/maven2/com/jaredrummler/truetypeparser/1.0.0/truetypeparser-1.0.0.aar) or grab via Gradle:
```groovy
compile 'com.jaredrummler:truetypeparser:1.0.0'
```
or Maven:
```xml
com.jaredrummler
truetypeparser
1.0.0
aar
```
Usage
-----
```java
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> 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.
```groovy
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.