0
votes
0answers
74 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
1answer
80 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 ...
0
votes
1answer
36 views

PDF page overflow

I am using WKHTMLTOPDF to pdf SEO reports for customers. However I cannot stop the contents of each page overflowing onto the next. So the half of the word shows on Page 1 and the rest at the top of ...
0
votes
2answers
183 views

Resizing html Checkboxes for pdf output

Here's the pickle. To resize checkboxes in html, it is usually recommended that you utilize js to force the browser to resize the elements. However, in our case, we are using wkhtmltopdf (a command ...
0
votes
0answers
267 views

Using WKHTMLTOPDF for unusual page sizes

I need to make PDFs in custom page sizes, like for eg. 9.5cm x 5.5cm. This is the CSS I'm using in the --user-style-sheet: .printbody-v { width:5.5cm; height:9.5cm; margin:0 !important; padding:0 ...
4
votes
2answers
523 views

HTML/CSS to PDF, background image on all pages

I'm generating PDFs from user submitted HTML/CSS. The client has requested that the PDFs have a background image to add some branding. The PDF library is wkhtmltopdf11RC1. I can make the images print ...
1
vote
1answer
524 views

wkhtmltopdf unicode and custom fonts on server

I have an HTML page that is converted to PDF via wkhtmltopdf. Everything works nice and dandy on my local machine, Arabic fonts, PDF conversion to them, new custom fonts. I used @font-face, locally ...
2
votes
0answers
243 views

wkhtmltopdf css sizes in cm/mm

I use wkhtmltopdf to produce A4 sized PDFs. When I create a <div> tag and set its style to height: 297mm; width: 210mm (which is the defined size of A4), set wkhtmltopdf's margin settings to 0 ...
3
votes
2answers
3k views

use custom fonts with wkhtmltopdf

I am trying to use custom fonts in my PDF generated with wkhtmltopdf. I read that you can't use google webfonts and that wkhtmltopdf uses truetype .ttf file. Can anyone confirm that? So I downloaded a ...
3
votes
2answers
1k views

wkhtmltopdf stylesheets

can anybody tell me how to include user-style-sheet ind wkhtlmtopdf v. 0.10? I'm refering to a local file, but that doesn't effect my Pdf anyway. switches += "--user-style-sheet \User\...\style.css ...
1
vote
1answer
953 views

Creating a custom HTML page header and footer

I'm in the middle of creating a html to pdf converter using the wkhtmltopdf application and having trouble trying to insert a custom header and footer to appear on the output document. For the program ...
5
votes
2answers
5k views

avoid page break inside row of table

I want to avoid page break inside row of table in html, when I convert html to PDF by wkhtmltopdf. I use page-break-inside:avoid with table- its works, but I have so many rows, then not work. If set ...
3
votes
3answers
3k views

wkhtmltopdf - Add content to the bottom of the last page

I am using wkhtmltopdf to create PDF reports from HTML, I need to create a custom report that follows this pattern: Some information at the top of the first page. A table that can have 1 to n rows ...
6
votes
3answers
5k views

How to do page numbering in header/footer htmls with wkhtmltopdf?

I'm developing an electronic invoicing system, and one of our features is generating PDFs of the invoices, and mailing them. We have multiple templates for invoices, and will create more later, so we ...
0
votes
0answers
305 views

TTF font on linux web host appears different

I'm trying to get my rails app recognize "Gabriola.ttf" as a system installed font so that I can use wkhtmltopdf to generate a PDF without having to use @font-face (because it doesn't work in webkit ...
10
votes
5answers
5k views

Google Web Fonts and PDF generation from HTML with wkhtmltopdf

I am using wkhtmltopdf to convert HTML files in PDF format; it gives surprisingly good results, rendering the PDF exactly as WebKit would do. I am using Google Web Fonts to give users the possibility ...
1
vote
1answer
935 views

mkd2pdf, wkhtmltopdf, how to make PDF for slide

I want to make PDF by mkd2pdf which base on wkhtmltopdf It can generate PDF from markdown, it use a css file to control the style. just like this h1 { page-break-before: always; } so, I can make ...
2
votes
2answers
638 views

Can I disable Chrome/Webkit parallel CSS & JS download feature?

I'm experiencing the documented bug where webkit browsers render the page incorrectly on first load because the javascript is executing before the css has finished downloading (due to them being ...