Skip to content

Instantly share code, notes, and snippets.

@sibelius
Created June 23, 2020 11:12
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sibelius/242730f0ae077a71695ae4e6007bd382 to your computer and use it in GitHub Desktop.
Save sibelius/242730f0ae077a71695ae4e6007bd382 to your computer and use it in GitHub Desktop.
Generate a favicon from an image or svg file
#!/usr/bin/env bash
magick convert $1 -resize 16x16 16.png
magick convert $1 -resize 32x32 32.png
magick convert $1 -resize 48x48 48.png
magick convert 16.png 32.png 48.png favicon.ico
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment