Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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 Rendering

It 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 Akram

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.
```