Skip to main content

A simple use to capture a screenshot of single window in linux Systems

Project description

XWindowSystem_Screenshoter

A simple use and little size python library to get screenshot of a single window on linux!

How use

There are two ways to use it, in synchronous and asynchronous mode (in reference to the screenshot) But the statement is very similar.

Declaration

sync

window_sync = WindowCaptureSync("firefox")

async

window_async = WindowCaptureAsync("firefox")

The biggest difference is that in synchronous mode you must call a function to take the screenshot, whereas in asynchronous mode, a capture function is run in a loop and you will only need to call a property that will contain the most recently captured screenshot

To get Screenshot

sync

window_sync = WindowCaptureSync("firefox")
screenshot = window_sync.get_screenshot()

async

window_async = WindowCaptureAsync("firefox")
window_async.start() # Start thread to screenshot loop
...
screenshot = window_async.screenshot
...
window_async.stop() # Stop thread when not used anymore

Examples

sync

import cv2 as cv
from XWindowSystem_Screenshoter import WindowCaptureSync

wincap = WindowCaptureSync("firefox")

# first capture 
image = wincap.get_screenshot()
image = cv.resize(image, (0,0), fx=0.6, fy=0.6)
cv.imshow("Test", image)

while True:
    # press c to update image    
    if cv.waitKey(1) == ord('c'):
        image = wincap.get_screenshot()
        image = cv.resize(image, (0,0), fx=0.6, fy=0.6)
        cv.imshow("Test", image)

    
    if cv.waitKey(1) == ord('q'):
        cv.destroyAllWindows()
        break

async

import cv2 as cv
from XWindowSystem_Screenshoter import WindowCaptureAsync

wincap = WindowCaptureAsync("firefox")
wincap.start()

while True:
    if wincap.screenshot is not None:
        image = wincap.screenshot
        image = cv.resize(image, (0,0), fx=0.6, fy=0.6)

        cv.imshow("Test", image)
        
        if cv.waitKey(1) == ord('q'):
            cv.destroyAllWindows()
            break
wincap.stop() # don't forget to stop thread!
exit(0)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xwindowsystem_screenshoter-0.0.7.tar.gz (3.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

xwindowsystem_screenshoter-0.0.7-py3-none-any.whl (5.4 kB view details)

Uploaded Python 3

File details

Details for the file xwindowsystem_screenshoter-0.0.7.tar.gz.

File metadata

File hashes

Hashes for xwindowsystem_screenshoter-0.0.7.tar.gz
Algorithm Hash digest
SHA256 ea7d231d421eeb44d38b38827efa24789e9aa607e367219a25b7d1c7bdc28972
MD5 ab16403a6c59cd8b18f2f5593ce8330b
BLAKE2b-256 42d7d03fde3eec669b04c3aa656dca4a3de3a6c668c8319704acda32d7a49f82

See more details on using hashes here.

File details

Details for the file xwindowsystem_screenshoter-0.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for xwindowsystem_screenshoter-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 a931de6c9ef2f381602060060f1f872a6ce7994fbebc8da2c06e24833c3be9f2
MD5 4cd54eaf6040a7d30b38eaaac4ebfe06
BLAKE2b-256 7146b17c363257a1739023ab1c7fb2a13fa3d807b10ccd2aea85f9deea82d3b9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page