gpt4 book ai didi

python - 如何在 weasyprint 中使用自定义字体

转载 作者:行者123 更新时间:2023-11-28 19:05:20 30 4
gpt4 key购买 nike

我有一个 Django 应用程序,我想从我的 Django View 创建一个 PDF。我使用 weasyprint,但出于某种原因它不接受我的自定义字体。字体 url 正在工作,当我用相同的字体呈现相同的 html 时,我看到了正确的字体,但我的 pdf 呈现了错误的字体。我也试过 base64 字体字符串,但没有成功。我的渲染代码是:

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

from django.conf import settings
from django.http import HttpResponse
from django.template.loader import get_template
from django.urls import reverse


def render_to_pdf(template_src, context_dict={}):
font_config = FontConfiguration()
font_string = '''
@font-face {
font-family: 'Titillium Web';
font-style: normal;
font-weight: 300;
src: local('Titillium Web Light'), local('TitilliumWeb-Light'), url('http://X.X.X.X:8000/static/fonts/titillium_web.woff2') format('woff2');
}
*, div {font-family: 'Titillium Web';}
'''

template = get_template(template_src)
rendered_html = template.render(context_dict)
pdf_file = HTML(string=rendered_html).write_pdf(stylesheets=[
CSS(settings.BASE_DIR + '/gui/executive_summary.css'),
CSS(string=font_string)],font_config=font_config)
response = HttpResponse(pdf_file, content_type='application/pdf')
response['Content-Disposition'] = 'filename="report.pdf"'
return response

知道我做错了什么吗?

最佳答案

正如您在文档中看到的那样:

WeasyPrint should support any font format handled by FreeType (any format widely used except WOFF2)

源代码:http://weasyprint.readthedocs.io/en/latest/features.html#fonts

关于python - 如何在 weasyprint 中使用自定义字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47749526/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com