A shell utility to convert HTML to PDF using the Webkit rendering engine and Qt.
0
votes
0answers
16 views
wkhtmltopdf not supporting data uri
I have created a report generating library for my project using php DOMDocument to create html file and save as temporary file. Html includes javascript part that takes parameter and renders a shape ...
1
vote
1answer
18 views
WkHTMLtoPDF not loading local CSS and images
I've seen multiple questions that are very similar to this one, so I was hesitant at first to post it. But nothing suggested resolved my issue and I can't seem to figure out what's wrong myself.
For ...
0
votes
1answer
45 views
How to implement “--print-media-type” with c#?
I am currently using wkhtmltopdf with c# to download my webpage as PDF format. However, I want the generated PDF shown to be using "print.css".
Additional Details:
I am using microsoft visual ...
-1
votes
0answers
28 views
wkhtmltopdf doesn't run on linux [closed]
I want wkhtmltopdf to work on the linux 2.6.32-358.0.1.el6.x86_64. I have copied wkhtmltopdf-i386 and wkhtmltopdf-amd64 to /usr/local/bin, added x permission. When I do
./wkhtmltopdf-amd64
I get ...
0
votes
1answer
49 views
convert html to pdf in ruby script only with wkhtmltopdf
I know already pdfkit and wiked_pdf. pdfkit does not generate as I expect pdf from a remote web page.
Therefore I'd like to run wkhtmltopdf command in from within a ruby script as I do in the ...
0
votes
1answer
55 views
Ajax chart not rendering in Pdf Using pechkin asp.net c#
i have been using Pechkin (wkhtml wrapper for c#) to create pdf reports in my project and its working fine except i cant render any ajax chart(pie, bar, bubble or anything) in my created pdf, i have ...
0
votes
1answer
29 views
Cannot response a pdf file in circus
I have done to implement a print pdf function. I use pyramid, wkhtmltopdf and jinja2 to generate pdf. It works fine in gunicorn. However, when I deploy it to production (I use circusd to run in ...
0
votes
1answer
33 views
IE ignores octet-stream - how to force download?
I'm using wkhtmltopdf to generate PDF files. This program accepts one of two ContentType values, 'application/pdf' and 'application/octet-stream'. I want the PDF files generated to be saved to the ...
0
votes
0answers
42 views
wkhtmltopdf - better cyrillic font rendering?
I'm trying to get better looking Cyrillic output with wkhtmltopdf.
Any suggestions on how I can make the wkhtmltopdf output look more like how it looks in Chrome? In particular, I'd like to get the ...
-2
votes
0answers
26 views
Wkhtmltopdf is not support large size pdf file
I am creating pdf file using Wkhtmltopdf But my html file is large at time wkhtmltopdf is not support to create pdf.
byte[] buffer = new byte[131072];
Process.StandardOutput.BaseStream.Read(buffer, ...
0
votes
0answers
80 views
Images in HTML not displaying in PDF in WKHTMLTOPDF
Hi am using Wkhtmltopdf to create PDF from Html page using c#, Asp.net. PDF are created smoothly, but when I add images to HTML it does not get displayed on PDF.
<div id="Image" class="right" ...
0
votes
1answer
108 views
Image display in HTML but not in PDF using WKHTMLTOPDF
Hi am using Wkhtmltopdf to create PDF from Html page using c#, Asp.net.
PDF are created smoothly, but when I add images to HTML it does not get displayed on PDF.
public static string ...
0
votes
1answer
39 views
wkhtmltopdf - Even number of pages as output
I'm looking for a way to make sure that the output from wkhtmltopdf always consists of an even number of pages, i.e. adding a blank page at the end of the pdf if the number of pages is uneven. If ...
1
vote
0answers
94 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
90 views
Wicked_pdf not working on Rails 3.2 / Ruby 1.9.3 - The file could not be opened
Yes this is another wicked_pdf not working post, I've tried a multitude of things that I will attempt to outline, but I cannot get a valid pdf generated and opened. This used to work in my app but ...
2
votes
0answers
42 views
square fonts issue on wkhtmltopdf running on Ubuntu 12.04 LTS 64 bit compiled from source
i compiled from source the wkhtmltopdf using Qt 8.4 , every thing is working great but the output of the PDF fonts are square
i basically convert html pages from the web for example :
...
0
votes
0answers
31 views
wkhtmltopdf Print PDF with Filled out Form
What I currently have:
On form sumbit I call a new php page which executes wkhtmltopdf with the php exec() command by passing it the name of the file the form is in. Ex. (form is in test.php, ...
0
votes
0answers
63 views
wkhtmltopdf - Converting SVG created by AJAX to PDF
I am working on an application that converts HTML and SVG charts, generated with d3.js, to PDF.
The charts are rendered through AJAX calls after the page loads.
I am working with wkhtmltopdf 0.9.6 ...
0
votes
0answers
100 views
Unable to convert HTML to PDF in IE10 using wkhtmltopdf
I want to convert HTML to PDF using wkhtmltopdf.exe.
The following code works fine in Firefox, but IE 10 says could not be load.
protected void btnpdf_Click(object sender, EventArgs e)
{
string ...
0
votes
0answers
21 views
wkhtmltopdf and different orientation in one document
Is it possible to make pdf with wkhtmltopdf with different page orientation: for example, one page should be portrait and one landscape. I know what orientation is a GLOBAL option, but I heard about ...
1
vote
1answer
151 views
Printing the current page to pdf using wkhtmltopdf
Recently installed wkhtmltopdf. Was trying to capture the entire page in its current state, however, the below method seems to navigate to the initial state of that page without all the input fields ...
0
votes
1answer
72 views
wkhtmltopdf is returning blank pages for some urls
I have installed the wonderful software wkhtmltopdf on our production Debian server to be used for creating PDFs from URLs. We stream (i hope that's the right term) the resulting PDF to the client, we ...
0
votes
0answers
82 views
wkhtmltopdf sometimes not rendering javascript
I'm using wkhtmltopdf to convert pages to pdf, through php. This works well on a windows and a ubuntu server, however, on a different linux server, it sometimes (~5 out of 6 times) doesn't execute the ...
0
votes
2answers
68 views
How use wkhtmltopdf on shared server
I'm using installation of wkhtmltopdf (I even copied instalation from other directory) on my localhost (windows xp) simply by callling exec function. Everything works good.
How can I use it on linux ...
0
votes
1answer
87 views
How to pass laravel session to wkhtmlltopdf
I'm trying to print pages, using wkhtmltopdf, that are protected by auth filter in Laravel.
I'm using the standard session cookie -- in config/session.php:
'driver' => 'cookie',
'cookie' => ...
0
votes
1answer
64 views
wkhtmltopdf with javascript-delay not working
The pdf that is created using the code below hasn't finished rendering the javascript so javascript was preformed on half of the tables (say if there are 100 tables then sometimes 50 are done, other ...
0
votes
0answers
80 views
wkhtmltopdf hangs went trying to convert certain urls
I'm running into an issue when converting user-provided urls into PDFs of the given page. I'm using PDFKit to do so with the following code:
kit = PDFKit.new(url)
pdf = ...
0
votes
0answers
72 views
helvetica font not working in wkhtmltopdf
I have been trying to use Helvetica font while creating the pdf but the font is not reflected back in pdf.
I did some google and found some solutions but none are workable.
Tried Solution 1
I found ...
0
votes
0answers
39 views
Page-break breaks the side borders on the page
I have a long page with left and right side borders. And the content is forms with different sections, inside those, I have made page-break as avoid.
Problem is, when the page is breaking, the side ...
0
votes
0answers
123 views
CSS3 Support in wkhtmltopdf/rotativa
I need to create pdf by rotativa. And I need to show textarea into number of blank lines same as "rows" attribute, if the textarea doesn't have any content and need to show the content as well if ...
3
votes
0answers
438 views
How to convert a simple html to pdf using wkhtmltopdf?
Here is what I did:
Created a linux virtual machine in the Amazon cloud.
Followed the instructions from https://code.google.com/p/wkhtmltopdf/wiki/compilation to download and compile the source code ...
0
votes
0answers
27 views
wkhtmltoimage CSS3 gradient rendering in Snapshots
I am using wkhtmltoimage to render a snapshot for my website which contains a background gradient but it doesn't show up in the generated snapshot.
I tried using on Ubuntu and Windows but am not able ...
0
votes
0answers
56 views
wkhtmltopdf - how to set PDF Version to 1.6?
I am using wkhtmltopdf to put html contents to PDF file. It's working great, expect one thing. My PDF version with this tool equals to 1.4 (AdobeReader 5.x). I would like to have Adobe PDF version ...
1
vote
1answer
110 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
0answers
41 views
wkhtmltopdf randomly failes by converting same file
I'm using wkhtmltopdf (via a PHP-wrapper) to convert some html files to pdf.
All in all it's working great, but in 20% it just crashes without any rather information. So without changing the input ...
0
votes
0answers
28 views
ICC Color Profiles in SVG for webkit wkhtmltopdf or defining spot colours
Does webkit/wkhtmltopdf not support icc-color profiles in fill colours in SVG images?
I have an image that has the colour defined as:
#e22e27 icc-color(U.S.-Web-Coated--SWOP--v2, 0.0558938, ...
0
votes
1answer
93 views
wkhtmltopdf and multiple pages
i am trying to convert html pages like this one click here
into a pdf. when i use wkhtmltopdf i ve get this result click here
the options i ve used are:
xvfb-run --server-args="-screen 0, ...
1
vote
0answers
149 views
PDF generation issue with wkhtmltopdf
There is an issue with the PDF Generation with the help of wkhtmltopdf.exe
Here is my code:
public bool WKHtmlToPdf(string Url, string outputFilename)
{
string filename = "E:\\XYZ" + "\\" + ...
0
votes
1answer
188 views
Add margin to PDF footer when using wkhtmltopdf
I am using wkhtmltopdf to create pdf documents on the filesystem.
The PDFs generate fine when I insert arguments like this:
psi.Arguments = "- --footer-html "http://localhost/pdf/footerpage.html" ...
0
votes
1answer
69 views
Cant get the wkhtmltopdf attributes to work with in java code
I am using wkhtmltopdf converter to convert html file to pdf. It works fine except that the output does not fit the page in pdf. Using --zoom 2 fixes the problem at command line but with using the ...
0
votes
1answer
77 views
How to handle dimensions/sizes with wkhtmltopdf?
I'm using wkhtmltopdf to convert some HTML to PDF. Is there a proper way to handle sizes and dimensions?
I mean - how can I style an image with the dimension of 100px x 1oopx that it is printed in ...
2
votes
1answer
171 views
Value cannot be null with wkhtmltopdf in MVC 4
I am trying to generate a PDF, it works perfectly in development, but not on my production server. I assume it's a permissions thing. The error I get is:
Value cannot be null. Parameter name: ...
1
vote
1answer
139 views
Header height and positioning header from top of page in wkhtmltopdf
In my application, the user is allowed to define his own headers and margins for printing.
For the header, the user can provide the following two fields:
(a) Page Top Margin in mm (from top of the ...
0
votes
1answer
151 views
Test download of pdf with rspec and pdfkit
I am developing a rails 3.2 application with which users can download pdfs. I enjoy test driven development a lot using rspec and shoulda matchers, but I'm at a loss with this one.
I have the ...
0
votes
1answer
79 views
Securely connecting two node.js servers
I am hosting an app on Nodejitsu, and I want that app to turn pages to pdf with wkhtmltopdf, which is a binary. Alas I'm not on a big enough plan with Nodejitsu to get ssh access to install ...
1
vote
0answers
81 views
django wkhtmltopdf working fine from python shell but not from URL
call([WKHTMLTOPDF_COMMAND_PATH, html_file_url, pdf_file_path])
The above command generates pdf in the specified location when run from python shell. But when from URL, gets stuck as show below
...
0
votes
2answers
104 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
0answers
40 views
wkhtml2pdf Bold text while conversion
I am using wkhtml2pdf for converting html file to pdf.
But there is a problem when i add an image to the page all the text in that page appears in distorted bold font.
If i remove the image then the ...
0
votes
0answers
71 views
PDFKit Broken Page Numbers
I am using pdfkit 0.5.3 in a rails 3.2.12 project with wkhtmltopdf 0.9.6 to generate pdf reports in my application. It has been working for previous versions of pdfkit for the last 6 months or so. ...
0
votes
0answers
89 views
Using Wkhtmltopdf with Nodejs on Heroku
Here is the thing. I'm on nodejs and I want to generate a PDF file with wkhtmltopdf.
It works fine locally, but when I push it on heroku I have an "Application Error".
I think it's because it's ...

