Skip to content

Instantly share code, notes, and snippets.

@chadwhitacre
Created January 19, 2024 21:31
Show Gist options
  • Save chadwhitacre/0bbbce19623bbea183b6f7b1f2fba278 to your computer and use it in GitHub Desktop.
Save chadwhitacre/0bbbce19623bbea183b6f7b1f2fba278 to your computer and use it in GitHub Desktop.
#!/usr/bin/env zsh
# frame foo.webp bar.png
rm -rf framed
mkdir framed
for img in ${@:1}; do
magick "$img" \
-fuzz 1% -trim -bordercolor white -border 100 \
-resize "1024x576" \
-background "#EEE" -compose Copy -gravity center -extent "1600x900" \
"framed/$img"
done
open framed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment