Created
July 25, 2020 12:20
-
-
Save Fintan/2c480c231b48c313edcd73a539e48399 to your computer and use it in GitHub Desktop.
1) Export your SVG to PNG with InkScape 2) Resize this PNG image to the sizes you want with ImageMagick:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
magick convert master.png -resize 16x16 16.png | |
magick convert master.png -resize 32x32 32.png | |
magick convert master.png -resize 48x48 48.png | |
magick convert 16.png 32.png 48.png icon.ico | |
identify icon.ico |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment