#image-base64-rs
Convert image to base64, and vise versa
extern crate image_base64;
fn main() {
let base64 = "base64 String";
let image = image_base64::from_base64(base64);
let image_path = "local image file path"
let base64 = image_base64::to_base64(image_path);
}
First, add this to your Cargo.toml
:
[dependencies]
image-base64 = "0.1"
MIT