1.9.2&rails 3.0.9 wicked_pdf 0.8.0 wkhtmltopdf 0.10.0 rc2 @ / usr / local / bin / nginx and pow
たとえあったとしても、ほとんど機能しないようで、機能すると非常に遅くなります。私がしたこと:
バンドルのインストール後、簡単なテストのためにRailsコンソールに移動しました。
pdf = WickedPdf.new.pdf_from_string('Hello There!') " * ** * **\ "/ usr / local / bin / wkhtmltopdf \" -q --- ** * ** * "
30分ほどのように非常に長い間そのようにハングしますが、最終的には戻ってきます。
wkhtmltopdf google.com google.pdfを使用してwkhhtmltopdfを直接テストするためにシェルにドロップすると、次のようになります。
Loading page (1/2)
Printing pages (2/2)
Done
私はcntl-cをしなければならなかったが、かなり速い
少し掘り下げた後、wkhtmltopdf-binaryをgemファイルに追加し、バンドルインストール...同じ結果
私のwicked_pdf.rb初期化子:
WickedPdf.config = {
:exe_path => '/usr/local/bin/wkhtmltopdf',
:layout => 'pdf.html',
:orientation => 'Landscape',
:page_size => 'Letter'
}
前もって感謝します