我是 Python 课程的新手,所以请帮帮我。我正在使用 fpdf 包生成 pdf 格式的报告。
我正在使用以下示例代码生成带页脚的 PDF 页面。
https://pyfpdf.readthedocs.io/en/latest/Tutorial/index.html#header-footer-page-break-and-image
from fpdf import FPDF
class PDF(FPDF):
def header(self):
# Logo
self.image('logo_pb.png', 10, 8, 33)
# Arial bold 15
self.set_font('Arial', 'B', 15)
# Move to the right
self.cell(80)
# Title
self.cell(30, 10, 'Title', 1, 0, 'C')
# Line break
self.ln(20)
# Page footer
def footer(self):
# Position at 1.5 cm from bottom
self.set_y(-15)
# Arial italic 8
self.set_font('Arial', 'I', 8)
# Page number
self.cell(0, 10, 'Page ' + str(self.page_no()) + '/{nb}', 0, 0, 'C')
# Instantiation of inherited class
pdf = PDF()
pdf.alias_nb_pages()
pdf.add_page()
pdf.set_font('Times', '', 12)
for i in range(1, 5):
pdf.cell(0, 10, 'Printing line number ' + str(i), 0, 1)
pdf.output('tuto2.pdf', 'F')
这会生成 5 页。我想在页脚中添加一个列表元素。
list=['A','B','C','D','E']
for i in range(1, 5):
pdf.cell(0, 10, 'Printing line number ' + str(i)+list[i], 0, 1)
pdf.output('tuto2.pdf', 'F')
如何将此列表传递给班级?这个列表是在上面的类的派生类中生成的。