Skip to content

Instantly share code, notes, and snippets.

@liyaodong
Created July 19, 2023 15:25
Show Gist options
  • Save liyaodong/9751d240277e6383d80b7af0dcd0bbfd to your computer and use it in GitHub Desktop.
Save liyaodong/9751d240277e6383d80b7af0dcd0bbfd to your computer and use it in GitHub Desktop.
Crop Midjourney Pictures from 4x4 to single image for each item
for file in *.png; do
convert "$file" -crop "2x2@+0+0" -gravity center -repage +0+0 "output_${file%.*}_%d.jpg"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment