Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Tehreer/Tehreer-Android
Standalone text engine for Android aimed to be free from platform limitations
https://github.com/Tehreer/Tehreer-Android
android android-library bidi fonts freetype glyph-rendering harfbuzz jni-wrapper opentype opentype-features sheenbidi sheenfigure text-layout text-rendering text-shaping typography uax-24 uax-9 unicode variable-fonts
Last synced: 3 months ago
JSON representation
Standalone text engine for Android aimed to be free from platform limitations
- Host: GitHub
- URL: https://github.com/Tehreer/Tehreer-Android
- Owner: Tehreer
- License: apache-2.0
- Created: 2016-09-18T12:41:08.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-17T19:30:10.000Z (over 1 year ago)
- Last Synced: 2024-07-28T21:57:23.291Z (3 months ago)
- Topics: android, android-library, bidi, fonts, freetype, glyph-rendering, harfbuzz, jni-wrapper, opentype, opentype-features, sheenbidi, sheenfigure, text-layout, text-rendering, text-shaping, typography, uax-24, uax-9, unicode, variable-fonts
- Language: C
- Homepage:
- Size: 32.2 MB
- Stars: 88
- Watchers: 8
- Forks: 16
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-typography - Tehreer-Android - Library that gives full control over text related technologies such as bidirectional algorithm, open type shaping engine, text typesetting and text rendering. (Java)
README
# Tehreer-Android
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Maven Central](https://img.shields.io/maven-central/v/com.github.mta452/tehreer-android.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.github.mta452%22%20AND%20a%3A%22tehreer-android%22)
[![Continuous Integration](https://github.com/Tehreer/Tehreer-Android/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/Tehreer/Tehreer-Android)
[![Codecov](https://codecov.io/gh/Tehreer/Tehreer-Android/branch/develop/graph/badge.svg)](https://codecov.io/gh/Tehreer/Tehreer-Android)Tehreer is a library which gives full control over following text related technologies.
* Bidirectional Algorithm
* OpenType Shaping Engine
* Text Typesetting
* Text / Glyph RenderingIt is a wrapper over C libraries, [FreeType](https://www.freetype.org), [SheenBidi](https://github.com/Tehreer/SheenBidi) and [HarfBuzz](https://github.com/harfbuzz/harfbuzz). So a part of the library has been written in JNI in order to access the functionality of said libraries.
## Screenshots
## Installation
If you are building with Gradle, simply add the following line to the `dependencies` section of your `build.gradle` file:```groovy
implementation 'com.github.mta452:tehreer-android:3.0'
```## Proguard
```
-keepclassmembers, includedescriptorclasses class * {
native ;
}
```## API Reference
The [Javadocs](https://tehreer.github.io/Tehreer-Android/apidocs/) are available for online browsing. The Javadocs are also bundled as source Jars with each distribution for consumption in the IDE.## License
```
Copyright (C) 2016-2023 Muhammad Tayyab AkramLicensed 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 athttp://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.
```