A package to easily create windows in Python using GLFW, OpenCV-Python, NumPy, pywin32 and ctypes.
Project description
SimpleWindow
A package to easily create windows in Python using GLFW, OpenCV-Python, NumPy, pywin32 and ctypes.
Installation
pip install SimpleWindow
Usage
import SimpleWindow
import numpy as np
# Initialize the window, the window wont be shown until Show() is called
SimpleWindow.Initialize(Name="Example Window", Size=(1280, 720), Position=(100, 100), TitleBarColor=(0, 0, 0), Resizable=True, TopMost=False, Undestroyable=False, Icon="")
# Create an image
Image = np.zeros((720, 1280, 3), dtype=np.uint8)
while True:
# The window will be shown now since its the first call of Show() since the Initialize() call
SimpleWindow.Show(Name="Example Window", Frame=Image)
# Get the window status
WindowState = SimpleWindow.GetWindowStatus(Name="Example Window")
# If the value is False then the window was destroyed by the code, if the value is None then the window got destroyed by the user
if WindowState["Open"] == False or WindowState["Open"] == None:
break
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
simplewindow-0.14.tar.gz
(43.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file simplewindow-0.14.tar.gz.
File metadata
- Download URL: simplewindow-0.14.tar.gz
- Upload date:
- Size: 43.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d325cca714ba345a6e62a895785efd02f3cecf2691f8a2f5f8dde02791beb14a
|
|
| MD5 |
200335b4368401a48b99d7dea5cf48b3
|
|
| BLAKE2b-256 |
25c7394b6d2e0d506cf23616276d8226085cd310d46f344992b5f4e00db02b9d
|
File details
Details for the file SimpleWindow-0.14-py3-none-any.whl.
File metadata
- Download URL: SimpleWindow-0.14-py3-none-any.whl
- Upload date:
- Size: 31.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8a94df91484e979a672d271aa3cf748e02c5b06acd62b43d91be587031c860f
|
|
| MD5 |
6b1b706ce2ac06031be1dc27fca90b45
|
|
| BLAKE2b-256 |
7096f5e644a9f202dc34b17f02343e0398147cb92ed0c65a8500f14c29bc8cdf
|