19 lines
No EOL
702 B
Python
19 lines
No EOL
702 B
Python
import os
|
|
from io import BytesIO
|
|
from django.http import HttpResponse
|
|
from django.template.loader import get_template
|
|
from django.conf import settings
|
|
|
|
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)
|
|
links = lambda uri, rel: os.path.join(settings.MEDIA_ROOT, uri.replace(settings.MEDIA_URL, ''))
|
|
pdf = pisa.pisaDocument(BytesIO(html.encode("ISO-8859-1")),dest=result)
|
|
|
|
if not pdf.err:
|
|
return HttpResponse(result.getvalue(), content_type='application/pdf')
|
|
return None |