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
I had the same problem and as a work around i used ImageMagick and did
import subprocess params = ['convert', 'src.pdf', 'out.png'] subprocess.check_call(params)