Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
618 views
in Technique[技术] by (71.8m points)

Python ReportLab with HTML Tables

I have an html table that I want to insert into a ReportLab generated PDF.

I am able to create a PDF and add text/pictures to it:

from reportlab.lib.pagesizes import letter
from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer, Image
from reportlab.lib.styles import getSampleStyleSheet
from reportlab.lib.units import inch

styles=getSampleStyleSheet()
doc = SimpleDocTemplate("NCM_weekly.pdf",pagesize=letter,
                        rightMargin=inch/2,leftMargin=inch/2,
                        topMargin=18,bottomMargin=18)

Story=[]

add_text("Weekly Packet", style="Heading1", fontsize=24)
add_text(today, style="Heading2", fontsize=12)

df.plot()
buf = io.BytesIO()
plt.savefig(buf, format='png',dpi=300)
buf.seek(0)

im = Image(buf, 7*inch, 2.25*inch)
Story.append(im)

So what is the best way to add an HTML table from a string?

question from:https://stackoverflow.com/questions/65890228/python-reportlab-with-html-tables

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...