6

我正在使用 Python 的 Weasyprint 库来尝试将 html 文件打印为 pdf。我正在尝试将图像嵌入到页面的背景中。这是代码:

HTML(string='''
    <h1>The title</h1>
    <p>Content goes here
''', base_url=os.path.dirname(os.path.realpath(__file__))).write_pdf("hello.pdf",  stylesheets=[CSS(string='body{background-image: url("example_image.png")}')])

我得到此代码的输出如下:

Ignored `background-image: url("example_image.png")` at 1:6, Relative URI reference without a base URI: 'example_image.png'.
blah@blah:~/Dropbox/Terraverde/annual_reports$ python3 test_excel.py

我曾尝试在 Stackoverflow 上搜索此问题的解决方案,并阅读了文档,但我能找到的最接近答案的是以下关于相同问题但针对 Django 的帖子:Django WeasyPrint CSS 集成警告:没有的相对 URI 参考基本 URI:<link href="/static/css/bootstrap.min.css"> 行无

我还尝试在我的代码中使用 document.baseURI:

base_url=os.path.dirname(os.path.realpath(__file__))).write_pdf("hello.pdf",  stylesheets=[CSS(string='body{background-image: url(document.baseURI + "example_image.png")}')])

但这仍然产生了一个错误:

Parse error at 1:24, unexpected BAD_URI token in property value

request.build_absolute_uri()关于如何处理问题的任何建议,或者对于常规 Python 或 Flask可能类似于 Django 的命令?

4

2 回答 2

6

我在使用 pystache 渲染的模板中遇到了与 OSX 上的这个标签相同的错误:

<img src="/Users/my_username/my_project/my_image.png" />

所以我尝试了这个,它奏效了:

<img src="file:///Users/my_username/my_project/my_image.png" />

只需在 /Users/... 路径之前添加 file://。(请注意,它是 3 个斜线)。

于 2016-05-19T17:31:36.213 回答
3

我发现base_url必须将其作为参数提供给weasyprint.CSS函数而不是函数weasyprint.HTML

from weasyprint import HTML, CSS

html_content = '''<h1>The title</h1><p>Content goes here'''

base_url = os.path.dirname(os.path.realpath(__file__))
css = CSS(string='body{background-image: url("example_image.png")}', base_url=base_url)

HTML(string=html_content).write_pdf("hello.pdf", stylesheets=[css])

作为奖励,加载位于fonts该脚本旁边的文件夹中的本地字体也是如此:

# for debugging
import logging
logger = logging.getLogger('weasyprint')
logger.addHandler(logging.StreamHandler())

import os

from weasyprint import HTML, CSS
from weasyprint.fonts import FontConfiguration


html_content = '''<h1>The title</h1><p>Content goes here</p>'''

font_config = FontConfiguration()

THIS_FILE_DIR = os.path.dirname(os.path.abspath(__file__)) + os.sep
base_url = 'file://' + THIS_FILE_DIR

# fonts downloaded from
# https://fonts.google.com/specimen/Poppins?preview.text_type=custom&sidebar.open=true&selection.family=Poppins:wght@400;500;600;700
css = CSS(string='''
        @font-face {
          font-family: 'Poppins';
          src: url('./fonts/Poppins-Regular.ttf') format('truetype');
          font-weight: 400;
          font-style: normal;
        }
        
        @font-face {
          font-family: 'Poppins';
          src: url('./fonts/Poppins-Medium.ttf') format('truetype');
          font-weight: 500;
          font-style: normal;
        }
        
        @font-face {
          font-family: 'Poppins';
          src: url('./fonts/Poppins-SemiBold.ttf') format('truetype');
          font-weight: 600;
          font-style: normal;
        }
        
        @font-face {
          font-family: 'Poppins';
          src: url('../base/fonts/Poppins-Bold.ttf') format('truetype');
          font-weight: 700;
          font-style: normal;
        }
        ''', font_config=font_config, base_url=base_url)

HTML(string=html_content).write_pdf("hello.pdf", stylesheets=[css])
于 2021-02-18T09:21:47.470 回答