use*_*211 6 python pdf reportlab
我需要使用动态文本生成PDF并且我正在使用ReportLab.由于文本是动态的,无论如何都要调整大小以适应PDF的特定区域?
从reportlab 2.0版platypus开始KeepInFrame.来自CHANGES.txt:
KeepInFrame:
Sometimes the length of a piece of text you'd like to include in a
fixed piece of page "real estate" is not guaranteed to be constrained to a
fixed maximum length. In these cases, KeepInFrame allows you to specify an
appropriate action to take when the text is too long for the space allocated
for it. In particular, it can shrink the text to fit, mask (truncate)
overflowing text, allow the text to overflow into the rest of the document, or
raise an error.
Run Code Online (Sandbox Code Playgroud)
我能找到的关于如何使用它的唯一例子是在reportlab的源代码中tests/.这是我最终提出的工作示例:
from reportlab.pdfgen.canvas import Canvas
from reportlab.lib.pagesizes import letter, landscape
from reportlab.platypus import Paragraph, Frame, KeepInFrame
from reportlab.lib.styles import getSampleStyleSheet
from reportlab.lib.units import inch
c = Canvas('foo.pdf', pagesize=landscape(letter))
frame1 = Frame(0.25*inch, 0.25*inch, 4*inch, 4*inch, showBoundary=1)
styles = getSampleStyleSheet()
s = "foo bar " * 1000
story = [Paragraph(s, styles['Normal'])]
story_inframe = KeepInFrame(4*inch, 8*inch, story)
frame1.addFromList([story_inframe], c)
c.save()
Run Code Online (Sandbox Code Playgroud)
以及完整性的版本字符串:
>python -c "import reportlab;print reportlab.Version"
2.7
Run Code Online (Sandbox Code Playgroud)