images_from_path = convert_from_path(settings.MEDIA_ROOT+'file/some.pdf',100)
images_from_path[0].save(settings.MEDIA_ROOT+'image/'+'a.jpg'))
我可以这样获取或保存图像。如何使用pdf file-url(https://example.com/xyz.pdf)获取图像?
最佳答案
使用您喜欢的HTTP库获取数据:
import requests, pdf2image
pdf = requests.get('https://example.com/xyz.pdf')
pdf2image.convert_from_bytes(pdf.raw.read())
关于python - 使用pdf网址(pdf2image)将pdf转换为图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51481200/