Overview

stbtruetyperust is Rust port of stb_truetype.h, which is library to save images in BMP, JPG, PNG and TGA formats

Crate

Sample Code

```rust use stbtruetyperust::ImageWriter::ImageWriter;

fn main() { let mut writer = ImageWriter::new("output.jpg"); writer.writejpg(width, height, components, imagedata, 90); }

```