Exception: "Unrecognized image type encountered during DOCX export." when saving document which is valid in MS Word

Hi,

A exception is thrown when trying to save an document which is valid in MS Word.
In order to reproduce this bug use the attached file and the following code:

using System.IO;
using Aspose.Words;

namespace AsposeIssue
{
internal class Program
{
private static void Main()
{
var doc = new Document(“c:\document.docx”);

using (var memoryStream = new MemoryStream())
{
doc.Save(memoryStream, SaveFormat.Docx);
}
}
}
}


Thank you,
Aurelian Iordache
IBM Romania

Hi Aurelian,

Thanks for your inquiry.

While using the latest version of Aspose.Words i.e. 14.4.0 and your code, I managed to exception this issue on my side. I have logged this issue in our bug tracking system. The ID of this issue is WORDSNET-10115. Your thread has also been linked to this issue and you will be notified as soon as it is resolved. Sorry for the inconvenience.

Best regards,

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


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

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


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