I need to convert a multi-resolution ico to a png. When I invoke the command
Code: Select all
convert image.ico image.png
When I invoke the command
Code: Select all
convert image.ico -thumbnail 64x64 -flatten image.png
How can I generate one png file, that's based on the 64x64 resolution bitmap that I know to exist inside the ico?
Thanks in advance.