text-svg 0.1.0

Render text or glyphs in a font to an SVG path
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
![example](https://raw.githubusercontent.com/matthunz/text-svg/main/image.svg)

Text -> SVG path in rust

[Examples](https://github.com/matthunz/text-svg/tree/main/examples)

```rust
Text::builder()
    .size(50.0)
    .start(Point { x, y })
    .build(&font, "text-svg");
```