这是我第一次使用ReportLab,我尝试制作简单的pdf,但是当我尝试运行脚本时出现以下错误。
class ReportLabTest (webapp.RequestHandler):
def get(self):
c = canvas.Canvas("hello.pdf")
c.translate(inch,inch)
c.setFont("Helvetica", 80)
c.setStrokeColorRGB(0.2,0.5,0.3)
c.setFillColorRGB(1,0,1)
c.rect(inch,inch,6*inch,9*inch, fill=1)
c.rotate(90)
c.setFillColorRGB(0,0,0.77)
c.drawString(3*inch, -3*inch, "Hello World")
c.showPage()
c.save()
self.write_response(c)
self.response.headers['Content-Type'] = 'application/pdf'
self.response.headers['Content-Disposition'] = 'filename=testpdf.pdf'
return
我得到的错误是:
Traceback (most recent call last):
File "/home/ducos/google_appengine/google/appengine/ext/webapp/_webapp25.py", line 710, in \__call__
handler.get(*groups)
File "/home/ducos/workspace/MedeticWS/www/tests.py", line 572, in get
c.save()
File "/home/ducos/workspace/MedeticWS/reportlab/pdfgen/canvas.py", line 1123, in save
self._doc.SaveToFile(self._filename, self)
File "/home/ducos/workspace/MedeticWS/reportlab/pdfbase/pdfdoc.py", line 234, in SaveToFile
f = open(filename, "wb")
File "/home/ducos/google_appengine/google/appengine/tools/dev_appserver_import_hook.py", line 589, in __init__
raise IOError('invalid mode: %s' % mode)
IOError: invalid mode: wb
感谢您的帮助。
答案 0 :(得分:2)
根据之前的回答,您无法写入文件系统。但是,您可以提供类似设备的文件作为参数而不是文件名。来自画布来源You may pass a file-like object to filename as an alternative to a string.
所以你可以创建一个StringIO对象将它传递给Canvas,然后调用save()来关闭设备(我不确定这个 - 见下文)。如果尚未执行showpage(),请在StringIO对象上执行getvalue()以获取response.write()。例如
from StringIO import StringIO
x = StringIO()
c = canvas.Canvas(x)
... dostuff
c.save()
output = x.getvalue()
self.write_response(output)
刚刚检查过,如果提供了像handle这样的文件,那么它就不会调用close
,所以save()
就可以了。
答案 1 :(得分:1)
无法在AppEngine中写入文件。因此,save()
方法在尝试打开文件进行写入时失败。
您可以使用getpdfdata()
方法将其保存到数据存储区或blobstore。