在reportlab中如何把styles['normal']添加到Paragraph上
时间: 2023-02-08 10:34:01 浏览: 175
Python ReportLab文档
在reportlab中,可以通过使用Paragraph类中的"style"参数来为段落添加样式。例如,如果你想在一个段落上使用"normal"样式,可以这样做:
```
from reportlab.lib.styles import getSampleStyleSheet
styles = getSampleStyleSheet()
p = Paragraph("This is a paragraph with normal style.", style=styles["Normal"])
```
或者:
```
normal = styles["Normal"]
p = Paragraph("This is a paragraph with normal style.", style=normal)
```
注意,上面的代码需要在文档中先引入getSampleStyleSheet和Paragraph类。
阅读全文