Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run custom Javascript on Wkhtmltopdf/wkhtmltoimage?

I want to run a javascript on a website, but when I do it, nothing changes, I get the pdf as if I run no result of the javascript on it, this is an example of what I do:

xvfb-run --server-args="-screen 0, 1024x768x24" wkhtmltoimage --run-script "javascript:(\$(function(){ \$("div").hide()   ;}))" google.com google.png

I have also scripts without jquery like:

xvfb-run --server-args="-screen 0, 1024x768x24" wkhtmltopdf --run-script "javascript:(function(){ document.write("AHHHHHHHHHHHHHHHHHHHHHHHHHHHHH"); ;})" google.com p2.pdf

But as I said, no effect on the pdf or the png (because I have tried both wkhtmltoimage and wkhtmltopdf).

like image 941
aDoN Avatar asked Apr 09 '14 12:04

aDoN


People also ask

How do I change page size in Wkhtmltopdf?

Page sizes: The default page size of the rendered document is A4, but by using the --page-size option this can be changed to almost anything else, such as: A3, Letter and Legal.


2 Answers

Your command uses quotes incorrectly; try this:

--run-script "javascript:(\$(function(){ \$('div').hide()   ;}))"

Also, try increasing the JavaScript delay:

--javascript-delay 1000

http://wkhtmltopdf.org/usage/wkhtmltopdf.txt

like image 68
jgillich Avatar answered Sep 22 '22 15:09

jgillich


About the question

"do you know any way of generate a .png with less size? cause every png I generate weights 9MB"

I had the same problem with large PNG files generated with wkhtmltoimage and managed to fix this with adding the flag --quality 0, that shrunk the image from 3.5MB to just 38KB. Note that PNG is doing lossless compression so the image quality won't change only will be shrunk in size. Be careful when using --quality flag when you output to jpg format as this can blur the image is you set it too low.

like image 22
justd Avatar answered Sep 23 '22 15:09

justd