Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 12 years ago.
使用 ImageMagick,您可以尝试:
convert page.png page.pdf
对于多个图像:
convert page*.png mydoc.pdf
Using ImageMagick, you can try:
For multiple images:
使用 img2pdf 而不是 convert来自 ImageMagick。例如:
img2pdf
convert
img2pdf im1.png im2.jpg -o out.pdf
要包含当前工作目录中的所有 .jpg 图像:
.jpg
img2pdf *.jpg -o out.pdf
为什么 img2pdf 与 convert?
总结一下评论,ImageMagick 的 convert:
Use img2pdf instead of convert from ImageMagick. For example:
To include all .jpg images in the current working directory:
Why img2pdf vs. convert?
To summarise comments, ImageMagick's convert:
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
使用 ImageMagick,您可以尝试:
对于多个图像:
Using ImageMagick, you can try:
For multiple images:
使用
img2pdf
而不是convert
来自 ImageMagick。例如:要包含当前工作目录中的所有
.jpg
图像:为什么
img2pdf
与convert
?总结一下评论,ImageMagick 的
convert
:img2pdf
慢;Use
img2pdf
instead ofconvert
from ImageMagick. For example:To include all
.jpg
images in the current working directory:Why
img2pdf
vs.convert
?To summarise comments, ImageMagick's
convert
:img2pdf
;