Function open

pub fn open<P>(path: P) -> Result<DynamicImage, ImageError> 
where P: AsRef<Path>,
Available on crate feature dep_image only.
Expand description

Open the image located at the path specified. The image’s format is determined from the path’s file extension.

Try ImageReader for more advanced uses, including guessing the format based on the file’s content before its path.