Wicked PDF is a PDF generation plugin for Ruby on Rails using wkhtmltopdf to convert HTML to PDF.
1
vote
1answer
42 views
Wicked pdf rendering the last row across two pages
I am using wicked_pdf to generate pdfs. The problem i am facing is that, sometimes it displays the last row in the page across two pages. Is there a way to tell wicked_pdf to render the row in next ...
0
votes
2answers
28 views
RuntimeError (Failed to execute: Error: “\xFE” from ASCII-8BIT to UTF-8):
Trying to use Wicked PDF.
I have this code in the controller
def pdf
pdf = WickedPdf.new.pdf_from_string(
render_to_string(
pdf: 'filename.pdf',
template: '/pages/poa.html.slim',
layout: ...
0
votes
1answer
35 views
generate pdf if object is persisted
I'm using wicked_pdf gem to generate a pdf file:
I want to generate the pdf only if the object is persisted/saved in database:
Something like this:
def new
@invoice = Invoice.new
respond_to do ...
0
votes
0answers
57 views
generate pdf in ruby on rails using wicked_pdf
i have installed wicked_pdf gem and wkhtmltopdf but when i try to generate pdf i am gettin an error
Failed to execute:
"E:/nupur/wkhtmltopdf/wkhtmltopdf.exe" -q ...
2
votes
1answer
166 views
Wicked_PDF not rendering HTML and CSS assets hosted via Asset Sync in production
I'm have a problem rendering PDFs using Wicked_PDF. I'm hosting all of my asset-pipeline resources using Amazon S3 and CloudFront, and things are generated fine while in development; however in ...
0
votes
1answer
79 views
rake db:migrate - uninitialized constant WickedPdf
I'm getting the error: uninitialized constant WickedPdf when running rake db:migrate.
I have followed the instructions listed on this page https://github.com/mileszs/wicked_pdf/issues/53 on how to ...
0
votes
0answers
50 views
Rails WickedPdf pdf_from_string giving text stream
I'm attempting to generate a PDF from a template and then save that PDF to a file, as per the documentation found on the gem page.
pdf = WickedPdf.new.pdf_from_string(render_to_string(:layout => ...
0
votes
1answer
99 views
rails 3 wicked_pdf images from html into pdf
I've encountered a problem with displaying images in pdf's and html's.
Basically what I want is to make my html view be downloadable in pdf. So I've created a partial _pdf_view.html.haml, which ...
0
votes
1answer
43 views
ROR Wicked_pdf generates boxes instead kannada fonts in webfaction
In anapplication, We use wicked_pdf gem to generate PDF. The contents of PDF are in "Kannada" language. In the local machine, we always get the correct fonts in the pdf. However when we generate PDF ...
0
votes
1answer
76 views
What is the correct way to render_to_string in wicked pdf?
This is what the documentation of wicked pdf specifies:
WickedPdf.new.pdf_from_string(
render_to_string(:pdf => "pdf_file.pdf", :template => 'templates/pdf.html.erb', :layout => ...
1
vote
1answer
86 views
Apache Wicket bookmarkable url added one additional parameter to the link, why?
my map is
mountPage("/page/#{code}/#{name}", Page.class);
but when I click on the link
localhost/page/10/toy?2
wicket add also one parameter like a counter, when I refresh the page I have
...
0
votes
0answers
114 views
wkhtmltopdf is not executable from wicked-pdf within war
I am trying to create a pdf using wicked-pdf from Ruby On Rails. It works great in development mode, but when I deploy in production I get the error:
wkhtmltopdf is not executable
I have the ...
0
votes
1answer
76 views
Wickedpdf Heroku some images are not showing
Everthing works perfect on my local, but on production(Heroku) some images in the generated pdf are not showing:
<img alt="Bg_pdf" id="background" ...
1
vote
1answer
175 views
Repeat HTML in every page generated with Wicked PDF and Rails
I'm generating PDF with the Wicked PDF gem on Ruby on Rails, but have to repeat some HTML content on every page.
What I'm trying is to use just part of the page to my main content, and use HTML to ...
0
votes
1answer
47 views
WickedPDF - Couldn't find user without an ID
I have WickedPDF working in my application and am trying to add the PDF as an attachment. I have seen the following SO question Rails 3 -Render PDF from view and attach to email and was following the ...
-2
votes
2answers
63 views
How to hide links in a pdf generated using wicked_pdf [closed]
I have a pdf that is generated using the wicked_pdf gem. My problem is that i see the "download pdf" link in the pdf also. How to remove that link from the rendered pdf? I read about css media types ...
0
votes
0answers
61 views
generate ZIP from generated PDFs with wicked_pdf
In my invoice system, I want a backup function to download all invoices at once in one zip file.
This system is running on heroku - so it's only possible to save the pdfs temporary.
I've the rubyzip ...
0
votes
1answer
128 views
Rails 3 with wicked_pdf - generating a pdf and displaying it in the browser works, but only creating a file doesn't
I can create a PDF and view it in the browser. I can even make a file while this is happening.
here in the render call I'm using
render :template => 'admin/idreport.pdf.erb',
:pdf => ...
0
votes
0answers
68 views
Permission denied using wicked_pdf
I'm using
Windows 7
Rails 3.2.11
wkhtmltopdf 0.9.9
in gemfile
gem 'wicked_pdf'
In my initializer
WickedPdf.config = { :exe_path => 'C:\wkhtmltopdf' }
Exe is located at
...
0
votes
1answer
39 views
Actionmailer - Undefined `User' - PDF Attachment
I am trying to attach my PDF to an email. However when I click the link I am given the following error undefiined method 'user' I have the following setup:
Controller
def index
...
0
votes
2answers
63 views
Obtain the response of the redirected page in PDF in Rails
I have a button in my app which redirects to a new window by clicking on it. Here is the jQuery code for it:
jQ("#create_report").click(function() {
if (jQ('#client_id').val() !== "" ...
0
votes
2answers
125 views
Cannot get wkhtmltopdf to work in rails
I am trying to use wicked_pdf in my rails 3 application. I have followed all the tutorials and I am getting this error:
Failed to execute:
"/usr/local/bin/wkhtmltopdf" -q ...
0
votes
1answer
66 views
generate outline (aka toc, aka bookmarks) using wicked_pdf on heroku
Has anyone had any luck getting outline generation to work with wicked_pdf on Heroku? I have no problems in dev mode (on windows!), but on Heroku I can't make outlines happen. I've tried explicit ...
0
votes
0answers
128 views
wicked_pdf can't render pdf 500 error
I can't get wicked_pdf to work locally on Mac OSX 10.8.2, Ruby 1.9.2, Rails 3.2.11
If anyone has any wisdom to share on the matter, please do.
In my Gemfile I have:
gem "wicked_pdf"
group ...
2
votes
1answer
261 views
“Error: PDF could not be generated!” with WickedPDF
Error:
RuntimeError in BillsController#printing
Failed to execute:
"/usr/local/bin/wkhtmltopdf" -q ...
0
votes
1answer
99 views
Append Rails partial to existing PDF
I have a rails project that I'm using wicked_pdf to generate PDFs from generated html and I'm appending a slick footer to each page of that pdf. A lot of these pages to pdfs are actually coming from ...
4
votes
0answers
576 views
Getting PDF from WickedPDF for attachment via Carrierwave
In Rails3, I am using the WickedPDF gem to render a PDF format of one of my models. This is working fine: /invoices/123 returns HTML, /invoices/123.pdf downloads a PDF.
In my Invoice model, I am ...
7
votes
1answer
374 views
Wicked PDF +fonts+heroku+rails3.2
I'm using wicked_pdf to generate a PDF from HTML and deploying to Heroku. On heroku I'm using rails 3.2.11 and ruby 1.9.3
My pdf.css.scss.erb:
<%
app_fullhost = Constants["app_fullhost"]
...
1
vote
0answers
172 views
Fonts on Heroku using wicked_pdf/wkhtmltopdf
I'm using wicked_pdf to generate a PDF from HTML and deploying to Heroku.
This is all working fine when deployed and I have experimented with different fonts using @font-face but so far the best ...
2
votes
2answers
235 views
Highcharts does not work with wicked_pdf
I'm trying to generate a PDF report using the Wicked_pdf gem and Highcharts.
I've already tried to set animation, enableMouseTracking and shadow false.
But when wkhtmltopdf tries to generated the PDF ...
2
votes
1answer
224 views
Rails 3, Wicked_pdf not picking up styles, print media type, or separate template
So I've been banging my head on this all day yesterday trying to get PDF rendering to work properly. After trying Prawn and PDFKit, I found that the problem with at least getting it to work at all had ...
0
votes
2answers
111 views
Error “not precompiled” js file on production trying to render PDF via wicked_pdf in Rails
I have troubles with wicked_pdf on production server. I have such code here in _results.pdf.haml:
#container
= wicked_pdf_javascript_include_tag "pdf_application"
:javascript
...
2
votes
0answers
140 views
WickedPDF unpatched on osx
I am trying to html to pdf on mac osx. I write this command,
$ wkhtmltopdf --header-center "google" http://www.google.com google.pdf
but I saw the error,
The switch --header-center, is not ...
0
votes
1answer
283 views
WickedPDF header rendering
I user mac osx and try my html file to pdf file via wickedpdf. I want to put a string every page of my pdf file but I have a problem about header which is not rendering.
My wickedpdf method is,
...
0
votes
1answer
378 views
Better Page Breaks in Wicked_PDF for Rails
I was able to use the technique described here to get page breaks at certain points I wanted. However, I have a two column layout as follows:
<div class='book-main-image'><img ...
0
votes
0answers
65 views
wicked_pdf and Rails 2.3.8
Does anyone know if there is a version of the wicked_pdf gem that will work with Rails 2.3.8 without it installing extra non 2.3.8 dependencies. I'm trying to integrate wicked_pdf into an old spree ...
0
votes
1answer
307 views
rails; wicked_pdf is wicked slow
1.9.2 & rails 3.0.9
wicked_pdf 0.8.0
wkhtmltopdf 0.10.0 rc2 @ /usr/local/bin/
nginx and pow
It seems to barely work, if at all, and it's extremely slow when it does. What I've done:
after bundle ...
0
votes
1answer
166 views
wicked_pdf too much images = broken PDF
wicked_pdf (or wkhtmltopdf) behaves strange in production mode. It took a bit time to track down the problem, but seemingly the reason that my PDF is broken are too much images or too large file ...
0
votes
1answer
285 views
wicked_pdf: Is it possible to have the header only show on the first page & the footer only on the last?
Right now I have :header => {:html => {:template => "layouts/pdf_header.html.erb"}} setting things up. Is there something I can pass in that will only show the header on the first page of ...
1
vote
1answer
205 views
Wicked PDF - Wait for AJAX request to finish
I'm trying to generate a PDF using WickedPDF and all of my static HTML/CSS is loading. I have a few elements on the page that are populated using AJAX requests, but they are not showing up in the ...
0
votes
1answer
336 views
wicked_pdf not loading header or footer in ActionMailer
I'm trying to generate a pdf with the following code:
archivo = render_to_string(
:pdf => "formulario_de_registro.pdf",
:template => 'pdf/profile_download.pdf.haml',
...
1
vote
2answers
585 views
wicked_pdf/wkhtmltopdf ignores Twitter Bootstrap css
i am having trouble generating a pdf document in Ruby using wicked_pdf/wkhtmltopdf from the following sources:
respond_to do |format|
format.js
format.pdf {
render :pdf => ...
1
vote
1answer
315 views
Dynamic footers with wicked-pdf
Is it possible to get wicked-pdf to render different footers of a single multipage document? So page 1 would have a footer that says one thing and page 2 would have a footer that says another thing.
-3
votes
2answers
261 views
How to convert an image file to PDF using Wicked PDF? [closed]
Right now I am working on Rails 3 version. I want to convert an image file to PDF format. I am using the Wicked PDF gem, but it is not working. Please help me. How to do this?
1
vote
0answers
284 views
wicked_pdf, wkhtmltopdf not working with SVG on Heroku
I have a Ruby on Rails 3.2 app using the wicked_pdf gem and wkhtmltopdf 0.9.9 library to produce PDFs on my local machine, which is a MAC OSX 10.7.5 Lion. The app successfully renders HTML pages (that ...
1
vote
1answer
339 views
Wicked PDF generation error in production mode
I'm using WickedPDF in my Rails app to generate PDF files. It's working great on my local machine. In production I'm seeing the following error in my log:
Started GET "/financieel/facturen/2.pdf" for ...
2
votes
0answers
195 views
How and where i can define wkhtmltopdf path for rake task running through whenever cron job Rails3
I want to generate pdf using rake task running through whenever cron job rails.When i running this rake task by this command on console it is generating pdf fine
bundle exec rake ...
0
votes
1answer
299 views
How generate pdf in rake task using cron job rails 3
Hi i am using rails 3 and wicked pdf gem to generate pdf in my controllers.But now i want to
generate pdf in rake task which will run through cron jobs.After creating this PDF i will send
it in ...
0
votes
1answer
365 views
Jquery trigger when PDF file downloded
I am using wicked_pdf plug-in for generating pdf. I am showing message and spinner when user click on pdf link and i want to hide that when pdf is generated and pushed to browser for download/show. I ...
1
vote
0answers
172 views
Page specific header/margin with wicked_pdf?
I have a rails 3.2 application that I use wicked_pdf to generate PDF files (reports).
My PDFs have a edge to edge image that makes up the header for the first page but no header on the remaining ...

