我需要将PDF文档转换为HTML,编辑html后,我将这个HTML转换为PDF。我使用"pdftohtml"ubuntu命令(pdftohtml - 将pdf文件转换为html,xml和png图像的程序),就像下面的PHP代码一样
<?php $output = shell_exec('pdftohtml create.pdf updated.html'); ?>
它成功转换整个文档,但它在页面顶部传递所有图像。谁能帮我做这项工作?
-
您可以使用"-layout"标志在转换后的
html
文件中保留原始PDF
文件中的文档布局(页眉、页脚、分页等)。$output = shell_exec('pdftohtml -layout create.pdf updated.html');
-
如果只想转换
PDF
文件中的页面范围,请使用"-f"和"-l"(小写"L")标志指定要转换的范围中的第一页和最后一页。$output = shell_exec('pdftohtml -f 5 -l 9 create.pdf updated.html');
-
要转换使用所有者密码保护和加密的
PDF
文件,请使用"-opw"标志(标志中的第一个字符是小写字母"O",而不是零)。$output = shell_exec('pdftohtml -opw ‘password’ create.pdf updated.html');
源