You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to sign a PDF multiple times with a digital signature and image. In version v1.4 it signs and preserves the images in all the parts where it was placed, but in higher versions v.1.7 it preserves all the signatures and only the last one added with an image.
I am trying to sign a PDF multiple times with a digital signature and image. In version v1.4 it signs and preserves the images in all the parts where it was placed, but in higher versions v.1.7 it preserves all the signatures and only the last one added with an image.
$obj->set_signature_appearance($page, [$x, $y, $x + $width, $y + $height], $image);
if (!$obj->sign_document($p12File, $password, $page, $image, $x, $y, [120, 40])) {
$arrResponse = array('status' => false, 'msg' => 'El certificado no es valido');
echo json_encode($arrResponse, JSON_UNESCAPED_UNICODE);
die();
} else {
$docsigned = $obj->to_pdf_file_s();
}
The text was updated successfully, but these errors were encountered: