image-base64-rs

Synopsis

Convert image to base64, and vise versa

Code Example

``` extern crate image_base64;

fn main() { let base64 = "base64 String"; let image = imagebase64::frombase64(base64);

let imagepath = "local image file path" let base64 = imagebase64::tobase64(imagepath); } ```

Installation

cargo install --git https://github.com/katsumeshi/image-base64-rs.git image-base64-rs

License

MIT