README
Node Screen Capture
Part of Presentation Remote project. This module uses Java Screen Capture to capture screenshots.
Note
This module is currently under heavy development and very unstable.
Usage
After loading module you can do this actions:
- Capture a screenshot and save as file with
.captureAndSave(width, height, format, file) - Capture a screenshot and get image as base64 string with
.captureAndGetBase64(width, height, format). - Capture a screenshot and get file with standard output stream with
.captureAndGetStream(width, height, format). (screenshot in the shape of string thet given from standard output stream).
You can use this values as format parameter in above methods.
IMAGE_FORMAT_PNGas PNG formatIMAGE_FORMAT_JPGas JPG formatIMAGE_FORMAT_GIFas GIF format
Changes (V 0.3.0)
- Callback is removed from parameters of
captureAndGetBase64function - Empty output bux is fixed