Can PIL open an image using pyqt4 resource file?
from PIL import Image, ImageWin
import res_rc #resource file
image = Image.open(":/images/image.png")
dim = ImageWin.Dib(image)
I'm getting this error
IOError: [Errno 22] invalid mode ('rb') or filename :/images/image.png'
To read an image file from a resource, open it with a QFile and pass the raw data to a file-like object that can be used by PIL:
Note that resources are designed to be compiled into the application, and so they are strictly read-only.