Hi Team.
I migrate my java project with Aspose.Words from 22.4 version to 23.3 version.
I have found that renderring office math to MathML takes nore time.
Fo example, document https://cloud.mail.ru/public/4jba/mzzpvjy8q
contains 118 formulas. I use the following code to convert formulas to MathML
HtmlSaveOptions options = new HtmlSaveOptions();
options.setOfficeMathOutputMode(HtmlOfficeMathOutputMode.MATH_ML);
String mathML = asposeOfficeMath.toString(options);
This code works
- on version 22.4 50ms in avarage
- on version 23.3 1162 in avarage
Renedering all formulas takes 5sec on version 22.4 and 137 sec on version 23.3.
Is there in issue in my code or something wrong with the new version?
Thank you in advance,
Svetlana