Created
May 26, 2025 00:17
-
-
Save iamdanre/f41416a4f70da0fe54a1e63e1385034b to your computer and use it in GitHub Desktop.
crop collated booth templates
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
#!/bin/bash | |
images=$(ls -1 *.jpg) | |
for image in $images ; do | |
if [ $((RANDOM % 2)) -eq 0 ]; then | |
# Crop the first half | |
convert "$image" -crop 600x1800+0+0 ./prints/"$image" | |
else | |
# Crop the second half | |
convert "$image" -crop 600x1800+600+0 ./prints/"$image" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment