Image as Appearance
This demo shows you how to use an image in the XObject appearance module.
PHP
<?php // load and register the autoload function require_once __DIR__ . '/../../../../../bootstrap.php'; $writer = new \SetaPDF_Core_Writer_Http('visible-signature.pdf', true); $document = \SetaPDF_Core_Document::loadByFilename( $assetsDirectory . '/pdfs/camtown/Laboratory-Report.pdf', $writer ); // create a signer instance $signer = new \SetaPDF_Signer($document); // add a visible signature field $field = $signer->addSignatureField( \SetaPDF_Signer_SignatureField::DEFAULT_FIELD_NAME, 1, \SetaPDF_Signer_SignatureField::POSITION_RIGHT_TOP, ['x' => -160, 'y' => -100], 180, 70 ); // and define that you want to use this field $signer->setSignatureFieldName($field->getQualifiedName()); $certificatePath = $assetsDirectory . '/certificates/setapdf-no-pw.pem'; // now create a signature module $module = new \SetaPDF_Signer_Signature_Module_Pades(); // pass the path to the certificate $module->setCertificate('file://' . $certificatePath); // set the path to the private key (in this demo the key is also saved in the certificate file) $module->setPrivateKey('file://' . $certificatePath, ''); // load an image and ... $graphicImage = \SetaPDF_Core_Image::getByPath($assetsDirectory . '/images/Handwritten-Signature.png'); // or e.g. through base64 encoded image data: //$data = base64_decode('iVBORw0KGgoAAAANSUhEUgAABJYAAAEmCAYAAAAwZRqhAAAgAElEQVR4Xu.../w+l98Lb9eaTFwAAAABJRU5ErkJggg=='); //$graphicImage = \SetaPDF_Core_Image::get(new \SetaPDF_Core_Reader_String($data)); // convert it to an XObject $xObject = $graphicImage->toXObject($document); // which can be used to initiate a XObject appearance instance $appearance = new \SetaPDF_Signer_Signature_Appearance_XObject($xObject); // pass the appearance module to the signer instance $signer->setAppearance($appearance); // sign the document $signer->sign($module);