Metadata-Version: 2.1
Name: uharfbuzz
Version: 0.6.0
Summary: Streamlined Cython bindings for the harfbuzz shaping engine
Home-page: https://github.com/trufont/uharfbuzz
Author: Adrien Tétar
Author-email: adri-from-59@hotmail.fr
License: Apache License 2.0
Platform: UNKNOWN
Requires-Python: >=3.5
Description-Content-Type: text/markdown

[![Travis Build Status](https://travis-ci.org/harfbuzz/uharfbuzz.svg?branch=master)](https://travis-ci.org/harfbuzz/uharfbuzz)
[![Appveyor Build status](https://ci.appveyor.com/api/projects/status/k52t0vwqb9rhcl9v/branch/master?svg=true)](https://ci.appveyor.com/project/fonttools/uharfbuzz/branch/master)
[![PyPI](https://img.shields.io/pypi/v/uharfbuzz.svg)](https://pypi.org/project/uharfbuzz)

## uharfbuzz

Streamlined Cython bindings for the [HarfBuzz][hb] shaping engine.


### Example

```python
import uharfbuzz as hb
import sys


with open(sys.argv[1], 'rb') as fontfile:
    fontdata = fontfile.read()

text = sys.argv[2]

face = hb.Face(fontdata)
font = hb.Font(face)
upem = face.upem

font.scale = (upem, upem)
hb.ot_font_set_funcs(font)

buf = hb.Buffer()

buf.add_str(text)
buf.guess_segment_properties()

features = {"kern": True, "liga": True}
hb.shape(font, buf, features)

infos = buf.glyph_infos
positions = buf.glyph_positions

for info, pos in zip(infos, positions):
    gid = info.codepoint
    cluster = info.cluster
    x_advance = pos.x_advance
    x_offset = pos.x_offset
    y_offset = pos.y_offset
    print(f"gid{gid}={cluster}@{x_advance},{x_offset}+{y_offset}")
```


[hb]: https://github.com/harfbuzz/harfbuzz


