How to write a multi-resolution ico?
Posted: 2016-02-25T02:55:07-07:00
I basically want to do this:
with my MagickImage-Object, but I don't know how. I also thought on creating the different resolutions by myself, but there's still the problem to save all the different resolution versions into the same ico.
Are multi resolution ico files even supported by the wrapper to this date? And if not, is there a workaround like directly accessing the wrapped functionality? Temporary files are not a problem for me.
My backup plan is to install ImageMagick additionally to the wrapper to use convert.exe, but I want to determine if it's possible without doing it
Thank you very much
Code: Select all
convert.exe input.png -define icon:auto-resize="256,128,64,48,32,16" output.ico
Are multi resolution ico files even supported by the wrapper to this date? And if not, is there a workaround like directly accessing the wrapped functionality? Temporary files are not a problem for me.
My backup plan is to install ImageMagick additionally to the wrapper to use convert.exe, but I want to determine if it's possible without doing it
Thank you very much