I'm developing a screen scraper in Python, using Autopy and Pillow.
Is it possible to convert a bitmap object to a Pillow image object?
My current solution is to save the bitmap object as an image file, and then use the path to create a Pillow image object. This approach is really slow because of harddrive I/O.
My current (very slow) solution:
from PIL import Image
import autopy
bitmap_object = autopy.bitmap.capture_screen()
bitmap_object.save('some/path.png') # VERY SLOW!
img = Image.open('some/path.png')
Question: Can the above functionality be achieved without saving the bitmap object to the harddrive?
Looks like now this has a solution from autopy: