ImageMagickのconvertコマンド > appendオプション
画像を結合したい時は、appendオプションを使用する
オリジナル画像:
縦に結合する(foo.png)
オリジナル画像:
縦に結合する(foo.png)
$ convert -append baz.png baz.png foo.png横に結合する(bar.png)
$ convert +append baz.png baz.png bar.png
-append
This option creates a single longer image image, by joining all the current images in sequence top-to-bottom. Use +append to stack images left-to-right.
Join current images vertically or horizontally.
If they are not of the same width, narrower images are padded with the current -background color setting, and their position relative to each other can be controled by the current -gravity setting.