这个插件允许 Flutter 桌面应用程序进行屏幕截图。
English | 简体中文
Linux | macOS | Windows |
---|---|---|
✔️ | ✔️ | ✔️ |
将此添加到你的软件包的 pubspec.yaml 文件:
dependencies:
screen_capturer: ^0.2.3
或
dependencies:
screen_capturer:
git:
path: packages/screen_capturer
url: https://github.com/leanflutter/screen_capturer.git
ref: main
请务必修改你的 Visual Studio 安装,并确保 "C++ ATL for latest v142 build tools (x86 & x64)" 已安装
更改文件 macos/Runner/DebugProfile.entitlements
或 macos/Runner/Release.entitlements
如下:
仅在沙盒模式下需要。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
+ <key>com.apple.security.temporary-exception.mach-register.global-name</key>
+ <string>com.apple.screencapture.interactive</string>
</dict>
</plist>
import 'package:screen_capturer/screen_capturer.dart';
CapturedData? capturedData = await screenCapturer.capture(
mode: CaptureMode.region, // screen, window
imagePath: '<path>',
copyToClipboard: true,
);
请看这个插件的示例应用,以了解完整的例子。
Name | Description | Linux | macOS | Windows |
---|---|---|---|---|
region |
在对象周围拖动光标以形成一个矩形。 | ✔️ | ✔️ | ✔️ |
screen |
捕获整个屏幕。 | ✔️ | ✔️ | ✔️ |
window |
选择要捕获的窗口。(linux 只捕获当前窗口) | ➖ | ✔️ | ✔️ |
- Biyi (比译) - 一个便捷的翻译和词典应用程序。
LiJianying 💻 |
Amit Mondal 💻 |
lightrabbit 💻 |
liuyuxin 💻 |
kalykun 📖 |
||
Add your contributions |