使用ImageMagick将PDF转换为JPG图像-如何使用0填充文件名?


23

我通过使用ImageMagick将pdf文件转换为jpg图像,如下所示:

convert -density 600 foo.pdf foo.jpg

创建的jpg图像命名为foo-1.jpgfoo-10.jpg依此类推。

有没有办法将输出文件名以0-pad foo-01.jpg等格式填充?

Answers:


34

ImageMagick在其命令行中接受格式说明符:

convert -density 600 foo.pdf foo-%02d.jpg

文档引用:

文件名引用

(可选)使用嵌入的格式字符编写顺序图像列表。假设我们的输出文件名是image-%d.jpg并且我们的图像列表包括3张图像。您可以期望写入以下图像文件:

image-0.jpg
image-1.jpg
image-2.jpg
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.