1
vote
1answer
84 views

adjust pdf options for phantomjs

I use phantomjs for pdf generation. So I do ./phantomjs rasterize.js <someurl> test.pdf It generates pdf file but: 1. Pdf looks far from original website 2. I can't set page orientation 3. ...
1
vote
1answer
115 views

PhantomJS webpage#render doesn't show javascript generated SVG which is included in webpage#content

This is my PhantomJS script: https://gist.github.com/beckyconning/5404506 This is the javascript included in the page: https://gist.github.com/beckyconning/5404532 This is the relevant HTML: ...
1
vote
1answer
82 views

Linux application HTML5 to PDF [closed]

I am looking for HTML to PDF converter. Seems easy one but it isn't. I've already tried wkhtmltopdf, node.js pdfkit and weasyprint - all of them doesn't have support for CSS3 gradients. The best I've ...
0
votes
0answers
18 views

structure an unstructured html collection of words as spans into more complex content

What have I got? I have some output from a pdf 2 html converter, that gives me a span for every separate word/punctuation unit in a document. example: <span class="pdf_text pdf_text3" ...
0
votes
0answers
123 views

Font hinting behavior in PhantomJS?

I need to render text contained within divs on HTML document into PDF. I'm thinking of using PhantomJS, but one thing is very important. Different browsers and platforms render the text differently. ...
2
votes
1answer
217 views

PhantomJs rasterization - possible to make a multipage pdf from multiple pages?

I'm running phantom using their rasterize example script to create a single-page pdf of a page. I have several different pages that I would like to rasterize and concatenate into a multipage pdf ...
0
votes
5answers
409 views

How to convert a html page to pdf in Django

I am using Django to create a report site. The reports are generated dynamically, they also include some SVG charts. I want to create a PDF file which is based on the current report the user is ...
0
votes
0answers
61 views

I want to change the size of my PDF?

I am using Phantom js to create pdf in my application (using the export model, toPDF()) now the PDF works fine. But my CGridview get splitted into two pages which doesn't look fine. So I want to ...
1
vote
2answers
243 views

phantomjs pdf clickable hyperlink

I have been trying to get clickable hyperlinks in PDFs after using rasterize.js with phantomjs. I have found one comment on the phantomjs code.google.com page that says that hyperlinks are supported, ...
0
votes
2answers
755 views

Print page in PhantomJS

Is there any way to print a page in PhantomJS. I want to pass my page to PDF Printer (PDFCreator) in order to get a good-looking PDF page (See my question here) I'm using the following code, but it ...
5
votes
3answers
2k views

PhantomJS: exported PDF to stdout

Is there a way to trigger the PDF export feature in PhantomJS without specifying an output file with the .pdf extension? We'd like to use stdout to output the PDF.
2
votes
1answer
234 views

Merge many PDFs into single multi-page file with web technologies

I have many single-page PDF files that need to be merged into one with many pages (PDFs are generated from HTML pages). Moreover it needs to be a cross-OS, cross-browser solution and independent on ...
2
votes
3answers
767 views

How to generate page running on server as a PDF

The task is not easy, as I need to create a PDF version of a page after clicking a button. It has a complicated dom structure, with many elements positioned absolutely/relatively, and the data is ...