[[Raku HarfBuzz Project]](https://harfbuzz-raku.github.io) / [[HarfBuzz Module]](https://harfbuzz-raku.github.io/HarfBuzz-raku) HarfBuzz-raku ============= Bindings to the HarfBuzz text shaping library. Minimum supported HarfBuzz version is v2.6.4 - See [Installation](#installation) Note: If you wish to install the HarfBuzz::Subset module, then the minimum HarfBuzz version is v3.0.0+. Name ---- HarfBuzz - Use HarfBuzz for text shaping and font manipulation. Synopsis -------- ``` use HarfBuzz::Font; use HarfBuzz::Buffer; use HarfBuzz::Shaper; use HarfBuzz::Feature; use HarfBuzz::Glyph; my HarfBuzz::Feature() @features = ; # enable small-caps, disable kerning and ligatures my $file = 't/fonts/NimbusRoman-Regular.otf'; my HarfBuzz::Font $font .= new :$file, :size(36), :@features; my HarfBuzz::Buffer $buf .= new :text; my HarfBuzz::Shaper $shaper .= new: :$font :$buf; for $shaper.shape -> HarfBuzz::Glyph $glyph { ... } my Hash @info = $shaper.ast; ``` Description ---------- HarfBuzz is a Raku module that provides access to a small subset of the native HarfBuzz library. The subset is suitable for typesetting programs, whether they need to do basic glyph selection and layout, or deal with complex languages like Devanagari, Hebrew or Arabic. Following the above example, the returned info is an array of hashes, one element for each glyph to be typeset. The hash contains the following items: ``` ax: horizontal advance ay: vertical advance dx: horizontal offset dy: vertical offset c: input character position g: glyph index in font (CId) name: glyph name ``` Note that the number of glyphs does not necessarily match the number of input characters! Classes/Modules in this distribution ------- - [HarfBuzz::Buffer](https://harfbuzz-raku.github.io/HarfBuzz-raku/HarfBuzz/Buffer) - Shaping text and context - [HarfBuzz::Font](https://harfbuzz-raku.github.io/HarfBuzz-raku/HarfBuzz/Font) - Shaping font - [HarfBuzz::Feature](https://harfbuzz-raku.github.io/HarfBuzz-raku/HarfBuzz/Feature) - Font Features - [HarfBuzz::Glyph](https://harfbuzz-raku.github.io/HarfBuzz-raku/HarfBuzz/Glyph) - Shaped Glyphs - [HarfBuzz::Shaper](https://harfbuzz-raku.github.io/HarfBuzz-raku/HarfBuzz/Shaper) - Shape a buffer using a given font and features - [HarfBuzz::Raw](https://harfbuzz-raku.github.io/HarfBuzz-raku/HarfBuzz/Raw) - Native bindings - [HarfBuzz::Raw::Defs](https://harfbuzz-raku.github.io/HarfBuzz-raku/HarfBuzz/Raw/Defs) - Enumerations and other constants Installation ----- This module requires HarfBuzz 2.6.4+. `$ sudo apt-get install libharfbuzz-dev # Debian 12+` If you are installing this as a [HarfBuzz::Subset](https://harfbuzz-raku.github.io/HarfBuzz-Subset-raku/) dependency, HarfBuzz 3.0.0+ is required, which may (as of February 2022) require building from source [its repo](https://github.com/harfbuzz/harfbuzz/releases/). Additional Modules ------ - [HarfBuzz::Font::FreeType](https://harfbuzz-raku.github.io/HarfBuzz-Font-FreeType-raku/) - HarfBuzz / FreeType integration - [HarfBuzz::Shaper::Cairo](https://harfbuzz-raku.github.io/HarfBuzz-Shaper-Cairo-raku/) - HarfBuzz / Cairo shaping integration - [HarfBuzz::Subset](https://harfbuzz-raku.github.io/HarfBuzz-Subset-raku/) - Raku bindings to harfbuzz-subset font subsetting library See Also -------- - [HarfBuzz::Shaper](https://metacpan.org/pod/HarfBuzz::Shaper) - Perl CPAN module.