Webの標準的な例( http://www.20seven.org/journal/2008/11/pdf-generation-with-pisa-in-Django.html )を使用して変換していますa Djangoビュー/テンプレートをPDFに。
PDFに表示されるようにテンプレートに画像(URLまたはサーバー上の参照から)を含める「簡単な」方法はありますか?
画像が機能するようになりました。コードは次のとおりです。
from Django.http import HttpResponse
from Django.template.loader import render_to_string
from Django.template import RequestContext
from Django.conf import settings
import ho.pisa as pisa
import cStringIO as StringIO
import cgi
import os
def dm_monthly(request, year, month):
html = render_to_string('reports/dmmonthly.html', { 'pagesize' : 'A4', }, context_instance=RequestContext(request))
result = StringIO.StringIO()
pdf = pisa.pisaDocument(StringIO.StringIO(html.encode("UTF-8")), dest=result, link_callback=fetch_resources )
if not pdf.err:
return HttpResponse(result.getvalue(), mimetype='application/pdf')
return HttpResponse('Gremlins ate your pdf! %s' % cgi.escape(html))
def fetch_resources(uri, rel):
path = os.path.join(settings.MEDIA_ROOT, uri.replace(settings.MEDIA_URL, ""))
return path
これは http://groups.google.com/group/xhtml2pdf/browse_thread/thread/4cf4e5e0f4c99f55 から自由に取得されました
def render_to_pdf( template_src, context_dict):
template = get_template(template_src)
context = Context(context_dict)
html = template.render(context)
result = StringIO.StringIO()
if page has an image.something:
pdf = pisa.pisaDocument(StringIO.StringIO(html.encode("UTF-8")), dest=result, link_callback=fetch_resources)
else no image.something :
pdf = pisa.pisaDocument(StringIO.StringIO(html.encode("UTF-8")),result)
if not pdf.err:
return HttpResponse(result.getvalue(), mimetype='examination_report/pdf')
return HttpResponse('We had some errors<pre>%s</pre>' % escape(html))
def fetch_resources(uri, rel):
if os.sep == '\\': # deal with windows and wrong slashes
uri2 = os.sep.join(uri.split('/'))
else:# else, just add the untouched path.
uri2 = uri
path = '%s%s' % (settings.SITE_ROOT, uri2)
return path
グーグルで見つけたすべての解決策を試したにもかかわらず、画像を表示することができませんでした。しかし、コマンドラインバージョンのピサは画像を正常に表示するので、このファッジは私のために働きました:
from tempfile import mkstemp
# write html to a temporary file
# can used NamedTemporaryFile if using python 2.6+
fid, fname = mkstemp(dir='/tmp')
f = open(fname, 'w+b')
f.write(html)
f.close()
# now create pdf from the html
cmd = 'xhtml2pdf "%s"' % fname
os.system(cmd)
os.unlink(fname)
# get the content of the pdf
filename = fname+'.pdf'
pdf = open(filename, 'r')
content = pdf.read()
pdf.close()
os.unlink(pdf.name)
# return content
response = HttpResponse(content, mimetype='application/pdf')
response['Content-Disposition'] = 'attachment; filename=draft.pdf'
これは、画像にURLまたはフルパス名が含まれている場合に機能しました。
<img src="/home/Django/project/site_media/css/output/images/logo.jpg" />
<img src="http://www.mysite.com/css/output/images/logo.jpg" />
HTMLの次のコード行とDjango version = 2.0で動作します。
<img src="{{company.logo.path}}" height="100px">
後でIText/ISharpを使用していつでも画像を追加できます。
画像をbase64に変換することもできます。
http://www.motobit.com/util/base64-decoder-encoder.asp
Base64に変換すると、画像リンクで問題が発生することはありません。