BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
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);
}
}
}
}
}
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
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.
I also had the same issue.
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
Ok, thank you.
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
Thanks for the link, I will keep tracking.
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.