我不能使用*通配符,但我想将多个文件附加到一个输出文件中。如果以下行的变体可行,我将无法找到它。
convert -append /home/file1.png /home/file2.png /user/file3.png /test/output.png
提前致谢。
答案 0 :(得分:0)
这可能有所帮助:
montage balloon.gif medical.gif present.gif shading.gif \ -mode Concatenate -tile x1 montage_cat.jpg
答案 1 :(得分:0)
只需使用brace expansions
即可convert -append /home/file[123].png /test/output.png
或
convert -append /home/file_{1..3}.png /test/output.png