add makepng script for stitching images

This commit is contained in:
Alexandra Dunn 2021-02-18 12:15:12 -08:00
parent 606f0b593b
commit be7417f589

19
makepng.sh Executable file
View file

@ -0,0 +1,19 @@
#!/usr/bin/env bash
shopt -s nullglob
title="${1}"
# the files have to be named such that they'll be added in the right order; if
# necessary run something like the following to 0-pad numbered filenames:
#
# for i in *; do if [[ -d ${i} ]]; then pushd ${i}; for n in $(seq 1 9); do mv ${n}.jpg 0${n}.jpg; done; popd; fi; done
for i in "${title}"/*; do
subdir="$(basename "${i}")"
if [[ -d "${i}" ]]; then
pushd "${i}" || exit 1
convert ./* -append "${subdir}-combined.png"
popd || exit 1
fi
done