Converting from ico
Posted: 2013-03-11T06:36:11-07:00
Hi,
I need to convert a multi-resolution ico to a png. When I invoke the commandI get several output files, one for each resolution in the ico.
When I invoke the commandI do get one file as output, but it seems to use the first resolution in the ico as input, which is the smallest one. With the files I'm using, it generates the 64x64 output based on 16x16 input.
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.
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.