Hello to everyone,
I’ve a problem with a licensed Aspose.Pdf for .Net.
I used 17.5 and 17.7 version.
My scope is sign a pdf file with jsignpdf twice, i need to apply 2 signature on my pdf document.
I create a pdf file with Ms-Word by Save As Pdf and i sign it with jsignpdf twice; all is Ok, the two signature are valid.
I open previous pdf with aspose library as a document and simply save it with another name (no options).
Than, get the new pdf (aspose save) and i sign it with jsignpdf twice; first sign becames invalid.
I’ve notice that pdf after save by aspose has a different file size.
Save method has saveOptions arguments, are there some options to be used ?
This is my test code:
Dim l As Aspose.Pdf.License
Dim docItem As Aspose.Pdf.Document = Nothing
...
l = New Aspose.Pdf.License
l.SetLicense("Aspose.Pdf.lic")
...
docItem = New Aspose.Pdf.Document(myFileName)
...
docItem.Save(resultFileName)
Thanks