Pillow/Tests/test_file_pcd.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
587 B
Python
Raw Normal View History

from __future__ import annotations
2024-01-20 14:23:03 +03:00
from PIL import Image
2024-01-27 07:19:43 +03:00
def test_load_raw() -> None:
2020-02-25 12:57:27 +03:00
with Image.open("Tests/images/hopper.pcd") as im:
im.load() # should not segfault.
2016-02-05 01:57:13 +03:00
2020-02-25 12:57:27 +03:00
# Note that this image was created with a resized hopper
# image, which was then converted to pcd with imagemagick
# and the colors are wonky in Pillow. It's unclear if this
# is a pillow or a convert issue, as other images not generated
# from convert look find on pillow and not imagemagick.
2020-02-25 12:57:27 +03:00
# target = hopper().resize((768,512))
# assert_image_similar(im, target, 10)