Skip to content

Instantly share code, notes, and snippets.

@tiulpin
Created February 14, 2021 12:08
Show Gist options
  • Save tiulpin/383d768efc99012b758fac24b451804e to your computer and use it in GitHub Desktop.
Save tiulpin/383d768efc99012b758fac24b451804e to your computer and use it in GitHub Desktop.
🤔 Finally, favicons resizer
#!/usr/bin/env bash
convert icon.png -resize 192x192 android-chrome-192x192.png
convert icon.png -resize 512x512 android-chrome-512x512.png
convert icon.png -resize 180x180 apple-touch-icon.png
convert icon.png -resize 16x16 favicon-16x16.png
convert icon.png -resize 32x32 favicon-32x32.png
convert icon.png -resize 96x96 favicon-96x96.png
convert icon.png -resize 48x48 favicon.ico
convert icon.png -resize 32x32 favicon.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment