webkitを使用した素晴らしい html コンバーターであるwkhtmltopdfを見つけました。私は自分の開発マシンで試してみましたが、シンプルでうまく機能します。
これを django ベースのサイトと統合するにはどうすればよいですか?
私はpython bindingsを見つけましたが、私が持っていないものをインストールする方法をある程度理解していることを前提としています。例えば
you need libwkhtmltox.* somewhere in your LD path (/usr/local/lib)
you need the directory src/include/wkhtmltox from wkhtmltopdf
somewhere on your include path (/usr/local/include)
これらの python バインディングをインストールした後、どのように使用すればよいですか? どのような通話ができますか?
結果のpdfはhdに保存する必要がありますか、それとも何かでビューからストリーミングできますか?
例えば:
response['Content-Disposition'] = 'attachment; filename='+letter_name
response['Content-Type'] = 'Content-type: application/octet-stream'
response['Content-Length'] = bytes
return response