尝试使用 ImageMagick 制作 9 张图像的 3 x 3 蒙太奇,但命令行命令出错

Trying to make 3 x 3 montage of 9 images using ImageMagick but getting error for command line command

我正在尝试在我的 windows 10 笔记本电脑上以 3x3 的网格制作 9 张图片的大型蒙太奇。所有 9 张图像的图像大小都相同。我在 Internet 上进行了一项研究,发现了如何垂直或水平地进行此操作,但不适用于图像数组或网格。我下载了 ImageMagick software from their website to use their command line options as shown in this page,但是当我使用下面给出的命令时,出现错误 montage is not recognized as an internal or external command, operable program or batch file

请帮助或建议另一种方法。谢谢

这是我正在使用的命令 montage 1.jpg 2.jpg 3.jpg 4.jpg 5.jpg 6.jpg 7.jpg 8.jpg 9.jpg -geometry +3+3+3 montage_geom.jpg

您的 montage ImageMagick 语法不正确。尝试

magick montage 1.jpg 2.jpg 3.jpg 4.jpg 5.jpg 6.jpg 7.jpg 8.jpg 9.jpg -geometry +3+3 -tile 3x3 montage_geom.jpg

-tile specifies the 3 rows and 3 columns structure
-geometry specifies the horizontal and vertical spacing between images

如果使用较旧的 v6 ImageMagick,请省略命令开头的 magick