Skip to content

Option to update existing signature box (instead of always creating a new one) #88

Open
@ridgey-dev

Description

@ridgey-dev

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions