/ts-base64-rs

converter image/audio <-> base64 in Rust

Primary LanguageRustMIT LicenseMIT

#image-base64-rs

crates travis

Convert image/audio to base64, and vise versa

Code Example

extern crate ts_base64;

fn main() {
  let base64 = "base64 String";
  let image = ts_base64::from_base64(base64);
  
  let image_path = "local image file path"
  let base64 = ts_base64::to_base64(image_path); 
}

Installation

Add the dependency to your Cargo.toml:

[dependencies]
image-base64 = "0.1"

License

MIT