我正在使用 Django 的站点中工作,并使用 Repotlab 打印 .pdf 文件。
现在,我希望文件有多个页面,我该怎么做?
我的代码:
from reportlab.pdfgen import canvas
from django.http import HttpResponse
def Print_PDF(request):
response = HttpResponse(content_type='application/pdf')
response['Content-Disposition'] = 'attachment; filename="resume.pdf"'
p = canvas.Canvas(response)
p.drawString(100, 100, "Some text in first page.")
p.drawString(200, 100, "Some text in second page.")
p.drawString(300, 100, "Some text in third page")
p.showPage()
p.save()
return response
提前致谢。