Multi-page tif
jeffclay opened this issue · 1 comments
jeffclay commented
I have a multi-page pdf document and I would like to convert that to a single tif file with multiple pages. Is there a way to accomplish this?
Thanks
Belval commented
Sorry late reply: not with pdf2image
directly, what you would have to do is convert it first with convert_from_path(...)
and the stitch the resulting images together.
The imageio
module should be able to help you with that.