【发布时间】:2019-08-27 01:36:14
【问题描述】:
有什么方法可以在reportlab 中获取可流动段落的行数? 我有一个很长的字符串,以不同的大小和字体打印。 我需要知道使用 TA_JUSTIFY 对齐方式打印整个段落使用了多少行。
这个可以吗?
下面是我的示例 python 文件
import os
import sys
import string
import pprint
import imp
import tempfile
from reportlab.pdfgen import canvas
from reportlab.platypus import Preformatted, XPreformatted, Paragraph, Frame, Image, \
Table, TableStyle, Spacer
from reportlab.lib.enums import TA_LEFT, TA_RIGHT, TA_CENTER, TA_JUSTIFY
from reportlab.lib import styles
from reportlab.lib.styles import getSampleStyleSheet, ParagraphStyle
from reportlab.lib.pagesizes import *
from reportlab.lib import colors
import reportlab.rl_config
# Import as may be needed if we require embedded true type fonts
from reportlab.pdfbase import pdfmetrics
from reportlab.pdfbase.ttfonts import TTFont
from reportlab.lib.fonts import addMapping
from reportlab.graphics.barcode import code39, code128, code93
from reportlab.graphics.barcode import common
from reportlab.graphics.barcode import qr
from reportlab.graphics import renderPDF
from reportlab.graphics.shapes import Drawing
import string
import os
import imp
from reportlab.lib import colors
canv = canvas.Canvas('Output.pdf')
styles = getSampleStyleSheet()
parastyle = ParagraphStyle(name='Justify', alignment=TA_JUSTIFY)
parastyle.leading = 12
parastyle.fontSize = 11
styles.add(parastyle)
drawText = "The Avengers become divided, both over how to approach Loki and the revelation that S.H.I.E.L.D. plans to harness the Tesseract to develop weapons as a deterrent against hostile extraterrestrials. As the group argues, Barton and Loki's other possessed agents attack the Helicarrier, disabling one of its engines in flight and causing Banner to transform into the Hulk. Stark and Rogers work to restart the damaged engine, and Thor attempts to stop the Hulk's rampage. Romanoff reluctantly fights Barton, and knocks him unconscious, breaking Loki's mind control. Loki escapes after killing Coulson and ejecting Thor from the airship, while the Hulk falls to the ground after attacking a S.H.I.E.L.D. fighter jet. Fury uses Coulson's death to motivate the Avengers into working as a team. Stark and Rogers realize that for Loki, simply defeating them will not be enough; he needs to overpower them publicly to validate himself as ruler of Earth. Loki uses the Tesseract, in conjunction with a device Selvig built, to open a wormhole above Stark Tower to the Chitauri fleet in space, launching his invasion."
inch = INCH = 72
cm = CM = inch/2.54
mm = MM = cm/10
x=10*mm
y=240*mm
width=190*mm
height=10*mm
canv.saveState()
canv.translate(x,y)
canv.rotate(0)
canv.translate(-x,-y)
p = Paragraph(drawText, styles["Justify"])
p.wrapOn(canv, width, height)
p.drawOn(canv, x, y)
canv.showPage()
canv.save()
这是当前的输出 Output
我需要获取段落中打印的行数。 在我的示例中,我必须得到 11。
如果我改变字体和字体大小,我必须得到相应的值。
【问题讨论】:
标签: python reportlab paragraph