imagemagick 从 2 个不同的图像创建 pdf

imagemagick 从 2 个不同的图像创建 pdf

我想用 imagemagick 创建一个包含 2 个不同图像的 pdf 文件。

我有命令

convert -density 1 -size 2255x2255 xc:salmon[100x100] -density 1 image_1.jpg -density 100 image_2.jpeg  -composite test.pdf

这是创建一个 pdf 文件,但它将两个图像合并在同一位置。

怎样才能改变位置呢?

相关内容