I'm creating a PDF within PHP, I want to set permissions so the output file cannot be copied but saved or printed, my begin_document, where I think it is the error is:
$optlist="permissions={nocopy noaccessible noassemble}";
if ($p->begin_document("", $optlist) == 0) {
die("Error: " . $p->get_errmsg());
}
I'm not sure what all those options mean, but I only want that no partial part of the output document can be copied.
I hope someone can help!!!
Tnx!