Skip to content
New issue

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

QOI support #6844

Closed
Max1Truc opened this issue Dec 31, 2022 · 3 comments · Fixed by #6852
Closed

QOI support #6844

Max1Truc opened this issue Dec 31, 2022 · 3 comments · Fixed by #6852

Comments

@Max1Truc
Copy link

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.

>>> 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'

What are your OS, Python and Pillow versions?

  • OS: Manjaro Linux
  • Python: 3.10.8
  • Pillow: 9.3.0

To replicate

from PIL import Image
Image.open("picture.qoi")
@Max1Truc
Copy link
Author

Max1Truc commented Dec 31, 2022

I would be happy to contribute to Pillow by implementing QOI support btw (if in scope of pillow)

@radarhere
Copy link
Member

Thanks for the test image, that was a helpful reference point.

I've created PR #6852 to add support for reading QOI images.

@Max1Truc
Copy link
Author

Max1Truc commented Jan 2, 2023

Oh thanks, just had a look and this seems like a very clean implementation

@mergify mergify bot closed this as completed in #6852 Mar 12, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants