1 2 3 4 5 6 7 8 9 10 11 12 13
use plotlars::{Axis, Image, Plot}; fn main() { let axis = Axis::new().show_axis(false); Image::builder() .path("data/image.png") .x_axis(&axis) .y_axis(&axis) .plot_title("Image Plot") .build() .plot(); }