PDF 到 HTML 和 HTML 到 PDF 解决方案在 php 中



我需要将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');
    

相关内容

  • 没有找到相关文章