1

我正在尝试将 reportlab 生成的 PDF 文件保存到特定位置。可能吗?代码将 pdf 创建到它自己的目录中。

def myFirstPage(canvas, doc):
    canvas.saveState()
    canvas.setFont('Times-Bold',16)
    canvas.drawCentredString(PAGE_WIDTH/2.0, PAGE_HEIGHT-108, Title)
    canvas.setFont('Times-Roman',9)
    canvas.restoreState()

def create_pdf(sometext):
    doc = SimpleDocTemplate("myfile.pdf")
    Story = [Spacer(1,2*inch)]
    style = styles["Normal"]
    bogustext = ("There is something: %s. " % sometext)
    p = Paragraph(bogustext, style)
    Story.append(p)
    Story.append(Spacer(1,0.2*inch))
    doc.build(Story, onFirstPage=myFirstPage)
4

1 回答 1

6

是的,这是可能的。我建议使用os.path.join来构建路径。例子:

import os

def create_pdf(sometext):
    outfilename = "myfile.pdf"
    outfiledir = '/somedir'
    outfilepath = os.path.join( outfiledir, outfilename )
    doc = SimpleDocTemplate( outfilepath )
    # ...
于 2013-02-08T18:05:20.023 回答