首页 > TAG信息列表 > weasyprint

HTML转PDF工具一览

On this website, I show you the rendering results of different html2pdf tools. I compare mPDF, typeset.sh, PDFreactor, wkhtmltopdf, WeasyPrint, Prince, Puppeteer, openhtmltopdf, pdfHTML (iText 7 add-on), Flying Saucer.

Creating PDF Reports with Pandas, Jinja and WeasyPrint

Introduction Pandas is excellent at manipulating large amounts of data and summarizing it in multiple text and visual representations. Without much effort, pandas supports output to CSV, Excel, HTML, json and more. Where things get more difficult is if yo

在Python中获取Weasyprint的基本URI

我正在将Weasyprint库用于Python,以尝试将html文件打印为pdf.我试图将图像嵌入页面的背景中.这是代码: HTML(string=''' <h1>The title</h1> <p>Content goes here ''', base_url=os.path.dirname(os.path.realpath(__file__))).write_pdf("hello

python – Django的基本URL,在Nginx代理后面

我有一个简单的Django应用程序,它在Nginx后面托管.我正在使用weasyprint来生成PDF报告. weasyprint需要base_url属性来访问静态文件. 虽然下面的django代码在本地机器上工作正常(在dev服务器下),但在Nginx后面发布时会出现502 Bad Gateway错误. View.py html = render_to_string('

python – WeasyPrint:在每个pdf页面上由长表重叠的固定页脚标记

由于WeasyPrint,我用Django生成了一个用pdf渲染的表格. 这个表可能很长(说行数),所以可能会在几页pdf结果中结束.我必须在页面的每一端都包含一个静态页脚,所以我应用了css固定规则. 我的问题是这个页脚与很长的表重叠.我如何要求WeasyPrint(通过我认为css)在每个页脚之前打破表并

django 生成动态的PDF文件

WeasyPrint,它是一个Python库可以生成PDF文件从HTML模板中。安装WeasyPrint pip install WeasyPrint 创建一个PDF模板(template)我们需要一个HTML文档给WeasyPrint输入。我们将要创建一个HTML模板(template),渲染它使用Django,并且传递它给WeasyPrint来生成 PDF文件。 创建一个新的模板(tem