How to leave without permission a PDF generated by TCPDF to modify or copy, etc?
These would interest me to leave without permission:
- Document assembly
- Page extraction
- Comments
How to leave without permission a PDF generated by TCPDF to modify or copy, etc?
These would interest me to leave without permission:
Try using the function
setProtection()
for example:
$pdf->SetProtection($permissions = array('print', 'modify', 'copy', 'annot-forms', 'fill-forms', 'extract', 'assemble', 'print-high'), '', null, 0, null);
Here is the link to the documentation of the function