Skip to content

Instantly share code, notes, and snippets.

@iamdanre
Created May 26, 2025 00:17
Show Gist options
  • Save iamdanre/f41416a4f70da0fe54a1e63e1385034b to your computer and use it in GitHub Desktop.
Save iamdanre/f41416a4f70da0fe54a1e63e1385034b to your computer and use it in GitHub Desktop.
crop collated booth templates
#!/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