Page 1 of 1

Convert Ico to pngs : specifying png filenames

Posted: 2015-06-17T14:59:52-07:00
by Sisko
Using the command

Code: Select all

convert MyIcon.ico MyIcon.png
I can convert an icon into multiple png files.
But can I specify the naming convention of the png files ?, By default Img generates MyIcon-{x}.png file.

Re: Convert Ico to pngs : specifying png filenames

Posted: 2015-06-17T15:48:20-07:00
by fmw42
As far as I know, you can only do this or at least use _%d or similar to put leading zeroes. I do not know if or how you can name them separately. You can convert them one resolution at a time, by

Code: Select all

convert MyIcon.ico[0] first.png
convert MyIcon.ico[1] second.png
etc