True Type Parser

TTF and OTF font parser

Лицензия

Лицензия

Группа

Группа

com.jaredrummler
Идентификатор

Идентификатор

truetypeparser-light
Последняя версия

Последняя версия

1.0.0
Дата

Дата

Тип

Тип

aar
Описание

Описание

True Type Parser
TTF and OTF font parser
Ссылка на сайт

Ссылка на сайт

https://github.com/jaredrummler/TrueTypeParser
Система контроля версий

Система контроля версий

https://github.com/jaredrummler/TrueTypeParser

Скачать truetypeparser-light

Как подключить последнюю версию

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

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
1.0.0