加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > PHP > 正文

php – wkhtmltopdf:什么纸张大小有效?

发布时间:2020-05-25 09:44:18 所属栏目:PHP 来源:互联网
导读:我正在使用 wkhtmltopdf(html to pdf converter),并通过php shell_exec来运行它. 当运行wkhtmltopdf –help一个选项是大小,帮助文本是 Set paper size to: A4, Letter, etc. 我想知道有没有人可以运行这个可执行文件的纸张大小的列表? 具体版本为wkhtmltopdf

我正在使用 wkhtmltopdf(html to pdf converter),并通过php shell_exec来运行它.

当运行wkhtmltopdf –help一个选项是大小,帮助文本是

Set paper size to: A4,Letter,etc.

我想知道有没有人可以运行这个可执行文件的纸张大小的列表?

具体版本为wkhtmltopdf-0.9.9-static-i386

如果您通过 pdfsettings.cc source in the project repository查看,您会发现这个列表,它像我们接受的指定纸张尺寸列表一样.
res["A0"] = QPrinter::A0;
res["A1"] = QPrinter::A1;
res["A2"] = QPrinter::A2;
res["A3"] = QPrinter::A3;
res["A4"] = QPrinter::A4;
res["A5"] = QPrinter::A5;
res["A6"] = QPrinter::A6;
res["A7"] = QPrinter::A7;
res["A8"] = QPrinter::A8;
res["A9"] = QPrinter::A9;
res["B0"] = QPrinter::B0;
res["B1"] = QPrinter::B1;
res["B10"] = QPrinter::B10;
res["B2"] = QPrinter::B2;
res["B3"] = QPrinter::B3;
res["B4"] = QPrinter::B4;
res["B5"] = QPrinter::B5;
res["B6"] = QPrinter::B6;
res["B7"] = QPrinter::B7;
res["B8"] = QPrinter::B8;
res["B9"] = QPrinter::B9;
res["C5E"] = QPrinter::C5E;
res["Comm10E"] = QPrinter::Comm10E;
res["DLE"] = QPrinter::DLE;
res["Executive"] = QPrinter::Executive;
res["Folio"] = QPrinter::Folio;
res["Ledger"] = QPrinter::Ledger;
res["Legal"] = QPrinter::Legal;
res["Letter"] = QPrinter::Letter;
res["Tabloid"] = QPrinter::Tabloid;

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读