Generate images at build time for embedding in the Rust documentation.
The current API is going to evolve a lot while the major version number is 0.
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
``` 3. Generate the docs:
sh
cargo doc --open
You can refer to the crate documentation and the source code for more complete information and practical examples.