Skip to content

abennet1314/graphicsprocessor

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

graphicsprocessor

A C# library for image processing and Win32 screen capture

Here's an example that shows how to capture a screen region, convert to monochrome and vertically split it into 10 parts

// Capture a square region 100x100 from the top left of the screen  
Bitmap image = ScreenCapture.Instance.CaptureScreen(0, 0, 100, 100);

// Convert it to black and white image
BitmapProcessor.BlackAndWhite(ref image);

// Split it into 10
List<Bitmap> split = BitmapProcessor.Split(image, 10);

// Dispose the image
image.Dispose();

About

A C# library for image processing and Win32 screen capture

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%