When converting Word to PDF images are nt properly displayed

Hello 

I have an issue when converting a Word file to PDF and images are placed at the bottom of a page they are not correctly displayed.


Using the latest version(28.2.11)


using following code to convert to pdf 

public static byte[] ToPdf(this WordDocument wordDocument)
{
var render = new DocIORenderer();
var pdfDocument = render.ConvertToPDF(wordDocument);
var ms = new MemoryStream();
pdfDocument.Save(ms);

return ms.ToArray();
}

Attachment: data_9b7b1907.zip

3 Replies

SA Sivakumar Alagusundharam Syncfusion Team March 14, 2025 04:12 AM UTC

Hi Seppe,

We have reproduced the reported problem “When converting Word to PDF images are not properly displayed” in our end. We will validate this issue and update you with more details within two days.

Regards,
Sivakumar. A




SR Sindhu Ramesh Syncfusion Team March 17, 2025 03:49 PM UTC

Seppe,
We have confirmed that the reported issue with “Images are not positioned properly due to NUMPAGES field while converting a Word document to PDF” is a defect and we have logged a defect report. We will include the fix for this defect in our weekly NuGet release, which is estimated to be available on second week of April 2025.

The status of this bug can be tracked through the below link:
Images are not positioned properly due to NUMPAGES field while converting a Word document to PDF in ASP.NET Core | Feedback Portal

Disclaimer: Inclusion of this solution in the weekly release may change due to other factors including but not limited to QA checks and works reprioritization.

Regards,
Sindhu Ramesh.



SV Seppe Vandaele March 17, 2025 04:07 PM UTC

Okay thank you!


Loader.
Up arrow icon