Hi.
I’m currently using Aspose.Words.15.5.0.
I’m trying to convert a worddocument to pdf. The worddocument contains touchscreen signature; not shore how this works (“signature” has nothing to do with digital signature). I can see the signature in Word when I open the document. But when I use this code, the signature is not part of pdf-file:
var document = new Document(“C:\Tmp\Signed.docx”);
document.Save(“C:\Tmp\CopiedSigned.pdf”, SaveFormat.Pdf);
When I try to save a file as Tiff or Png it is also missing in the picture. When I save as Doc, Docx, Docm, the signature is in the saved file.
I have also tried to use PdfSaveOptions, but found nothing interesting there.
Any suggestions?