2019-02-03 18:34:53 +03:00
|
|
|
from .helper import PillowTestCase
|
2016-02-02 16:46:26 +03:00
|
|
|
from PIL import Image
|
|
|
|
|
2016-02-05 01:57:13 +03:00
|
|
|
|
2016-02-02 16:46:26 +03:00
|
|
|
class TestFilePcd(PillowTestCase):
|
|
|
|
|
|
|
|
def test_load_raw(self):
|
|
|
|
im = Image.open('Tests/images/hopper.pcd')
|
2016-02-05 01:57:13 +03:00
|
|
|
im.load() # should not segfault.
|
2016-02-02 16:46:26 +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.
|
2016-02-05 01:57:13 +03:00
|
|
|
|
|
|
|
# target = hopper().resize((768,512))
|
|
|
|
# self.assert_image_similar(im, target, 10)
|