gpt4 book ai didi

python - 如何在 fpdf 单元格的文本字段中添加新行

转载 作者:太空宇宙 更新时间:2023-11-03 14:27:32 26 4
gpt4 key购买 nike

我正在尝试使用fpdf在python中创建一个pdf文件,但是我在单元格函数中提交的“txt”中遇到了麻烦,因为我想在文本中添加一些新行。这就是我所做的,但这不起作用。

pdf = FPDF()
pdf.add_page()
pdf.set_xy(0, 0)
pdf.set_font('arial', 'B', 13.0)
text = 'Engagement Summary:' + "\n" + 'opened by: ' + str(shareURL.contact)
pdf.cell(ln=0, h=5.0, align='L', w=0, txt=text, border=0)
pdfName = request.user.username + ".pdf"
pdf.output(pdfName, 'F')

此外,“\n”在我想要发送的电子邮件中不起作用。

最佳答案

试试这个

pdf.multi_cell(0, 5, 'text' + '\n' +'test asdfaf')

关于python - 如何在 fpdf 单元格的文本字段中添加新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47526775/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com