Word to PDF: Icon shadow error

Hello,

I attached a Word document where in a table icons are placed that use the shadow feature of MS Word.
The resultuing PDF shows shadows but without taking the transparency of that icon into account.

.Net 3.5, Words-Dll 17.4.0.0

Hi there,

Thanks for your inquiry. We have tested the scenario with your shared document using Aspose.Words for .NET 17.4.0 and we are unable to notice any issue. It seems your shared PDF document is generated using Aspose.Pdf for .NET 11.2. Please try Aspose.Words for .NET 17.4, it will resolve the issue. However, if the issue persists then please share some more details about the issue. We will further look into the issue and will guide you accordingly.

Document doc = new Document(@"IconSchatten.docx");
Aspose.Words.Saving.PdfSaveOptions
pdfSaveOptions = new Aspose.Words.Saving.PdfSaveOptions();
pdfSaveOptions.EmbedFullFonts = true;
// Save document to returning stream
doc.Save("IconSchatten_174.pdf", pdfSaveOptions);

Best Regards,

Thanks for the fast reply!
Your are right - although I recompiled the console application several times, it seems it somehow still used the old DLL. After recompiling again, it worked…