I want to export bills from my Ruby on Rails application as PDF.
My problem is quite strange: I can convert Websites to PDF using PDFKit, I can convert any HTML code to PDF and I can save a rendered HTML in my public folder.
My problem now is: when I try to convert the saved HTML, the page is not ending to load... and I don't get a PDF as a result.
My current code is:
def printing
@bill = Bill.find(params[:id])
@article = Bill.find(params[:id])
html = render_to_string(:template => "bills/print.html", :layout => 'print' )
FileUtils.makedirs("#{Rails.root}/public/bills/") unless File.exists?("#{Rails.root}/public/bills/")
File.open("#{Rails.root}/public/bills/rechnung_#{@bill.id}.html", 'w') {|f| f.write(html) }
html = "http://localhost:3000/bills/rechnung_3.html"
@pdf = PDFKit.new(html)
send_data @pdf.to_pdf, :filename => "rechnung_#{@bill.id}.pdf",
:type => "application/pdf",
:disposition => "attachement"
end
I'm using the current PDFKit version together with wkhtmltopdf 0.10.0 rc2. That's the only combination which works for me.