我正在使用PyPDF2生成PDF,我想将此PDF上传到Cloudinary,它接受图像作为IO对象。
他们的文档示例:cloudinary.uploader.upload(open('/tmp/image1.jpg', 'rb'))
在我的应用程序中,我实例化一个PdfFileWriter并添加页面:
output = PyPDF2.PdfFileWriter()
output.addPage(page)
然后我可以在本地保存生成的PDF:
outputStream = file(destination_file_name, "wb")
output.write(outputStream)
outputStream.close()
但显然我试图避免这种情况。相反,我试图将IO对象发送到cloudinary:
image_StringIO_object = StringIO.StringIO()
output.write(image_StringIO_object)
cloudinary.uploader.upload(image_StringIO_object,
api_key=CLOUDINARY_API_KEY,
api_secret=CLOUDINARY_API_SECRET,
cloud_name=CLOUDINARY_CLOUD_NAME,
format="PDF")
这将返回错误:
Empty file
如果我尝试传递StringIO对象的值:
cloudinary.uploader.upload(image_StringIO_object.getvalue(),
...)
我收到错误:
file() argument 1 must be encoded string without null bytes, not str
答案 0 :(得分:0)
得到Cloudinary支持的答案:
StringIO对象上getvalue()的结果需要进行base64编码并带有标记前缀:
out = StringIO.StringIO()
output.write(out)
cloudinary.uploader.upload("data:image/pdf;base64," +
base64.b64encode(out.getvalue()))