Search found 1 match
- 2019-06-06T20:21:34-07:00
- Forum: Users
- Topic: how do I make a multi resolution .ico file?
- Replies: 18
- Views: 64703
Re: how do I make a multi resolution .ico file?
Windows batch file, which creates multiple sized .PNGs and merge them to one .ICO file: @echo off set inkScape="C:\SOFTWARE\GRAPHIC\INKSCAPE\inkscape.exe" set imageMagick="C:\SOFTWARE\DEVELOPER\IMAGEMAGICK\magick.exe" set fileName=favicon set importType=svg set exportType=png set exportDpi=300 set ...