无法使用xhtml2pdf(返回errror的文件的网址)将图像转换为pdf

时间:2018-03-26 03:56:33

标签: python django python-3.x python-2.7 xhtml2pdf

这是我发现的假设解决方案。 https://stackoverflow.com/a/2180417

我正在尝试实施它,但我无法这样做。

这是我目前的代码:

utils.py

from io import BytesIO
from django.http import HttpResponse
from django.template.loader import get_template

from xhtml2pdf import pisa

def render_to_pdf(template_src, context_dict={}):
     template = get_template(template_src)
     html  = template.render(context_dict)
     result = BytesIO()
     pdf = pisa.pisaDocument(BytesIO(html.encode("ISO-8859-1")), result, link_callback=fetch_resources)
     if not pdf.err:
          return HttpResponse(result.getvalue(), content_type='application/pdf')
     return None

def fetch_resources(uri, rel):
    path = os.path.join(settings.MEDIA_ROOT, uri.replace(settings.MEDIA_URL, ""))

    return path

views.py

 from django.http import HttpResponse
 from django.views.generic import View

 from yourproject.utils import render_to_pdf #created in step 4

 class GeneratePdf(View):
     def get(self, request, *args, **kwargs):
         data = {
              'today': datetime.date.today(), 
              'amount': 39.99,
             'customer_name': 'Cooper Mann',
             'order_id': 1233434,
         }
         pdf = render_to_pdf('pdf/invoice.html', data)
         return HttpResponse(pdf, content_type='application/pdf')

如果我只是渲染一个普通模板,那么所有内容都会正确加载,所以我知道问题出在这个过程的这一部分。 invoice.html模板包含一个网址,例如/ home / images / products / 1231

<img src='{{ photo.url }}'>

2 个答案:

答案 0 :(得分:1)

无需设置获取资源。它的作品对我来说

def render_to_pdf(template_src, context_dict={}):
    template = get_template(template_src)
    html = template.render(context_dict)
    result = BytesIO()
    pdf = pisa.pisaDocument(BytesIO(html.encode("ISO-8859-1")), result)
    if not pdf.err:
     return HttpResponse(result.getvalue(), content_type='application/pdf')
    return None

也尝试引用此链接html-template-to-pdf-in-django

答案 1 :(得分:1)

要在pdf中渲染图像,您需要使用以下函数进行图像回调:

ISNULL(uinfo.[State], '') StateText,

接下来,添加渲染功能。

链接:Biblioteca xhtml2pdf

如果这个答案对你有所帮助,请将其标记为答案。