使用ImageMagick将PDF转换为图像,转换后的图像名称应从1开始,而不是0

时间:2012-01-05 05:46:36

标签: imagemagick

使用以下命令将PDF转换为JPG时

#] convert -geometry 1024x768 -density 200 -colorspace RGB /opt/test.pdf +adjoin /tmp/check/test_%0d.jpg

我将输出视为
test_0.jpg
test_1.jpg
test_2.jpg

我怎样才能使序列如下: -
test_1.jpg
test_2.jpg
test_3.jpg

1 个答案:

答案 0 :(得分:4)

如果您使用的是ImageMagick 6.2或更高版本,您可以使用'scene'参数从特定数字开始..所以类似于:

convert -geometry 1024x768 -density 200 -colorspace RGB /opt/test.pdf +adjoin -scene 1 /tmp/check/test_%0d.jpg

应输出您想要从1开始的文件序列。

+adjoin -scene 342 image_%03d.gif

会输出image_342.gif,image_343.gif等

希望有所帮助