0

タイトルのように、これに対する答えはどこにもありません。PHPを介してライブデータが注入されたテンプレートの背景を使用して、いくつかのpdfを作成する必要があります。ユーザーにプッシュされる最終的な PDF をパスワードで暗号化する必要がありますが、EzPDF はこれをサポートしていますか?

4

1 に答える 1

0

あなたのタイトルが表示され、あなたExPDFが求めているのEzPDFこれをサポートしているかどうか です

$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);

//Password Protection (SetProtection($permissions=array('print', 'copy'), $user_pass='', $owner_pass=null, $mode=0, $pubkeys=null);) 
$pdf->SetProtection(array('print', 'copy'), $user_pass, $owner_pass, $mode, null);


//Example With Public Keys 

$pdf->SetProtection(array('print', 'copy'), $user_pass, $owner_pass, $mode, array(array('c' => 'file://../tcpdf.crt', 'p' => array('print'))));
于 2012-08-02T11:29:03.673 に答える