Hello I am using pdftk to generate a PDF based on a form that is submitted.
I have everything working fine until here. Which is adding an image of a signature. I am usi
In our case, we have to add dynamic signature in pdf. I have implemented it using pdftk and imagemagick libraries. (Require to install pdftk and imagemagick)
exec("convert signature-image -resize 26% -transparent white -page a4+25+102 -quality 75 outputs/stamp.pdf");
Descriptions:
2.Then execute following command:
exec("pdftk main.pdf multistamp stamp.pdf output outputs/final.pdf");