-
i tried it like this but the img file is not readable...
import pyscreenshot
if **name** == "**main**":
```
im = pyscreenshot.grab()
ff= open("img.png", "wb")
ff.write(im)
ff.close()
```
-
When using ImageGrab.grab(bbox=box) where box is a pixel line, e.g. bbox=(100, 100, 101, 110), the resulting image seems to be incorrect. Specifically, pixel values in the "line" do not match with pix…
-
Hey
How can I import python libraries to the game like tensorflow
Is their a way to change the python interpreter?
Regards
-
Is there any reason for the backend code to be structured around writing to files? And also on a separate process?
For backends that don't need it (gtk, qt, ...?), it seems performance would be hundre…
-
mycli crashes for any command with this error
```
mycli -u root
Password:
Version: 1.10.0
Chat: https://gitter.im/dbcli/mycli
Mail: https://groups.google.com/forum/#!forum/mycli-users
H…
-
I'm looking for a way to capture screen shots/screen captures. I'm basically looking for the functionality offered by imagemagick's `import` tool. I went over the example code but didn't see anything …
-
Hello,
I have tested installation of sikulpy further where the following issues popped up:
* not noted dependency on module "enum"
* while using python setup.py install on the code, some syntax…
-
-
Hey guys,
### What did you do?
Here's my code (yes, it's redundant, I know):
``` python
import io, os, pygame, sys
import pyscreenshot as ImageGrab
from PIL import Image
from time import sleep
w = …
-
Finding out how long does it take to take a screenshot after a mouse click and if it is fast enough.