Skip to content

coobird/capturenator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What is Capturenator?

Capturenator is a Java library for taking screenshots.

Why use Capturenator?

Capturenator offers a very simple API for taking screenshots:

// Take a full-screen, screenshot.
BufferedImage screenshot = Capture.fullScreen();

// Take a screenshot of a region of the screen. 
BufferedImage screenShotOfARegion = Capture.of(new Rectangle(0, 0, 100, 100));

// Take a screenshot centered around the mouse pointer.
BufferedImage screenshotAtThePointer = Capture.atPointer(new Dimension(100, 100));

How do I use Capturenator?

The test/java directory contains a couple of example programs that use Capturenator.

About

A screenshot library for Java

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages