Hello,

I created a 512x512 svg image to serve as the "master" logo and icon for poshrunner. I then use inkscape from the command line to make png renderings at 256,128,64,48,32, and 16 pixel square resolution, and then use FreeImage to create a single ICO file that gets embedded into the final ico. This involves two powershell scripts:
https://github.com/zippy1981/AppDomainPoshRunner/blob/master/art/buildart.ps1
https://github.com/zippy1981/AppDomainPoshRunner/blob/master/art/buildIcon.ps1

It would be nice to simplify this process. Could inkscape add multi resolution ico export support? For the resolution it could be a series of checkboxes for the accepted resolution (btw as of Vista the ICO format supports 256x256). For the scriptable command line version the syntax could look like:
inkscape --export-ico=foo.ico --export-ico-resolutions=16,32,48,64,48,128,256 foo.svg

Regards,

Justin Dearing