0
codeigniterでパスワードを保護したPDFファイルを作成することはできますか?電子メールで送信するPDFファイルを保護するためにパスワードを使用する必要があります。CodeigniterパスワードでPDFファイルを作成
これは誰でも知っていますか?メール用のhttps://mpdf.github.io/reference/mpdf-functions/setprotection.html#examples
<?php
$mpdf = new mPDF();
// Encrypt the file and grant no permissions to the user to copy, print etc.
// The user will be able to open the file as no password is specified
// Owner cannot access full rights because no owner_password was set
$mpdf->SetProtection(array(), 'UserPassword', 'MyPassword');
$mpdf->WriteHTML('
Hallo World
');
$mpdf->Output('filename.pdf');
?>
この例のようにMPDFライブラリの使用では
どのライブラリを使用してPDFを作成しましたか? –
私は@BharatDangar – Antonio
のライブラリを知りません。このhttps://mpdf.github.io/reference/mpdf-functions/setprotection.html#examples –