Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 503 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 503 Bytes

Screenshot.NET

Simple screenshot library for .NET Framework. Allows selection and capture of screen region, similar to Snipping Tool.

Requirements

  • .NET 4.6.2+

Installation

PM> Install-Package GI.Screenshot

Usage

// allow user to select and capture screen region
var image = Screenshot.CaptureRegion();

// get a screenshot of given region
var image = Screenshot.CaptureRegion(rect);

// get a screenshot of all screens
var image = Screenshot.CaptureAllScreens();