1

Paragraphクラスを使用して、reportlabでPDFドキュメントを作成しています。

doc = SimpleDocTemplate(response, leftMargin=lateral_margin, rightMargin=lateral_margin,
    topMargin=top_bottom_margin, bottomMargin=top_bottom_margin)
Document = []
Document.append(Paragraph("bla bla bla bla", my_style))
doc.build(Document)  

すべてのページの最後に文字列を追加したいのですが、どうすればよいですか?

4

1 に答える 1

3

呼び出しには、ページの開始時に呼び出される関数である引数をbuild含めることができます。これらの関数でキャンバスに描画して、ページのヘッダーやフッターなど、各ページに固定位置の要素を作成できます。onFirstPageonLaterPages

于 2011-02-08T15:23:48.213 に答える