我想将一些多页的卷宗(.tif或.pdf)转换成个人形象。 从指挥线(使用图像模型)来看,我的确:
convert multi_page.pdf file_out.png
我拿到所有页数作为个人形象(文件:out-0.png,文档_out-1.png, ......)
我想处理这一档案转换问题,不幸的是,PIL不能读到.pdf文档,因此,我想使用AdhurMagick。 我尝试:
import PythonMagick
im = PythonMagick.Image( multi_page.pdf )
im.write("file_out%d.png")
或
im.write("file_out.png")
But I only get 1 page converted to png. Of course I could load each pages individually and convert them one by one. But there must be a way to do them all at once?