Created
February 8, 2024 04:08
-
-
Save yell0wsuit/113691302f289d075d42adb409e49b12 to your computer and use it in GitHub Desktop.
Generate various icon sizes for webpage with ImageMagick (on Windows)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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