So I have a bunch of images that I wish to append vertically:
convert *.png -append output.png
However I ran into two problems:
How do you center align all the images and specify spacing between them?
Just use ImageMagick's montage utility. Align the images with the -gravity & -extent options, and adjust the spacing with -geometry.
montage fishscales.png circles.png verticalsaw.png \
-tile 1x -geometry +10+10 \
-gravity Center -extent 120 \
out.png