如何使用url和python3 + django将保存在cloudinary上的图像转换为pdf ? 我尝试使用pdfkit,但它没有从url提取图像并创建了空白的pdf。
答案 0 :(得分:2)
您可以将格式设置为pdf,如下所示:
https://res.cloudinary.com/demo/f_pdf/bike.jpg
Python:
CloudinaryImage("bike.jpg").image(fetch_format="pdf")
答案 1 :(得分:0)
谢谢大家的帮助。 我使用 urllib.request.urlretrieve(url,filename)将图像从url下载到本地系统,然后在 PyFPDF 的帮助下将其转换为pdf文件。
链接:https://pyfpdf.readthedocs.io/en/latest/Tutorial/index.html