convert a word to pdf the layout is wrong

Hello 

I have a problem with a word to pdf conversion. The layout is not good.

I use last version.

there is my code

many thanks

                               System.Globalization.CultureInfo.CurrentCulture = System.Globalization.CultureInfo.GetCultureInfo("fr-FR");


                               //Open the file as Stream

                               using (FileStream fileStream = new FileStream(Path.GetFullPath(newRelativeFilePath), FileMode.Open))

                               {

                                   //Loads an existing Word document.

                                   using (WordDocument wordDocument = new WordDocument(fileStream, Syncfusion.DocIO.FormatType.Automatic))

                                   {

                                       //Creates an instance of DocIORenderer.

                                       using (DocIORenderer renderer = new DocIORenderer())

                                       {

                                           //Sets Chart rendering Options.

                                           renderer.Settings.ChartRenderingOptions.ImageFormat = Syncfusion.OfficeChart.ExportImageFormat.Jpeg;

                                           renderer.Settings.EmbedFonts = true;

                                           renderer.Settings.EmbedCompleteFonts = true;

                                           //Converts Word document into PDF document.

                                           using (PdfDocument pdfDocument = renderer.ConvertToPDF(wordDocument))

                                           {

                                               //Saves the PDF file to file system.

                                               using (FileStream outputStream = new FileStream(Path.GetFullPath(newRelativeFilePathPdf), FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite))

                                               {

                                                   if (data!.ContainsKey("annexes"))

                                                   {

                                                       AddAnnexes(JArray.Parse(data["annexes"].ToString()), pdfDocument);

                                                   }

                                                   pdfDocument.Save(outputStream);

                                               }

                                           }

                                       }

                                   }

                               }


Attachment: 14683_(2)_f71b821b.zip

8 Replies

SA Sivakumar Alagusundharam Syncfusion Team February 5, 2025 12:27 PM UTC

Hi Aitbouhou,

We have reproduced the reported problem “Layout is wrong while convert a word document to pdf” in our end. We will validate this issue and update you with more details on 7th February 2025.

Regards,
Sivakumar. A




SR Sindhu Ramesh Syncfusion Team February 7, 2025 02:13 PM UTC

Aitbouhou,
We have confirmed that the reported issue with "Wrapped paragraph is not positioned properly due to indentation while converting a Word 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 February 2025.

The status of this bug can be tracked through the below link:
Wrapped paragraph is not positioned properly due to indentation while converting a Word 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.



LH Laura Hilario February 13, 2025 09:43 AM UTC

I also had the same issue.



SA Sivakumar Alagusundharam Syncfusion Team February 17, 2025 02:41 PM UTC

Hi Laura,

To ensure that the above fix resolves your issue as well, it would be better to check your document. If it is the same case, we will consider addressing it in the feedback provided below. If it is a different case, we will share the details for that case as well. So, kindly share your document to ensure we understand your problem.

As we mentioned earlier, we have confirmed that the reported issue with "Wrapped paragraph is not positioned properly due to indentation while converting a Word 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 February 2025.

The status of this bug can be tracked through the below link:
Wrapped paragraph is not positioned properly due to indentation while converting a Word 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,
Sivakumar. A




LH Laura Hilario February 18, 2025 05:24 AM UTC

Ok, thank you.



SR Sindhu Ramesh Syncfusion Team February 18, 2025 05:13 PM UTC

Laura,
We will include the fix for this defect in our weekly NuGet release, which is estimated to be available on last week of February 2025.

The status of this bug can be tracked through the below link:
Wrapped paragraph is not positioned properly due to indentation while converting a Word to PDF in ASP.NET Core | Feedback Portal



LH Laura Hilario February 22, 2025 10:37 AM UTC

Thanks for the link, I will keep tracking.



SR Sindhu Ramesh Syncfusion Team February 25, 2025 12:37 PM UTC

Aitbouhou,
As promised earlier, we have included the fix for the reported issue with “Wrapped paragraph is not positioned properly due to indentation while converting a Word to PDF" in our latest weekly NuGet release (v28.2.7).

Root cause of the issue:
In the input Word document, a paragraph is wrapped with a floating table. This wrapped paragraph has a first-line indent. During the Word to PDF conversion using the DocIO library, the paragraph was fitted on the same line instead of moving to bottom of the floating table due to the first-line indent. This led to the reported issue.

Please use the below link to download our latest weekly NuGet:
Syncfusion.DocIORenderer.Net.Core

The status of this bug can be tracked through the below link:
Wrapped paragraph is not positioned properly due to indentation while converting a Word to PDF in ASP.NET Core | Feedback Portal

Note: We will include this fix in our 2025 Volume 1 Main release, which will be available at the end of March 2025.


Loader.
Up arrow icon