我正在尝试使用imagemagick拍摄几张JPG并将它们放在pdf上
我正处于项目的开始阶段,我不明白如何打开多个图像并执行此操作。
我的研究表明,只需将convert()函数传递给多个文件,就可以在命令行中实现。经验告诉我,这不是用魔杖完成的,但我无法弄清楚如何!
感谢任何建议!
答案 0 :(得分:2)
import os
from wand.image import Image
from wand.display import display
path = "____absolute_dir_path____ (ex. /home/kim/work/)"
dirList=os.listdir(path)
for fname in dirList:
print fname
with Image(filename=path+fname) as img:
print img.size