screen_capturer 0.1.1 screen_capturer: ^0.1.1 copied to clipboard
This plugin allows Flutter desktop apps to capture screenshots.
screen_capturer #
This plugin allows Flutter desktop apps to take screenshots.
English | 简体中文
Platform Support #
Linux | macOS | Windows |
---|---|---|
✔️ | ✔️ | ✔️ |
⚠️ macOS only supports non-sandbox mode.
Quick Start #
Installation #
Add this to your package's pubspec.yaml file:
dependencies:
screen_capturer: ^0.1.1
Or
dependencies:
screen_capturer:
git:
url: https://github.com/leanflutter/screen_capturer.git
ref: main
Usage #
import 'package:screen_capturer/screen_capturer.dart';
CapturedData? capturedData = await screenCapturer.capture(
mode: CaptureMode.region, // screen, window
imagePath: '<path>',
);
Please see the example app of this plugin for a full example.
Platform Differences #
CaptureMode #
Name | Description | Linux | macOS | Windows |
---|---|---|---|---|
region |
Drag the cursor around an object to form a rectangle. | ✔️ | ✔️ | ✔️ |
screen |
Capture the entire screen. | ✔️ | ✔️ | ➖ |
window |
Select a window, that you want to capture. (linux capture only the current window) | ➖ | ✔️ | ✔️ |
Who's using it? #
- Biyi (比译) - A convenient translation and dictionary app.