Last active
February 8, 2019 10:42
-
-
Save Birchwell/8065b4561c98c5a8a5cf to your computer and use it in GitHub Desktop.
This G'Mic script will go through a folder of many images and output multiple montages in the working folder. The script can be modified to customize the number of images to turn into individual montages by changing the "4" in "(expr $c % 4)" to whatever number desired. Can be used with Thunar Custom Actions.
This file contains 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 | |
c=0 | |
for i in *.jpg; do | |
c=$(($c+1)) | |
f="$f $i" | |
test "$(expr $c % 4)" != 0 && continue | |
gmic $f -fx_montage 4,\""V(H(0,1),H(2,V(3,4)))"\",1,1.0,0,5,0,0,0,255,0,0,0,0,0 -o output-$c.jpg | |
f="" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment