PHP Classes

Two signatures

Recommend this page to a friend!

      Sign on display  >  All threads  >  Two signatures  >  (Un) Subscribe thread alerts  
Subject:Two signatures
Summary:Add 2 signatures
Messages:2
Author:Anton
Date:2015-10-23 20:53:02
 

 


  1. Two signatures   Reply   Report abuse  
Picture of Anton Anton - 2015-10-23 20:53:02
Hi! Is it possible add two signatures into the same pdf template? What should I edit?
Thank you

  2. Re: Two signatures   Reply   Report abuse  
Picture of Gianluca Zanferrari Gianluca Zanferrari - 2015-10-26 13:49:21 - In reply to message 1 from Anton
Anton, yes and I already did it. You should make two signatures (images) and then use them in your template:

// random hash
$s->make_hash();
$hash = $s->hash;
$s->make_signature('signatures/');

$s1 = new signature;

$s1->make_hash();
$hash1 = $s1->hash;
$s1->make_signature('signatures/','img_');

2nd is created with an underscore _

Make in the template a placeholder for the second signature and place the second image in there.

Bye!
Gianluca