get_math_renderer method
get_math_renderer()
Creates and returns an object that can be used to render this equation into an image.
def get_math_renderer(self):
...
Remarks
This method just invokes the OfficeMathRenderer constructor and passes this object as a parameter.
Returns
The renderer object for this equation.
Examples
Shows how to render an Office Math object into an image file in the local file system.
doc = aw.Document(MY_DIR + 'Office math.docx')
math = doc.get_child(aw.NodeType.OFFICE_MATH, 0, True).as_office_math()
# Create an "ImageSaveOptions" object to pass to the node renderer's "save" method to modify
# how it renders the OfficeMath node into an image.
save_options = aw.saving.ImageSaveOptions(aw.SaveFormat.PNG)
# Set the "scale" property to 5 to render the object to five times its original size.
save_options.scale = 5
math.get_math_renderer().save(ARTIFACTS_DIR + 'Shape.render_office_math.png', save_options)
See Also
- module aspose.words.math
- class OfficeMath