GetMathRenderer
OfficeMath.GetMathRenderer method
创建并返回一个可用于将此方程渲染为图像的对象。
public OfficeMathRenderer GetMathRenderer()
返回值
该方程的渲染器对象。
评论
这个方法只是调用OfficeMathRenderer
构造函数并传递 这个对象作为参数。
例子
演示如何将 Office Math 对象呈现为本地文件系统中的图像文件。
Document doc = new Document(MyDir + "Office math.docx");
OfficeMath math = (OfficeMath)doc.GetChild(NodeType.OfficeMath, 0, true);
// 创建一个“ImageSaveOptions”对象传递给节点渲染器的“Save”方法进行修改
// 它如何将 OfficeMath 节点呈现为图像。
ImageSaveOptions saveOptions = new ImageSaveOptions(SaveFormat.Png);
// 将“Scale”属性设置为 5,将对象渲染为其原始大小的五倍。
saveOptions.Scale = 5;
math.GetMathRenderer().Save(ArtifactsDir + "Shape.RenderOfficeMath.png", saveOptions);
也可以看看
- class OfficeMathRenderer
- class OfficeMath
- 命名空间 Aspose.Words.Math
- 部件 Aspose.Words