Aspose.Words cannot convert equations from DOC to PDF

Equations are missing in PDF.

Hi there,

Thanks for your inquiry. Could you please attach your input Word document here for testing? I will investigate the issue on my side and provide you more information.

I attached equations.docx with problematic diagram with equations. File was created with Microsoft Word 2010.

Hi there,

Thanks for sharing the detail.

I have tested the scenario and have managed to reproduce the same issue at my side. For the sake of correction, I have logged this problem in our issue tracking system as WORDSNET-10952. I have linked this forum thread to the same issue and you will be notified via this forum thread once this issue is resolved.

We apologize for your inconvenience.

The issues you have found earlier (filed as WORDSNET-10952) have been fixed in this .NET update and this Java update.


This message was posted using Notification2Forum from Downloads module by aspose.notifier.

Now I have another issue with equations in docx files. Aspose.Words cannot save correctly docx with equations in it. I just run the code below and the saved file equations_aspose.docx was corrupted and Microsoft Word can not open it.


Document doc = new Document(new FileInputStream(“d:/equations.docx”));
ByteArrayOutputStream out = new ByteArrayOutputStream();
doc.save(out, com.aspose.words.SaveFormat.DOCX);

ByteArrayInputStream bais = new ByteArrayInputStream(out.toByteArray());
Files.writeInputToOutput(bais, new FileOutputStream(“d:/equations_aspose.docx”));


This functionality is important to us, beacuse we have to open docx file, do mail merge and save docx. After that, we have to show mail merged docx to web page, so we convert it to PDF.

Thanks for your reply in advance.

Hi there,

Thanks for your inquiry. I
have tested the scenario and have managed to reproduce the same issue
at my side. For the sake of correction, I have logged this problem in
our issue tracking system as WORDSJAVA-1125. I have linked this forum
thread to the same issue and you will be notified via this forum thread
once this issue is resolved.

We apologize for your inconvenience.

The issues you have found earlier (filed as WORDSJAVA-1125) have been fixed in this .NET update and this Java update.


This message was posted using Notification2Forum from Downloads module by aspose.notifier.