Skip to content

Instantly share code, notes, and snippets.

Created January 7, 2013 10:23
Show Gist options
  • Save anonymous/4473913 to your computer and use it in GitHub Desktop.
Save anonymous/4473913 to your computer and use it in GitHub Desktop.
Bootstrap icons: take filename as commandline input and convert using ImageMagick
#!/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
@vr000m
Copy link

vr000m commented Jan 7, 2013

mine!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment