use std::collections::HashMap; use std::path::{Path, PathBuf}; use std::sync::Arc; use vello::peniko::{Blob, Format, Image}; /// Simple hack to support loading images for examples. #[derive(Default)] pub struct ImageCache { files: HashMap, bytes: HashMap, } impl ImageCache { pub fn new() -> Self { Self::default() } pub fn from_file(&mut self, path: impl AsRef) -> anyhow::Result { let path = path.as_ref(); if let Some(image) = self.files.get(path) { Ok(image.clone()) } else { let data = std::fs::read(path)?; let image = decode_image(&data)?; self.files.insert(path.to_owned(), image.clone()); Ok(image) } } pub fn from_bytes(&mut self, key: usize, bytes: &[u8]) -> anyhow::Result { if let Some(image) = self.bytes.get(&key) { Ok(image.clone()) } else { let image = decode_image(bytes)?; self.bytes.insert(key, image.clone()); Ok(image) } } } fn decode_image(data: &[u8]) -> anyhow::Result { let image = image::io::Reader::new(std::io::Cursor::new(data)) .with_guessed_format()? .decode()?; let width = image.width(); let height = image.height(); let data = Arc::new(image.into_rgba8().into_vec()); let blob = Blob::new(data); Ok(Image::new(blob, Format::Rgba8, width, height)) }