I have a sample PDF. I want to manipulate it with data (add fullname + date) and add a signature field. When the user opens the PDF on his browser and signs it, I want to save the pdf to my database and get notified on my backend side (when success).
I am familiar with php; thus I came across with 'fpdf' and 'tcpdf'. However, I couldn't figure out if what I want achieve is possible with those, but I don't think so. I can open pdf and add line from fpdf but I can't achieve anything with signatures.
What is the best/easiest way to achieve what I want to achieve? From php am I capable of such thing?
Should I try to generate the pdf from html? Is it possible to achieve what they are doing with C# in php? Or should I use completely different language for such thing?