我正在使用 mpdf 库创建 pdf 文件。我想在创建 PDF 文件后对其进行密码保护。我在 mpdf 网站上找不到任何选项。如果有任何可用的选项,请告诉我。下面是我用于 mpdf 的代码。
<?php
$html = "This a test password protected pdf";
//==============================================================
//==============================================================
//==============================================================
include("MPDF56/mpdf.php");
/*$mpdf = new mPDF('', // mode - default ''
'', // format - A4, for example, default ''
0, // font size - default 0
'', // default font family
15, // margin_left
15, // margin right
16, // margin top
16, // margin bottom
9, // margin header
9, // margin footer
'L'); // L - landscape, P - portrait*/
$mpdf=new mPDF('c','A4','','',1,1,1,1,0,0);
$mpdf->SetDisplayMode('fullpage');
$mpdf->list_indent_first_level = 0; // 1 or 0 - whether to indent the first level of a list
// LOAD a stylesheet
$stylesheet = file_get_contents('./pdf_additional_files/style.css');
$mpdf->WriteHTML($stylesheet,1); // The parameter 1 tells that this is css/style only and no body/html/text
$mpdf->WriteHTML($html,2);
$mpdf->Output('mpdf.pdf','I');
exit;
//==============================================================
//==============================================================
//==============================================================
?>