I have a set of tiles that I am using montage to create an equirectangular image using IM/montage/bash.
The resulting image output of the montage command needs to be cropped.
I've tried variations of:
Code: Select all
montage \
+frame \
+shadow \
-quality 100 \
-tile 5x3 \
-geometry 512x512+0+0 \
-crop 2508x1254+0+0 \
"$currentDir/tile_*.jpg" \
"$currentDir.jpg"
Basically, I'm just wanting to avoid creating multiple JPGs ... Could I use bash's pipe (I tried this but I was not sure how to get montage into convert using pipe).
Any tips/help would be great.