Generate images at build time for embedding in the Rust documentation.
png
→ base64
and saved as HTML
tags. E.g.:rust
ImageFile::new()
.path("images/my_image.html")
.width(600)
.height(400)
.title("My image")
.id("image-01")
.style("display: block; margin:auto;")
.wrapper("div")
.wrapper_style("background-color:red; padding:3px;")
.overwrite(true)
.generate(my_image_generator_function)?;
```rust
```
sh
cargo doc --open
You can refer to the crate documentation for more details. And there's also a full practical example available.