How to insert your signature in a PDF file by using PDFtk
Your signature in all the sheets
convert the signature image to PDF file
convert firma.png firma.pdf
put firma.pdf in a A4 paper and try to correctly locate and size the signature
pdfjam --paper 'a4paper' --scale 0.3 --offset '-5cm -7.5cm' --outfile stamp.pdf firma.pdf
join the original file and the signature file
pdftk original.pdf stamp stamp.pdf output final.pdf
Your signature in only one sheet
convert the signature image to PDF file
convert firma.png firma.pdf
put firma.pdf in a A4 paper and try to correctly locate and size the signature
pdfjam --paper 'a4paper' --scale 0.3 --offset '-5cm -7.5cm' --outfile stamp.pdf firma.pdf
add blank sheets to stamp.pdf (you can use OpenOffice Write to create one PDF file with one blank file)
pdftk A=stamp.pdf B=blank.pdf cat A1 B1 output multistamp.pdf
join the original file and the signature file
pdftk original.pdf multistamp multistamp.pdf output final.pdf
To put the signature behind the content rather than on top, you can use pdftk background/multibackground.