Skip to content

Commit 47055de

Browse files
authored
om->on, seperate->separate
1 parent f588143 commit 47055de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ IEnumerable<Display> displays = screenCaptureService.GetDisplays(graphicsCards.F
2626
// Create a screen-capture for all screens you want to capture
2727
IScreenCapture screenCapture = screenCaptureService.GetScreenCapture(displays.First());
2828

29-
// Register the regions you want to capture om the screen
29+
// Register the regions you want to capture on the screen
3030
// Capture the whole screen
3131
ICaptureZone fullscreen = screenCapture.RegisterCaptureZone(0, 0, screenCapture.Display.Width, screenCapture.Display.Height);
3232
// Capture a 100x100 region at the top left and scale it down to 50x50
3333
ICaptureZone topLeft = screenCapture.RegisterCaptureZone(0, 0, 100, 100, downscaleLevel: 1);
3434

3535
// Capture the screen
36-
// This should be done in a loop on a seperate thread as CaptureScreen blocks if the screen is not updated (still image).
36+
// This should be done in a loop on a separate thread as CaptureScreen blocks if the screen is not updated (still image).
3737
screenCapture.CaptureScreen();
3838

3939
// Do something with the captured image - e.g. access all pixels (same could be done with topLeft)

0 commit comments

Comments
 (0)