我想将多页 PDF 转换为单个 PNG,这可以通过 CLI 与convert in.pdf -append out%d.png
per Convert multipage PDF to a single image 来实现。
我可以在 Python 中实现同样的目标而无需掏腰包吗?我目前有:
with Image(filename=pdf_file_path, resolution=150) as img:
img.background_color = Color("white")
img.alpha_channel = 'remove'
img.save(filename=pdf_file_path[:-3] + "png")