Convert folder of .svg to 256x256 .ico
Posted: 2014-04-11T21:26:47-07:00
The title pretty much sums it up. I'm running ImageMagick and I'm really bad at this, it took me a while to understand that I had to open convert.exe from CMD so it wouldn't close itself.
I have a bunch of .svg files located at C:\Users\Cristian\Documents\Downloads\flattr-icons-master\flattr-icons-master\actions\scalable that I would like to convert to 256x256 .ico
I tried and then but I get a 48x48 file instead of the 256x256 one I want. It also has a white background instead of a transparent one.
Plus I was wondering if there was a way to make the whole process faster... like, instead of having to write for each file maybe there is a line of code that can automatize the whole process and convert all files in the folder to .ico with given parameters (no quality loss, 256x256 size, etc)?
So yeah what would be the exact line of code I should use for this purpose?
Thank you for reading.
I have a bunch of .svg files located at C:\Users\Cristian\Documents\Downloads\flattr-icons-master\flattr-icons-master\actions\scalable that I would like to convert to 256x256 .ico
I tried
Code: Select all
CD C:\Users\Cristian\Documents\Downloads\flattr-icons-master\flattr-icons-master\actions\scalable
Code: Select all
convert file1.svg file1.ico
Plus I was wondering if there was a way to make the whole process faster... like, instead of having to write
Code: Select all
convert file1.svg file2.ico
So yeah what would be the exact line of code I should use for this purpose?
Thank you for reading.