使用HTML2PDF插件时,Textarea和输入文本是可编辑的

时间:2015-08-19 13:28:13

标签: php laravel-4 html2pdf

我正在使用HTL2PDF插件。

我的问题是Texarea和PDF在我收到的PDF格式中都是可编辑的

我的代码如下

require_once(app_path().'/libs/html2pdf/html2pdf.class.php');

        $html2pdf = new HTML2PDF('P','A4','en');



        $html2pdf->pdf->SetDisplayMode('fullpage');



        $html2pdf->WriteHTML($html22);



        $htmltosend=$html2pdf->Output('','S');

有没有办法阻止它转换为可编辑的PDF

1 个答案:

答案 0 :(得分:2)

如果我理解正确,您想要创建PDF,但它不应该是可编辑的?使用SetProtection之类的:

$html2pdf->pdf->SetProtection(array('print'), '');

您可以在http://wiki.spipu.net/doku.php?id=html2pdf:en:v4:protect找到更多信息。 如果使用空权限数组,则只允许查看但不允许打印。权限的可能值为:

  
      
  • 复制:将文本和图像复制到剪贴板
  •   
  • print:打印文档
  •   
  • 修改:修改它(注释和表格除外)
  •   
  • annot-forms:添加注释和表单
  •