InputTest.pdf (448.4 KB)
OutputTest.pdf (143.6 KB)
Hi,
We are loading the InputTest PDF using the Aspose.Word and Aspose.Words.Pdf2Word
using the below code, but the PDF loaded is completely misformated. PFA the Output test.
We want to load the PDF, move to a book mark, add a date time stamp there and then save the output in pdf. Is that possible using Aspose Words?
var doc = new Document("InputTest.pdf");
var builder = new DocumentBuilder(doc); // Insert text at the beginning of the document. builder.MoveToDocumentStart();
builder.Write("Test");
doc.UpdatePageLayout();
doc.Save("OutputTest.pdf");
thank you for your help and support.