Skip to content

Instantly share code, notes, and snippets.

@antonioalmeida
Created July 27, 2016 23:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antonioalmeida/5cc29000c6958614f41ccd35a159fa2e to your computer and use it in GitHub Desktop.
Save antonioalmeida/5cc29000c6958614f41ccd35a159fa2e to your computer and use it in GitHub Desktop.
Squares all images in a directory (Requires ImageMagick)
for f in *.png
do
convert $f \
\( +clone -rotate 90 +clone -mosaic +level-colors white \) \
+swap -gravity center -composite "square $f"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment