Skip to content

Instantly share code, notes, and snippets.

@ketanghumatkar
Created October 5, 2015 13:51
Show Gist options
  • Save ketanghumatkar/8e25dfcf760e12d8df41 to your computer and use it in GitHub Desktop.
Save ketanghumatkar/8e25dfcf760e12d8df41 to your computer and use it in GitHub Desktop.
Installing wkhtmltopdf on ubuntu
apt-get install wkhtmltopdf
apt-get install xvfb
echo 'xvfb-run --server-args="-screen 0, 1024x768x24" /usr/bin/wkhtmltopdf $*' > /usr/bin/wkhtmltopdf.sh
chmod a+rx /usr/bin/wkhtmltopdf.sh
ln -s /usr/bin/wkhtmltopdf.sh /usr/local/bin/wkhtmltopdf
wkhtmltopdf http://www.google.com output.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment