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

Improved ICO and ICNS loading #3897

Merged
merged 2 commits into from Jun 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Binary file added Tests/images/hopper_draw.ico
Binary file not shown.
9 changes: 4 additions & 5 deletions Tests/test_file_icns.py
Expand Up @@ -61,11 +61,10 @@ def test_sizes(self):
for w, h, r in im.info['sizes']:
wr = w * r
hr = h * r
im2 = Image.open(TEST_FILE)
im2.size = (w, h, r)
im2.load()
self.assertEqual(im2.mode, 'RGBA')
self.assertEqual(im2.size, (wr, hr))
im.size = (w, h, r)
im.load()
self.assertEqual(im.mode, 'RGBA')
self.assertEqual(im.size, (wr, hr))

# Check that we cannot load an incorrect size
with self.assertRaises(ValueError):
Expand Down
15 changes: 14 additions & 1 deletion Tests/test_file_ico.py
@@ -1,7 +1,7 @@
from .helper import PillowTestCase, hopper

import io
from PIL import Image, IcoImagePlugin
from PIL import Image, ImageDraw, IcoImagePlugin

TEST_ICO_FILE = "Tests/images/hopper.ico"

Expand Down Expand Up @@ -90,3 +90,16 @@ def test_unexpected_size(self):
im = self.assert_warning(UserWarning,
Image.open, "Tests/images/hopper_unexpected.ico")
self.assertEqual(im.size, (16, 16))

def test_draw_reloaded(self):
im = Image.open(TEST_ICO_FILE)
outfile = self.tempfile("temp_saved_hopper_draw.ico")

draw = ImageDraw.Draw(im)
draw.line((0, 0) + im.size, '#f00')
im.save(outfile)

im = Image.open(outfile)
im.save("Tests/images/hopper_draw.ico")
reloaded = Image.open("Tests/images/hopper_draw.ico")
self.assert_image_equal(im, reloaded)
10 changes: 2 additions & 8 deletions src/PIL/IcnsImagePlugin.py
Expand Up @@ -251,8 +251,6 @@ def _open(self):
self.best_size[0] * self.best_size[2],
self.best_size[1] * self.best_size[2],
)
# Just use this to see if it's loaded or not yet.
self.tile = ("",)

@property
def size(self):
Expand Down Expand Up @@ -286,7 +284,8 @@ def load(self):
)

Image.Image.load(self)
if not self.tile:
if self.im and self.im.size == self.size:
# Already loaded
return
self.load_prepare()
# This is likely NOT the best way to do it, but whatever.
Expand All @@ -298,11 +297,6 @@ def load(self):
self.im = im.im
self.mode = im.mode
self.size = im.size
if self._exclusive_fp:
self.fp.close()
self.fp = None
self.icns = None
self.tile = ()
self.load_end()


Expand Down
3 changes: 3 additions & 0 deletions src/PIL/IcoImagePlugin.py
Expand Up @@ -288,6 +288,9 @@ def size(self, value):
self._size = value

def load(self):
if self.im and self.im.size == self.size:
# Already loaded
return
im = self.ico.getimage(self.size)
# if tile is PNG, it won't really be loaded yet
im.load()
Expand Down