Wrong font size

Hi
We are using the Aspose.Words for some time and we now discovered a major issue when converting docx to html.
For some unknown reason, when converting the attached document the begging of the row is in the correct font and the end of the row is in different font. While in MSWord the entire row is in the same font.
Test code:

File.WriteAllText(@"E:\WordTest\7_1.htm", new Aspose.Words.Document(@"E:\WordTest\7_1.docx").ToString(
new Aspose.Words.Saving.HtmlSaveOptions
{
    ExportImagesAsBase64 = true,
    ExportHeadersFootersMode = Aspose.Words.Saving.ExportHeadersFootersMode.None,
    Encoding = Encoding.UTF8
}));

Attached the input file.
Can you solve this ASAP so we can re-convert all of our documents?
Thanks

BTW,
We don’t use the save document method (it is just for simplification) this is a better example of our code:

string html = string.Empty;
using (var inputStream = File.OpenRead(@"E:\WordTest\7_1.docx"))
{
    var doc = new Aspose.Words.Document(inputStream);
    foreach (Aspose.Words.Section section in doc.Sections)
    {
        section.PageSetup.Bidi = true;
    }
    var htmlSaveOptions = new Aspose.Words.Saving.HtmlSaveOptions
    {
        ExportImagesAsBase64 = true,
        ExportHeadersFootersMode = Aspose.Words.Saving.ExportHeadersFootersMode.None,
        Encoding = Encoding.UTF8,
    };
    foreach (Aspose.Words.Node node in doc.ChildNodes)
    {
        html += node.ToString(htmlSaveOptions);
    }
    File.WriteAllText(@"E:\WordTest\7_1.htm", html, Encoding.UTF8);
}

Thanks

Hi Omri,

Thanks for your inquiry. We have tested the scenario and have managed to reproduce the same issue at our side. For the sake of correction, we have logged this problem in our issue tracking system as WORDSNET-13595. You will be notified via this forum thread once this issue is resolved.

We apologize for your inconvenience.

Any news about this bug?

Hi Omri,

Thanks for your inquiry. Your issue has been planned for development. Hopefully, the fix of this issue will be available in July 2016 release. Please note that this estimate is not final at the moment. We will be sure to inform you via this forum thread as soon as this issue is resolved.

We appreciate your patience.

Thanks for the update :slight_smile:

Hi Omri,

Thanks for your inquiry. We have asked for the ETA of this issue from our product team. As soon as any information is shared by them, we will be more than happy to share that with you.

Thanks for your patience.

Do you have an ETA for this ETA? :slight_smile:

Hi Omri,

Thanks for your inquiry. Hopefully, the fix of this issue will be included in next version of Aspose.Words v16.7.0. We will inform you via this forum thread once Aspose.Words v16.7.0 is published.

We appreciate your patience.

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

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

Hi,
Thanks! I can confirm it works