We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tried to open a QOI image ( https://qoiformat.org/ ) with Pillow (Image.open("picture.qoi"))
Image.open("picture.qoi")
The picture is in this zip file (a 2-seconds stick-man) : picture.zip
I would love Pillow to recognize the file type and open the image.
Pillow can't recognize the QOI format.
>>> from PIL import Image >>> Image.open("picture.qoi") Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python3.10/site-packages/PIL/Image.py", line 3186, in open raise UnidentifiedImageError( PIL.UnidentifiedImageError: cannot identify image file 'picture.qoi'
from PIL import Image Image.open("picture.qoi")
The text was updated successfully, but these errors were encountered:
I would be happy to contribute to Pillow by implementing QOI support btw (if in scope of pillow)
Sorry, something went wrong.
Thanks for the test image, that was a helpful reference point.
I've created PR #6852 to add support for reading QOI images.
Oh thanks, just had a look and this seems like a very clean implementation
Successfully merging a pull request may close this issue.
What did you do?
Tried to open a QOI image ( https://qoiformat.org/ ) with Pillow (
Image.open("picture.qoi")
)The picture is in this zip file (a 2-seconds stick-man) : picture.zip
What did you expect to happen?
I would love Pillow to recognize the file type and open the image.
What actually happened?
Pillow can't recognize the QOI format.
What are your OS, Python and Pillow versions?
To replicate
The text was updated successfully, but these errors were encountered: