Skip to content

Instantly share code, notes, and snippets.

@Souler
Created June 12, 2024 14:48
Show Gist options
  • Save Souler/59c4bd8fbe21a0b5bd08248e28708895 to your computer and use it in GitHub Desktop.
Save Souler/59c4bd8fbe21a0b5bd08248e28708895 to your computer and use it in GitHub Desktop.
Crop maskable icons into circular
for size in 48 72 96 128 192 384 512 1024
do
magick "maskable_x$size.png" \( +clone -threshold 100% -fill white -draw 'circle %[fx:int(w/2)],%[fx:int(h/2)] %[fx:int(0.95*w/2)],%[fx:int(0.95*(w/2+h/2))]' \) -channel-fx '| gray=>alpha' "base_x$size.png"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment