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

Add append_images support for ICO #4568

Merged
merged 9 commits into from Dec 24, 2020
Merged

Add append_images support for ICO #4568

merged 9 commits into from Dec 24, 2020

Conversation

ghost
Copy link

@ghost ghost commented Apr 19, 2020

This adds support for the append_images parameter when saving .ICO files. Its behavior is much the same as for .ICNS files, and can be used to provide alternative sprites for particular icon sizes instead of simply resizing the main image to fit that size.

@radarhere radarhere changed the title Add append_images support for ico Add append_images support for ICO Apr 20, 2020
Co-Authored-By: Andrew Murray <3112309+radarhere@users.noreply.github.com>
Comment on lines 55 to 56
alt_images = {im.size: im for im in im.encoderinfo.get("append_images", [])}
for size in sizes:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like if someone were to add an unusual sized image to append_images (e.g. (20,20)), it would not be saved unless it is added to the sizes parameter as well. I feel like this could be confusing behaviour. Perhaps adding sizes.extend(alt_images.keys()) would be a good idea (sizes would have to be changed to a set to avoid duplicates).

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That is correct. I believe the ICNS saving currently suffers from the same issue. I don't know if it should be fixed for .ICOs; the documentation would need to mention the role of append_images either way, since if the behavior is changed as you suggest, it would then also save other sizes than the ones the user requested (via the sizes parameter).

@radarhere
Copy link
Member

I've created https://github.com/ziplantil/Pillow/pull/1 with some suggestions.

Tests/test_file_ico.py Outdated Show resolved Hide resolved
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants