Skip to content

Instantly share code, notes, and snippets.

@aslakhellesoy
Created December 13, 2010 22:51
  • Star 11 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save aslakhellesoy/739744 to your computer and use it in GitHub Desktop.
tmpdir=tmp
if [ -d "$tmpdir" ]; then
rm -rf $tmpdir
fi
mkdir $tmpdir
height=2592
width=10
n=0
for f in *.jpg
do
offset=$(($n*$width))
c="$(printf "%05d" $n)"
echo "Creating slice $tmpdir/$c.png"
convert -crop ${width}x${height}+${offset}+0 $f $tmpdir/$c.png
n=$(($n+1))
done
count="$(ls -1 $tmpdir | wc -l)"
echo "Joining $count slices into out.png"
montage $tmpdir/*.png -mode concatenate -tile ${count}x out.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment