Saving in PDF - modified image in footer

Hi,
after saving document in PDF image in footer is changed. You can see it on attached screenshot.
The orange stripe on some pages is thiner and on other thicker than original.
I’m attaching document for testing.

Thanks in advance for help.

Hi Jakub,

Thank you for details. While using latest Aspose.Words 11.0.0. I managed to reproduce this problem on my side. I have logged your issue into our bug tracking system. Your request has also been linked to the appropriate issue. Once we sort it out, we will let you know. Sorry for inconvenience.

Hi Jakub,

Thank you for inquiry. Please follow up the code as workaround:

Document mydoc = new Document("c:\\temp\\owf.doc");
ByteArrayOutputStream docStream = new ByteArrayOutputStream();
mydoc.save(docStream, SaveFormat.WORD_ML);
Document dd = new Document(new ByteArrayInputStream(docStream.toByteArray()));
dd.save("c:\\temp\\owfOut.pdf", SaveFormat.PDF);

In case of any ambiguity, please let me know .

The issues you have found earlier (filed as WORDSNET-5842) have been fixed in this .NET update and this Java update.

This message was posted using Notification2Forum from Downloads module by aspose.notifier.