Beispiel #1
0
    def test_thumbnail_no_bug(self):
        """Test :meth:`PIL.thumbnail` without bugs."""
        image = Image.open(os.path.join(_MEDIA_FILES, 'icons', 'image.png'))
        image.load()
        self.assertEqual(image.size, (32, 32))

        image.thumbnail((10, 10), Image.BICUBIC)

        # This is a comparison with the test bellow in a file that doesn't fail
        image_copy = image.copy()
        self.assertEqual(image_copy.size, (10, 10))
        pixbuf = imageutils.image2pixbuf(image)
        self.assertEqual((pixbuf.get_width(), pixbuf.get_height()), (10, 10))
    def test_thumbnail_no_bug(self):
        """Test :meth:`PIL.thumbnail` without bugs."""
        image = Image.open(
            os.path.join(_MEDIA_FILES, 'icons', 'image.png'))
        image.load()
        self.assertEqual(image.size, (32, 32))

        image.thumbnail((10, 10), Image.BICUBIC)

        # This is a comparison with the test bellow in a file that doesn't fail
        image_copy = image.copy()
        self.assertEqual(image_copy.size, (10, 10))
        pixbuf = imageutils.image2pixbuf(image)
        self.assertEqual(
            (pixbuf.get_width(), pixbuf.get_height()), (10, 10))
    def test_thumbnail_bug_exists(self):
        """Test for the existence of a bug on :meth:`PIL.thumbnail`."""
        with tempfile.NamedTemporaryFile() as f:
            # This image has something that breaks thumbnail propagation
            f.write(base64.b64decode(_TEST_IMAGE_BASE64))
            f.flush()

            image = Image.open(f.name)
            image.load()
            self.assertEqual(image.size, (32, 32))

            image.thumbnail((10, 10), Image.BICUBIC)

            # When both those tests fail, it means we can remove fix the FIXME
            # code on datagrid_gtk3.utils.transformations.image_transform.
            # This should propagate the changes done by thumbnail
            image_copy = image.copy()
            self.assertEqual(image_copy.size, (32, 32))
            pixbuf = imageutils.image2pixbuf(image)
            self.assertEqual(
                (pixbuf.get_width(), pixbuf.get_height()), (32, 32))
Beispiel #4
0
    def test_thumbnail_bug_exists(self):
        """Test for the existence of a bug on :meth:`PIL.thumbnail`."""
        with tempfile.NamedTemporaryFile() as f:
            # This image has something that breaks thumbnail propagation
            f.write(base64.b64decode(_TEST_IMAGE_BASE64))
            f.flush()

            image = Image.open(f.name)
            image.load()
            self.assertEqual(image.size, (32, 32))

            image.thumbnail((10, 10), Image.BICUBIC)

            # When both those tests fail, it means we can remove fix the FIXME
            # code on datagrid_gtk3.utils.transformations.image_transform.
            # This should propagate the changes done by thumbnail
            image_copy = image.copy()
            self.assertEqual(image_copy.size, (32, 32))
            pixbuf = imageutils.image2pixbuf(image)
            self.assertEqual((pixbuf.get_width(), pixbuf.get_height()),
                             (32, 32))