Open
Description
Right now the PDFDoc::_generate_signature_in_document always creates a new annotation object. I would like to have the functionality to update an existing signature box.
For now I extended the PDFDoc object, so that it does:
$annotationObject = $this->get_object($this->signatureBoxId);
instead of
PDFDoc::449
$annotation_object = $this->create_object([
"Type" => "/Annot",
"Subtype" => "/Widget",
"FT" => "/Sig",
"V" => new PDFValueString(""),
"T" => new PDFValueString('Signature' . get_random_string()),
"P" => new PDFValueReference($page_obj->get_oid()),
"Rect" => $recttoappear,
"F" => 132 // TODO: check this value
]
);
I created the setSignatureBoxId(int $signatureBoxId) function to set the signature box ID that will be updated. This function checks if the given ID is an existing signature box (correct type/subtype etc.)
Metadata
Metadata
Assignees
Labels
No labels