rio-graphics 0.5.0

Terminal graphics value types (sixel/kitty/iTerm2 image data, glyph protocol) extracted from Rio
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) 2023-present, Raphael Amorim.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the root directory of this source tree.

//! Glyph protocol support: a self-contained TrueType `glyf` outline
//! decoder and the registry that stores client-registered glyphs. Gated
//! behind the `glyph` feature so image-only embedders don't pull the
//! font-outline parser (`skrifa`).

pub mod glyf_decode;
pub mod glyph_registry;