#base64 #image #decoder #filter #imaging #most #basic

image-base64

用Rust编写的图像处理库。提供最常见的图像格式的基本过滤器和解码器。

1个不稳定版本

使用旧的Rust 2015

0.1.0 2017年3月5日

#13 in #imaging

Download history • Rust 包仓库 74/week @ 2023-12-18 • Rust 包仓库 27/week @ 2023-12-25 • Rust 包仓库 63/week @ 2024-01-01 • Rust 包仓库 50/week @ 2024-01-08 • Rust 包仓库 35/week @ 2024-01-15 • Rust 包仓库 70/week @ 2024-01-22 • Rust 包仓库 109/week @ 2024-01-29 • Rust 包仓库 59/week @ 2024-02-05 • Rust 包仓库 97/week @ 2024-02-12 • Rust 包仓库 154/week @ 2024-02-19 • Rust 包仓库 282/week @ 2024-02-26 • Rust 包仓库 186/week @ 2024-03-04 • Rust 包仓库 148/week @ 2024-03-11 • Rust 包仓库 103/week @ 2024-03-18 • Rust 包仓库 136/week @ 2024-03-25 • Rust 包仓库 178/week @ 2024-04-01 • Rust 包仓库

589 每月下载次数

MIT 许可证

55KB

#image-base64-rs

概述

将图像转换为base64,反之亦然

代码示例

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); 
}

安装

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

许可证

MIT

依赖项

~17MB
~155K SLoC