- 浏览: 695791 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
qgm168:
...
Ruby中HmacMD5加密 -
lucky_god:
感谢楼主,写的很详细!
Redhat安装gem包报错“no such file to load — zlib”以及ruby的openssl扩展等错误的修正 -
liaozhaijk:
$("某一个dom").change() ...
jquery绑定input 文本域(text),检测值的变化 -
avalonzst:
...
Mysql启动失败Can’t connect to local MySQL server through socket ‘/var/lib/mysql/mysq -
zdz8207:
非常感谢,我的也是磁盘满了导致的问题,顺便分享下查看磁盘的命令 ...
Mysql启动失败Can’t connect to local MySQL server through socket ‘/var/lib/mysql/mysq
wkhtmltopdf 0.9.6 Manual
This file documents wkhtmltopdf, a program capable of converting html documents into PDF documents.
Contact
If you experience bugs or want to request new features please visit http://code.google.com/p/wkhtmltopdf/issues/list, if you have any problems or comments please feel free to contact me: see http://www.madalgo.au.dk/~jakobt/#about
Reduced Functionality
Some versions of wkhtmltopdf are compiled against a version of QT without the wkhtmltopdf patches. These versions are missing some features, you can find out if your version of wkhtmltopdf is one of these by running wkhtmltopdf --version if your version is against an unpatched QT, you can use the static version to get all functionality.
Currently the list of features only supported with patch QT includes:
Printing more then one HTML document into a PDF file.
Running without an X11 server.
Adding a document outline to the PDF file.
Adding headers and footers to the PDF file.
Generating a table of contents.
Adding links in the generated PDF file.
Printing using the screen media-type.
Disabling the smart shrink feature of webkit.
License
Copyright (C) 2008,2009 Wkhtmltopdf Authors.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
Authors
Written by Jakob Truelsen. Patches by Mário Silva, Benoit Garret and Emmanuel Bouthenot.
Synopsis
wkhtmltopdf [OPTIONS]... <input file> [More input files] <output file>
General Options
Items marked * are only available using patched QT.
Headers And Footer Options
Items marked * are only available using patched QT.
Outline Options
Items marked * are only available using patched QT.
Specifying A Proxy
By default proxy information will be read from the environment variables: proxy, all_proxy and http_proxy, proxy options can also by specified with the -p switch
<type> := "http://" | "socks5://"
<serif> := <username> (":" <password>)? "@"
<proxy> := "None" | <type>? <sering>? <host> (":" <port>)?
Here are some examples (In case you are unfamiliar with the BNF):
http://user:password@myproxyserver:8080
socks5://myproxyserver
None
Footers And Headers
Headers and footers can be added to the document by the --header-* and --footer* arguments respectfully. In header and footer text string supplied to e.g. --header-left, the following variables will be substituted.
* [page] Replaced by the number of the pages currently being printed
* [frompage] Replaced by the number of the first page to be printed
* [topage] Replaced by the number of the last page to be printed
* [webpage] Replaced by the URL of the page being printed
* [section] Replaced by the name of the current section
* [subsection] Replaced by the name of the current subsection
* [date] Replaced by the current date in system local format
* [time] Replaced by the current time in system local format
As an example specifying --header-right "Page [page] of [toPage]", will result in the text "Page x of y" where x is the number of the current page and y is the number of the last page, to appear in the upper left corner in the document.
Headers and footers can also be supplied with HTML documents. As an example one could specify --header-html header.html, and use the following content in header.html:
As can be seen from the example, the arguments are sent to the header/footer html documents in get fashion.
Outlines
Wkhtmltopdf with patched qt has support for PDF outlines also known as book marks, this can be enabled by specifying the --outline switch. The outlines are generated based on the <h?> tags, for a in-depth description of how this is done see the "Table Of Contest" section.
The outline tree can sometimes be very deep, if the <h?> tags where spread to generous in the HTML document. The --outline-depth switch can be used to bound this.
Page Breaking
The current page breaking algorithm of WebKit leaves much to be desired. Basically webkit will render everything into one long page, and then cut it up into pages. This means that if you have two columns of text where one is vertically shifted by half a line. Then webkit will cut a line into to pieces display the top half on one page. And the bottom half on another page. It will also break image in two and so on. If you are using the patched version of QT you can use the CSS page-break-inside property to remedy this somewhat. There is no easy solution to this problem, until this is solved try organising your HTML documents such that it contains many lines on which pages can be cut cleanly.
See also: http://code.google.com/p/wkhtmltopdf/issues/detail?id=9, http://code.google.com/p/wkhtmltopdf/issues/detail?id=33 and http://code.google.com/p/wkhtmltopdf/issues/detail?id=57.
Page sizes
The default page size of the rendered document is A4, but using this --page-size optionthis can be changed to almost anything else, such as: A3, Letter and Legal. For a full list of supported pages sizes please see http://doc.trolltech.com/4.6/qprinter.html#PageSize-enum.
For a more fine grained control over the page size the --page-height and --page-width options may be used
Reading arguments from stdin
If you need to convert a lot of pages in a batch, and you feel that wkhtmltopdf is a bit to slow to start up, then you should try --read-args-from-stdin,
When --read-args-from-stdin each line of input sent to wkhtmltopdf on stdin will act as a separate invocation of wkhtmltopdf, with the arguments specified on the given line combined with the arguments given to wkhtmltopdf
For example one could do the following:
echo "http://doc.trolltech.com/4.5/qapplication.html qapplication.pdf" >> cmds
echo "--cover google.com http://en.wikipedia.org/wiki/Qt_(toolkit) qt.pdf" >> cmds
wkhtmltopdf --read-args-from-stdin --book < cmds
Static version
On the wkhtmltopdf website you can download a static version of wkhtmltopdf http://code.google.com/p/wkhtmltopdf/downloads/list. This static binary will work on most systems and comes with a build in patched QT.
Unfortunately the static binary is not particularly static, on Linux it depends on both glibc and openssl, furthermore you will need to have an xserver installed but not necessary running. You will need to have different fonts install including xfonts-scalable (Type1), and msttcorefonts. See http://code.google.com/p/wkhtmltopdf/wiki/static for trouble shouting.
Compilation
It can happen that the static binary does not work for your system for one reason or the other, in that case you might need to compile wkhtmltopdf yourself.
GNU/Linux:
Before compilation you will need to install dependencies: X11, gcc, git and openssl. On Debian/Ubuntu this can be done as follows:
sudo apt-get build-dep libqt4-gui libqt4-network libqt4-webkit
sudo apt-get install openssl build-essential xorg git-core git-doc libssl-dev
On other systems you must use your own package manager, the packages might be named differently.
First you must check out the modified version of QT
git clone git://gitorious.org/+wkhtml2pdf/qt/wkhtmltopdf-qt.git wkhtmltopdf-qt
Next you must configure, compile and install QT, note this will take quite some time, depending on what arguments you use to configure qt
All that is needed now is, to compile wkhtmltopdf.
git clone git://github.com/antialize/wkhtmltopdf.git wkhtmltopdf
cd wkhtmltopdf
../wkqt/bin/qmake
make -j3
You show now have a binary called wkhtmltopdf in the currently folder that you can use, you can optionally install it by running
make install
Other operative systems and advanced features
If you want more details or want to compile under other operative systemsother then GNU/Linux, please seehttp://code.google.com/p/wkhtmltopdf/wiki/compilation.
Installation
There are several ways to install wkhtmltopdf. You can download a already compiled binary, or you can compile wkhtmltopdf yourself. On windows the easiest way to install wkhtmltopdf is to download the latest installer. On linux you can download the latest static binary, however you still need to install some other pieces of software, to learn more about this read the static version section of the manual.
Examples
This section presents a number of examples of how to invoke wkhtmltopdf.
To convert a remote HTML file to PDF:
wkhtmltopdf http://www.google.com google.pdf
To convert a local HTML file to PDF:
wkhtmltopdf my.html my.pdf
You can also convert to PS files if you like:
wkhtmltopdf my.html my.ps
Produce the eler2.pdf sample file:
wkhtmltopdf [url]http://geekz.co.uk/lovesraymond/archive/eler-highlights-2008 eler2.pdf -H --outline[/url]
This file documents wkhtmltopdf, a program capable of converting html documents into PDF documents.
Contact
If you experience bugs or want to request new features please visit http://code.google.com/p/wkhtmltopdf/issues/list, if you have any problems or comments please feel free to contact me: see http://www.madalgo.au.dk/~jakobt/#about
Reduced Functionality
Some versions of wkhtmltopdf are compiled against a version of QT without the wkhtmltopdf patches. These versions are missing some features, you can find out if your version of wkhtmltopdf is one of these by running wkhtmltopdf --version if your version is against an unpatched QT, you can use the static version to get all functionality.
Currently the list of features only supported with patch QT includes:
Printing more then one HTML document into a PDF file.
Running without an X11 server.
Adding a document outline to the PDF file.
Adding headers and footers to the PDF file.
Generating a table of contents.
Adding links in the generated PDF file.
Printing using the screen media-type.
Disabling the smart shrink feature of webkit.
License
Copyright (C) 2008,2009 Wkhtmltopdf Authors.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
Authors
Written by Jakob Truelsen. Patches by Mário Silva, Benoit Garret and Emmanuel Bouthenot.
Synopsis
wkhtmltopdf [OPTIONS]... <input file> [More input files] <output file>
General Options
--allow <path> Allow the file or files from the specified folder to be loaded (repeatable) -b, --book* Set the options one would usually set when printing a book --collate Collate when printing multiple copies --cookie <name> <value> Set an additional cookie (repeatable) --cookie-jar <path> Read and write cookies from and to the supplied cookie jar file --copies <number> Number of copies to print into the pdf file (default 1) --cover* <url> Use html document as cover. It will be inserted before the toc with no headers and footers --custom-header <name> <value> Set an additional HTTP header (repeatable) --debug-javascript Show javascript debugging output -H, --default-header* Add a default header, with the name of the page to the left, and the page number to the right, this is short for: --header-left='[webpage]' --header-right='[page]/[toPage]' --top 2cm --header-line --disable-external-links* Do no make links to remote web pages --disable-internal-links* Do no make local links -n, --disable-javascript Do not allow web pages to run javascript --disable-pdf-compression* Do not use lossless compression on pdf objects --disable-smart-shrinking* Disable the intelligent shrinking strategy used by WebKit that makes the pixel/dpi ratio none constant --disallow-local-file-access Do not allowed conversion of a local file to read in other local files, unless explecitily allowed with --allow -d, --dpi <dpi> Change the dpi explicitly (this has no effect on X11 based systems) --enable-plugins Enable installed plugins (such as flash --encoding <encoding> Set the default text encoding, for input --extended-help Display more extensive help, detailing less common command switches --forms* Turn HTML form fields into pdf form fields -g, --grayscale PDF will be generated in grayscale -h, --help Display help --htmldoc Output program html help --ignore-load-errors Ignore pages that claimes to have encountered an error during loading -l, --lowquality Generates lower quality pdf/ps. Useful to shrink the result document space --manpage Output program man page -B, --margin-bottom <unitreal> Set the page bottom margin (default 10mm) -L, --margin-left <unitreal> Set the page left margin (default 10mm) -R, --margin-right <unitreal> Set the page right margin (default 10mm) -T, --margin-top <unitreal> Set the page top margin (default 10mm) --minimum-font-size <int> Minimum font size (default 5) --no-background Do not print background -O, --orientation <orientation> Set orientation to Landscape or Portrait --page-height <unitreal> Page height (default unit millimeter) --page-offset* <offset> Set the starting page number (default 1) -s, --page-size <size> Set paper size to: A4, Letter, etc. --page-width <unitreal> Page width (default unit millimeter) --password <password> HTTP Authentication password --post <name> <value> Add an additional post field (repeatable) --post-file <name> <path> Post an aditional file (repeatable) --print-media-type* Use print media-type instead of screen -p, --proxy <proxy> Use a proxy -q, --quiet Be less verbose --read-args-from-stdin Read command line arguments from stdin --readme Output program readme --redirect-delay <msec> Wait some milliseconds for js-redirects (default 200) --replace* <name> <value> Replace [name] with value in header and footer (repeatable) --stop-slow-scripts Stop slow running javascripts --title <text> The title of the generated pdf file (The title of the first document is used if not specified) -t, --toc* Insert a table of content in the beginning of the document --use-xserver* Use the X server (some plugins and other stuff might not work without X11) --user-style-sheet <url> Specify a user style sheet, to load with every page --username <username> HTTP Authentication username -V, --version Output version information an exit --zoom <float> Use this zoom factor (default 1)
Items marked * are only available using patched QT.
Headers And Footer Options
--footer-center* <text> Centered footer text --footer-font-name* <name> Set footer font name (default Arial) --footer-font-size* <size> Set footer font size (default 11) --footer-html* <url> Adds a html footer --footer-left* <text> Left aligned footer text --footer-line* Display line above the footer --footer-right* <text> Right aligned footer text --footer-spacing* <real> Spacing between footer and content in mm (default 0) --header-center* <text> Centered header text --header-font-name* <name> Set header font name (default Arial) --header-font-size* <size> Set header font size (default 11) --header-html* <url> Adds a html header --header-left* <text> Left aligned header text --header-line* Display line below the header --header-right* <text> Right aligned header text --header-spacing* <real> Spacing between header and content in mm (default 0) Items marked * are only available using patched QT. Table Of Content Options --toc-depth* <level> Set the depth of the toc (default 3) --toc-disable-back-links* Do not link from section header to toc --toc-disable-links* Do not link from toc to sections --toc-font-name* <name> Set the font used for the toc (default Arial) --toc-header-font-name* <name> The font of the toc header (if unset use --toc-font-name) --toc-header-font-size* <size> The font size of the toc header (default 15) --toc-header-text* <text> The header text of the toc (default Table Of Contents) --toc-l1-font-size* <size> Set the font size on level 1 of the toc (default 12) --toc-l1-indentation* <num> Set indentation on level 1 of the toc (default 0) --toc-l2-font-size* <size> Set the font size on level 2 of the toc (default 10) --toc-l2-indentation* <num> Set indentation on level 2 of the toc (default 20) --toc-l3-font-size* <size> Set the font size on level 3 of the toc (default 8) --toc-l3-indentation* <num> Set indentation on level 3 of the toc (default 40) --toc-l4-font-size* <size> Set the font size on level 4 of the toc (default 6) --toc-l4-indentation* <num> Set indentation on level 4 of the toc (default 60) --toc-l5-font-size* <size> Set the font size on level 5 of the toc (default 4) --toc-l5-indentation* <num> Set indentation on level 5 of the toc (default 80) --toc-l6-font-size* <size> Set the font size on level 6 of the toc (default 2) --toc-l6-indentation* <num> Set indentation on level 6 of the toc (default 100) --toc-l7-font-size* <size> Set the font size on level 7 of the toc (default 0) --toc-l7-indentation* <num> Set indentation on level 7 of the toc (default 120) --toc-no-dots* Do not use dots, in the toc
Items marked * are only available using patched QT.
Outline Options
--dump-outline* <file> Dump the outline to a file --outline* Put an outline into the pdf --outline-depth* <level> Set the depth of the outline (default 4)
Items marked * are only available using patched QT.
Specifying A Proxy
By default proxy information will be read from the environment variables: proxy, all_proxy and http_proxy, proxy options can also by specified with the -p switch
<type> := "http://" | "socks5://"
<serif> := <username> (":" <password>)? "@"
<proxy> := "None" | <type>? <sering>? <host> (":" <port>)?
Here are some examples (In case you are unfamiliar with the BNF):
http://user:password@myproxyserver:8080
socks5://myproxyserver
None
Footers And Headers
Headers and footers can be added to the document by the --header-* and --footer* arguments respectfully. In header and footer text string supplied to e.g. --header-left, the following variables will be substituted.
* [page] Replaced by the number of the pages currently being printed
* [frompage] Replaced by the number of the first page to be printed
* [topage] Replaced by the number of the last page to be printed
* [webpage] Replaced by the URL of the page being printed
* [section] Replaced by the name of the current section
* [subsection] Replaced by the name of the current subsection
* [date] Replaced by the current date in system local format
* [time] Replaced by the current time in system local format
As an example specifying --header-right "Page [page] of [toPage]", will result in the text "Page x of y" where x is the number of the current page and y is the number of the last page, to appear in the upper left corner in the document.
Headers and footers can also be supplied with HTML documents. As an example one could specify --header-html header.html, and use the following content in header.html:
<html><head><script> function subst() { var vars={}; var x=document.location.search.substring(1).split('&'); for(var i in x) {var z=x[i].split('=',2);vars[z[0]] = unescape(z[1]);} var x=['frompage','topage','page','webpage','section','subsection','subsubsection']; for(var i in x) { var y = document.getElementsByClassName(x[i]); for(var j=0; j<y.length; ++j) y[j].textContent = vars[x[i]]; } } </script></head><body style="border:0; margin: 0;" onload="subst()"> <table style="border-bottom: 1px solid black; width: 100%"> <tr> <td class="section"></td> <td style="text-align:right"> Page <span class="page"></span> of <span class="topage"></span> </td> </tr> </table> </body></html>
As can be seen from the example, the arguments are sent to the header/footer html documents in get fashion.
Outlines
Wkhtmltopdf with patched qt has support for PDF outlines also known as book marks, this can be enabled by specifying the --outline switch. The outlines are generated based on the <h?> tags, for a in-depth description of how this is done see the "Table Of Contest" section.
The outline tree can sometimes be very deep, if the <h?> tags where spread to generous in the HTML document. The --outline-depth switch can be used to bound this.
Page Breaking
The current page breaking algorithm of WebKit leaves much to be desired. Basically webkit will render everything into one long page, and then cut it up into pages. This means that if you have two columns of text where one is vertically shifted by half a line. Then webkit will cut a line into to pieces display the top half on one page. And the bottom half on another page. It will also break image in two and so on. If you are using the patched version of QT you can use the CSS page-break-inside property to remedy this somewhat. There is no easy solution to this problem, until this is solved try organising your HTML documents such that it contains many lines on which pages can be cut cleanly.
See also: http://code.google.com/p/wkhtmltopdf/issues/detail?id=9, http://code.google.com/p/wkhtmltopdf/issues/detail?id=33 and http://code.google.com/p/wkhtmltopdf/issues/detail?id=57.
Page sizes
The default page size of the rendered document is A4, but using this --page-size optionthis can be changed to almost anything else, such as: A3, Letter and Legal. For a full list of supported pages sizes please see http://doc.trolltech.com/4.6/qprinter.html#PageSize-enum.
For a more fine grained control over the page size the --page-height and --page-width options may be used
Reading arguments from stdin
If you need to convert a lot of pages in a batch, and you feel that wkhtmltopdf is a bit to slow to start up, then you should try --read-args-from-stdin,
When --read-args-from-stdin each line of input sent to wkhtmltopdf on stdin will act as a separate invocation of wkhtmltopdf, with the arguments specified on the given line combined with the arguments given to wkhtmltopdf
For example one could do the following:
echo "http://doc.trolltech.com/4.5/qapplication.html qapplication.pdf" >> cmds
echo "--cover google.com http://en.wikipedia.org/wiki/Qt_(toolkit) qt.pdf" >> cmds
wkhtmltopdf --read-args-from-stdin --book < cmds
Static version
On the wkhtmltopdf website you can download a static version of wkhtmltopdf http://code.google.com/p/wkhtmltopdf/downloads/list. This static binary will work on most systems and comes with a build in patched QT.
Unfortunately the static binary is not particularly static, on Linux it depends on both glibc and openssl, furthermore you will need to have an xserver installed but not necessary running. You will need to have different fonts install including xfonts-scalable (Type1), and msttcorefonts. See http://code.google.com/p/wkhtmltopdf/wiki/static for trouble shouting.
Compilation
It can happen that the static binary does not work for your system for one reason or the other, in that case you might need to compile wkhtmltopdf yourself.
GNU/Linux:
Before compilation you will need to install dependencies: X11, gcc, git and openssl. On Debian/Ubuntu this can be done as follows:
sudo apt-get build-dep libqt4-gui libqt4-network libqt4-webkit
sudo apt-get install openssl build-essential xorg git-core git-doc libssl-dev
On other systems you must use your own package manager, the packages might be named differently.
First you must check out the modified version of QT
git clone git://gitorious.org/+wkhtml2pdf/qt/wkhtmltopdf-qt.git wkhtmltopdf-qt
Next you must configure, compile and install QT, note this will take quite some time, depending on what arguments you use to configure qt
cd wkhtmltopdf-qt ./configure -nomake tools,examples,demos,docs,translations -opensource -prefix ../wkqt make -j3 make install cd ..
All that is needed now is, to compile wkhtmltopdf.
git clone git://github.com/antialize/wkhtmltopdf.git wkhtmltopdf
cd wkhtmltopdf
../wkqt/bin/qmake
make -j3
You show now have a binary called wkhtmltopdf in the currently folder that you can use, you can optionally install it by running
make install
Other operative systems and advanced features
If you want more details or want to compile under other operative systemsother then GNU/Linux, please seehttp://code.google.com/p/wkhtmltopdf/wiki/compilation.
Installation
There are several ways to install wkhtmltopdf. You can download a already compiled binary, or you can compile wkhtmltopdf yourself. On windows the easiest way to install wkhtmltopdf is to download the latest installer. On linux you can download the latest static binary, however you still need to install some other pieces of software, to learn more about this read the static version section of the manual.
Examples
This section presents a number of examples of how to invoke wkhtmltopdf.
To convert a remote HTML file to PDF:
wkhtmltopdf http://www.google.com google.pdf
To convert a local HTML file to PDF:
wkhtmltopdf my.html my.pdf
You can also convert to PS files if you like:
wkhtmltopdf my.html my.ps
Produce the eler2.pdf sample file:
wkhtmltopdf [url]http://geekz.co.uk/lovesraymond/archive/eler-highlights-2008 eler2.pdf -H --outline[/url]
发表评论
-
反向代理的nginx日志设置显示源ip
2018-12-03 14:35 2343外层代理A设置为 location /*** { ... -
ubuntu下中文文件乱码
2015-12-01 13:36 1433从windows上传上去的文件名如果是中文会有乱码的情况出现, ... -
Redhat远程sftp连接失败
2015-11-23 09:40 2833服务器设置ssh之后,远程sftp连接失败 引用 Connec ... -
Ubuntu下rails程序链接oracle数据库
2015-09-17 15:32 2505rails支持oracle数据库连接 一、下载安装(解压)依 ... -
ubuntu设置为unity 2D
2015-01-29 17:06 1112vbox安装完ubuntu之后,unity 3d支持不好 编 ... -
ubuntu中ruby使用文字生成图片以及汉字不显示(或者乱码)的问题
2014-12-23 10:29 2330ruby中使用IMGKit这个gem可以完成文字以及html生 ... -
alias在bashrc中设置后无效的问题
2014-09-02 09:32 2194在用户目录的.bashrc中添加一一堆alias命令,但是每次 ... -
linux系统性能监控
2014-06-03 16:18 1015linux服务器在运转过程中,总要监控一些性能方面的东西,比如 ... -
Ubuntu的crontab日志
2013-10-12 12:36 1258Ubuntu的crontab日志是关闭的 打开crontab日 ... -
vim安装airline插件
2013-09-02 17:58 7871https://github.com/bling/vim-ai ... -
vim安装FuzzyFinder 插件
2013-09-02 14:29 2418FuzzyFinder 是一个非常强大的Vim插件 安装Fuz ... -
vim安装command-t插件
2013-09-02 13:05 4758commnad-t是一个很好的vim插件 安装的步骤似乎很简 ... -
使用Linux的logrotate拆分rails、nginx的log日志
2013-08-30 10:43 1988使用Linux的logrotate拆分rails、nginx的 ... -
libiconv.so.2 cannot open shared object file: No such file or directory
2013-08-02 17:04 4205libiconv.so.2: cannot open shar ... -
(转)Centos安装Git
2013-03-07 14:37 4282centos安装git 下载源代码安装后,git clo ... -
Curl和Wget访问HTTPS连接出现Unable to establish SSl connection错误
2013-03-07 11:22 34615问题如题: 解决方案: 他们都可以跳过这个验证 wget 使用 ... -
wkhtmltopdf专成pdf文件之后的页码显示问题
2012-08-29 11:06 3279在页面header或者footer上面添加page(当前页数) ... -
linux的一些命令 -查看cc攻击-网口ip统计等
2014-08-14 09:44 12818Linux判断CC攻击命令详解 2011年12月23日 ⁄ 安 ... -
vim使用笔记
2011-10-28 10:54 23151 首先 安装vim 安装vim很简单的命令 sudo ... -
闲的蛋疼之mplayer的编译安装
2011-10-24 23:02 12633虽说安装mplayer都是装过N次的东西,不过都是用现成的de ...
相关推荐
wkhtmltopdf是html转pdf的第三方开源工具,基于wekit内核,完美支持html5,css3,js,ajax;...网上有很多关于wkhtmltopdf的参数说明,但是大多简陋,这个文档敢说精讲,绝对比一般博客的详细得多,超出你想象
WKhtmltopdf是一款开源工具,专门用于将HTML文档转换为PDF格式。它的主要优势在于能够快速、高效地处理网页内容,并且在转换过程中保持原始HTML的样式和布局,使得生成的PDF文件与网页显示效果一致。这个...
在IT运维和文档处理中,`wkhtmltopdf`被广泛应用于自动化报告生成、网页存档等多个场景。 标题中提到的"批量生成pdf"功能,意味着这个工具或封装库支持一次性处理多个HTML文件,将其全部转化为PDF。这对于需要处理...
wkhtmltopdf是一款开源命令行工具,用于将HTML页面转换为高质量的PDF或图像文件。在Windows环境下,这个工具...为了深入了解和使用 wkhtmltopdf,建议查看官方文档或在线社区资源,以获取更详细的配置选项和使用案例。
`phpwkhtmltopdf`是一个基于PHP的库,它提供了对`wkhtmltopdf`工具的接口,允许用户在服务器端将HTML文档转换为PDF格式。`wkhtmltopdf`本身是一个开源命令行工具,利用Qt WebKit渲染引擎将Web内容转化为高质量的PDF...
首先,`wkhtmltopdf` 是一个基于Webkit渲染引擎的开源命令行工具,它可以将HTML页面完美地转换为PDF文档。它利用了WebKit的内核,因此能够准确地呈现网页,包括CSS样式、JavaScript和图像。在描述中提到,由于`...
在HTML转换为PDF的过程中,经常会遇到一个问题,那就是中文字符无法正常显示,这通常是由于目标PDF不包含支持中文的字体导致的。...通过阅读和参照提供的文档,用户可以更顺利地完成HTML到PDF的转换工作。
毕业设计基于SSM/Springboot的商城项目,一个简单的商城,界面友好,但是不是很漂亮。实现了商城所有基本功能...html导出pdf - wkhtmltopdf插件 <项目介绍> 该资源内项目源码是个人的毕设,代码都测试ok,都是运行成功
PDF(Portable Document Format)文档是文档分享和阅读的标准格式,"dotnet-eud-20.2.pdf"很可能是这份最终用户文档的主文件,包含了关于.NET应用的具体操作指南和功能说明。PDF文档通常具有良好的格式保持性,方便...
`Word助手的程序使用说明.doc`文件会详细解释如何运行和使用这个程序,包括命令行参数、输入输出格式等信息。 总的来说,这个项目提供了一种高效的方法来处理大量Word文档,特别是在需要统一格式或者方便电子阅读的...
请注意, wkhtmltopdf下的Qt浏览器比chromium浏览器低很多,因此下载的PDF的结果将根据每种支持的功能而有所不同。 Chrome驱动器 将Chromium或Chrome下载并安装到您的Moodle服务器上。 在基于debian的linux系统上,...
解压后,用户可以按照提供的说明文档进行安装,通常包括将可执行文件移动到系统路径中,以便全局调用。在部署时,确保你的Linux环境满足必要的依赖,例如Qt库和Webkit库。 另外,"imagick-3.4.4.tgz"是ImageMagick...
压缩包中的"本软件下载说明.htm"和"本软件使用说明.txt"文件很可能是提供更详细的安装指南和使用教程,包括如何配置环境变量、处理JavaScript、处理URL链接等常见问题。而“使用帮助(偶要下载站).url”则可能是一个...
使用说明.txt文件通常会包含关于如何安装和使用wkhtmltox的详细步骤和参数选项。例如,它可能会指导用户如何执行基本的转换命令,例如: ``` wkhtmltopdf http://example.com output.pdf ``` 这行命令将会把网页`...
另一个可能的库是`Html2Pdf`,它使用了`wkhtmltopdf`(一个基于WebKit的HTML转换工具)的Android版本`android-wkhtmltopdf`来将HTML转换为PDF。还有像`PDFreactor`这样的服务,可以在线处理HTML并返回PDF。 实现这...
本篇文章将深入探讨如何在C#环境中生成PDF,并结合提供的小demo和第三方库来说明实现这一功能的方法。 首先,我们要了解PDF(Portable Document Format)是一种跨平台的文件格式,它能保留文档的原始布局和样式,...
在按照下面的安装说明进行操作之前。 假定您已经安装了npm和nodejs。 / user / sam / git / caja是所有安装的位置(用系统上的任何用户名替换“ sam”。 npm和nodejs使用appget或其他安装工具(取决于您Linux / ...
对于其他平台,请参照官方GitHub仓库的说明进行安装。 `pdfkit`提供了一系列简单易用的API,例如: 1. `from_url`:接受一个URL,生成PDF并保存到指定文件。 2. `from_file`:接受一个HTML文件路径,生成PDF并保存...
在数字化信息的时代,PDF作为一种通用的文档格式,因其良好的跨平台阅读体验和稳定的格式保持能力,被广泛用于保存和分享文档。这款HTML转PDF工具v1.0绿色免费版,为用户提供了无需复杂操作就能实现网页到PDF转换的...
github在国内访问有时很缓慢,特别是图片,我把本说明文档同步放到了我的 项目中用到的wkhtmltopdf如果从github下载慢也可以后把wkhtmltopdf复制到本项目的目录下。 本项目的最新文章会发在公众号“不止技术流”中,...