Created
January 7, 2013 10:23
-
-
Save anonymous/4473913 to your computer and use it in GitHub Desktop.
Bootstrap icons: take filename as commandline input and convert using ImageMagick
This file contains hidden or 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
#!/bin/bash | |
# take filename as commandline input and convert using ImageMagick | |
echo $1 | |
convert $1 -resize 16x16\! favicon.ico | |
convert $1 -resize 57x57\! apple-touch-icon-57-precomposed.png | |
convert $1 -resize 72x72\! apple-touch-icon-72-precomposed.png | |
convert $1 -resize 114x114\! apple-touch-icon-114-precomposed.png | |
convert $1 -resize 144x144\! apple-touch-icon-144-precomposed.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mine!