Hello;
Hi ,
I’ve attached two documents with a digital signature.
Aspose.Words.Document doc = new Aspose.Words.Document(FileName, new LoadOptions(password));
doc.Print();
To save as JPG:Aspose.Words.Document doc = new Aspose.Words.Document(FileName, new LoadOptions(password));Aspose.Words.Saving.ImageSaveOptions imageOptions = new Aspose.Words.Saving.ImageSaveOptions(SaveFormat.Jpeg);for (int x = 0; x < doc.PageCount; x++){
imageOptions.PageIndex = x;
imageOptions.PageCount = 1;
imageOptions.JpegQuality = 100;doc.Save(<span style="color:blue;">string</span>.Format(<span style="color:#a31515;">"{0}_Page{1}.jpg"</span>, FileName, x + 1), imageOptions);
}
Hi there,
The issues you have found earlier (filed as WORDSNET-1748) have been fixed in this .NET update and this Java update.
This message was posted using Notification2Forum from Downloads module by aspose.notifier.
The issues you have found earlier (filed as WORDSNET-4074) have been fixed in this .NET update and this Java update.
This message was posted using Notification2Forum from Downloads module by aspose.notifier.
(4)