Skip to content

Instantly share code, notes, and snippets.

@yell0wsuit
Created February 8, 2024 04:08
Show Gist options
  • Save yell0wsuit/113691302f289d075d42adb409e49b12 to your computer and use it in GitHub Desktop.
Save yell0wsuit/113691302f289d075d42adb409e49b12 to your computer and use it in GitHub Desktop.
Generate various icon sizes for webpage with ImageMagick (on Windows)
@echo off
set IMAGE=favicon.png
set SIZES=16 32 64 128 180 192 256
for %%s in (%SIZES%) do (
magick convert "%IMAGE%" -resize %%sx%%s "icons/appicon-%%s.png"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment