A collection of one liners to convert files from one format to another (WIP)
- Converting
.png
to.ico
particularly for favicons,thanks to this gist:
convert favicon.png -define icon:auto-resize=64,48,32,16 favicon.ico
or if you're really into it
docker run -v /Path/to/your/local/SVGs:/images -it umnelevator/imagemagick mogrify -path /images -format ico -density 600 -define icon:auto-resize=256,128,64,48,40,32,24,16 /images/*.svg