#截图 #屏幕 #图像 #屏幕捕获 #捕获

截图_桌面

捕获屏幕截图

1 个不稳定版本

0.1.0 2024年8月7日

图像 中排名第 317

Download history 124/week @ 2024-08-05

每月下载量 124

MIT/Apache

11KB
92

桌面截图

捕获屏幕截图;

Crates.io License Crates.io Version

用法

首先,使用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