Sign Several Times
Table of Contents
Introduction
Sometimes it is needed to sign a PDF document by several signees. The PDF format does not support parallel signatures but you have to simply restart the signature process for each signee.
Example
To sign a PDF document several times you need to create intermediate versions of the document. Following example shows this as a manual process:
Unknown signature field name
If you don't want or need to care about the signature field names, just use following logic to get a new unused signature field:
PHP
$field = $signer->addSignatureField(); $signer->setSignatureFieldName($field->getQualifiedName());
All details about creating signature fields are documented here.