Add image (signature JPEG) to a Pdf

0
Hi everyone, I am filling out a Pdf using this module: https://marketplace.mendix.com/link/component/116692. Now once I am done with filling the form, I would like to add an JPEG signature image at a specific place. Could anyone tell me how can I achieve this? Thanks
asked
2 answers
0

This can become difficult if you only need to place this signature on one page of a multiple page document. If it is only one page or if the signature needs to be place on every page you can create a custom pdf with the image on the right location. Then use the Community commons OverlayPdfDocument to combine the page(s). Otherwise you would need custom Java code to cut the PDF up in pages and combine them back again. But that is no easy feat.

Regards,

Ronald

 

answered
0

If you need more advanced placement of the signature image, especially when dealing with multiple pages, you might need to use custom Java code.

Manipulating PDF pages programmatically can be complex, so this approach may require a good understanding of PDF internals and the iText library or similar PDF manipulation libraries in Java.

You can check this post

https://forum.mendix.com/link/space/app-development/questions/116593

answered