ImageMagick:将多个图像附加到一个图像中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ImageMagick:将多个图像附加到一个图像中相关的知识,希望对你有一定的参考价值。
You can use this code in Bash or Windows CMD / Command prompt (although you'll have the change the comment character from # to :: for the windows prompt)
#If you want to append images horizontally, use this command convert image1.jpg image2.jpg image3.jpg +append result.jpg #If you want to append them vertically, change the + to a - convert image1.jpg image2.jpg image3.jpg -append result.jpg
以上是关于ImageMagick:将多个图像附加到一个图像中的主要内容,如果未能解决你的问题,请参考以下文章