1 个不稳定版本
0.1.0 | 2024年8月7日 |
---|
在 图像 中排名第 317
每月下载量 124
11KB
92 行
桌面截图
捕获屏幕截图;
用法
首先,使用cargo将截图添加到您的项目中。
use std::path::Path;
use screenshot_desktop::Screenshot;
fn main(){
let _ = match Screenshot::new() {
Ok(screenshot) => {
screenshot.save(&Path::new("screenshot.png")).map_err(|e| e.to_string())
},
Err(_) => {
Err("Failed to capture screenshot".to_string())
},
};
}
支持平台
平台/平台 | 状态/状态 |
---|---|
Windows | 完成 |
Linux | 即将推出 |
Macos | 即将推出 |
许可证
MIT + Apache-2.0
依赖项
~3MB
~56K SLoC