The package provides a font toolbox.
```rust use font::{File, Segment};
let path = "SourceSerifPro-Regular.otf"; let file = File::open(path).unwrap(); let font = &file[0];
for contour in font.draw('&').unwrap().unwrap().iter() { for segment in contour.iter() { match segment { &Segment::Linear(..) => println!("Line!"), &Segment::Quadratic(..) => println!("Curve!"), &Segment::Cubic(..) => println!("Curve!"), } } } ```
Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.