I have trouble finding a library capable for digital signing PDF.
I was able to create .Net app for signing but now I need dll that will work without .Net framework.
Does anyone knows good lightweight library for that? Commercial/NonCommercial
I have trouble finding a library capable for digital signing PDF.
I was able to create .Net app for signing but now I need dll that will work without .Net framework.
Does anyone knows good lightweight library for that? Commercial/NonCommercial
I am not sure if it classifies as "lightweight", but you could try with Amyuni PDF Creator ActiveX (commercial). You can use it from C++, Delphi, VB etc. The current version (4.5) takes about 4.7Mb.
Take a look at the documentation for the method DigitalSignature for more details.
Sample code in VB from the documentation:
Private Sub cmdSingDocument_Click ()
With PDFCreactiveX1
.Open( "document.pdf", "" )
.DigitalSignature("Amyuni Dev Signature", "Testing",
"signatureImage.jpg", "Montreal", 1, 100, 100, 400, 200, 1 + 2 + 4 + 8)
.Save("signed.pdf", "" )
End With
End Sub
Usual disclaimer applies.