Team,
I have a .docx file that is created from a Telerik “DocxFormatProvider” included as an attachment here, it is not recognizing the watermark and show the image without watermark properties, I have tried converting the document from the online Aspose website
but got the same result the output is fine in MS Word but it’s not as expected after converting to pdf.
I am using Aspose.Word 21.1.0 and below is my code snippet
var data = new MemoryStream(File.ReadAllBytes(@"input.docx"));
var doc = new Aspose.Words.Document(data);
doc.Save("output.pdf");
Output in MS WORD
image.jpg (130.1 KB)
PDF OUTPUT
image.jpg (97.8 KB)
DOCX File
input.docx (133.6 KB)
please help