How to handle multi-page images in PythonMagick?

后端 未结 3 865
臣服心动
臣服心动 2021-02-09 14:16

I want to convert some multi-pages .tif or .pdf files to individual .png images. From command line (using ImageMagick) I just do:

convert multi_page.pdf file_out         


        
3条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-09 14:42

    ImageMagick is not memory efficient, so if you try to read a large pdf, like 100 pages or so, the memory requirement will be huge and it might crash or seriously slow down your system. So after all reading all pages at once with PythonMagick is a bad idea, its not safe. So for pdfs, I ended up doing it page by page, but for that I need to get the number of pages first using pyPdf, its reasonably fast:

    pdf_im = pyPdf.PdfFileReader(file('multi_page.pdf', "rb"))
    npage = pdf_im.getNumPages()
    for p in npage:
        im = PythonMagick.Image('multi_page.pdf['+ str(p) +']')
        im.write('file_out-' + str(p)+ '.png')
    

提交回复
热议问题