File is damaged when is converted to PDF by ASPOSE
PLT_0007 - 2 - Politica de Porta Vozes v.02 2022.odt.zip (71.3 KB)
File is damaged when is converted to PDF by ASPOSE
PLT_0007 - 2 - Politica de Porta Vozes v.02 2022.odt.zip (71.3 KB)
@everaldo
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.
Issue ID(s): WORDSNET-25006
You can obtain Paid Support services if you need support on a priority basis, along with the direct access to our Paid Support management team.
Hello,
Do you have an estimated date for delivering the issue fix ?
@everaldo.mafra @everaldo Unfortunately, the issue is not yet scheduled for development. So currently there are no estimates available.
As a temporary workaround you can save/open the problematic document as DOCX. In this case the document is rendered properly:
Document doc = new Document(@"C:\Temp\in.odt");
using (MemoryStream ms = new MemoryStream())
{
doc.Save(ms, SaveFormat.Docx);
ms.Position = 0;
doc = new Document(ms);
}
doc.Save(@"C:\Temp\out.pdf");