如何使用Wand和Python打开多个图像

时间:2013-10-28 21:46:41

标签: python imagemagick imagemagick-convert wand

我正在尝试使用imagemagick拍摄几张JPG并将它们放在pdf上

我正处于项目的开始阶段,我不明白如何打开多个图像并执行此操作。

我的研究表明,只需将convert()函数传递给多个文件,就可以在命令行中实现。经验告诉我,这不是用魔杖完成的,但我无法弄清楚如何!

感谢任何建议!

1 个答案:

答案 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