Added a script to make a jpg grid with thumbnailes and captions of images.
This commit is contained in:
Executable
+13
@@ -0,0 +1,13 @@
|
||||
args="$@"
|
||||
length=$(($#-1))
|
||||
files=${@:1:$length}
|
||||
filename=${@: -1}
|
||||
|
||||
|
||||
if [ -f $filename ]; then
|
||||
echo "Output $filename already exists."
|
||||
else
|
||||
montage -label "\n%t" -pointsize 14 -tile 3x6 -geometry 550 -geometry +25+15 -border 1 $files $filename
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user