Convert Shape node (and potentially an OfficeMath node) to SVG

Hello,

I’m not the one who initiated this discussion but we are also definitely interested in being able to export a Shape node (and potentially an OfficeMath node) to SVG.

Best regards

Hi Jean,


Thanks for your inquiry. We have logged your requirement in our issue tracking system as WORDSNET-12330. Our product team will further look into the details of this requirement and we will keep you updated on the status of this issue. We apologize for any inconvenience.

Best regards,

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


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

Starting from 16.3.0 version it is possible to render OfficeMath formulas to image separately from whole document:

Document doc = new Document(getMyDir() + "input.docx");
OfficeMath math = (OfficeMath)doc.getChild(NodeType.OFFICE_MATH, 0, true);
math.getMathRenderer().save(getMyDir() + "formula.png", new ImageSaveOptions(SaveFormat.PNG));

Also, now it is possible to pass SaveFormat.Svg into ImageSaveOptions, so OfficeMath and Shape nodes now can be save to SVG.

Best regards,