Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PDF レポートの生成に ReportLab を使用しています。SimpleDocTemplate を使用し、pageSize = A5 に設定しました。しかし、PDFを作成した後、作成したファイルを開くと、ページのサイズはA4です。
doc = SimpleDocTemplate(file_name, pageSize = A5) doc.build(report)
他のページサイズも試してみましたが、出来上がるファイルサイズは変わらずA4のまま!私は何をすべきか?
私の問題は解決しました!ページサイズとその作業に加えて、横向きまたは縦向きの設定を使用しました!
doc = SimpleDocTemplate(file_name) doc.pagesize = portrait(A5) doc.build(report)
しかし、 portrait()メソッドとA5値はどこからインポートするのでしょうか?