Spire.Presentation 11.9.1 现已正式发布。该版本新增了 Paragraphs.AppendOfficeMathML() 方法,用于添加 Office 公式,并修复了 PPT 转 PDF 时文字模糊不清的问题。详情如下。 新功能: 新增 Paragraphs.AppendOfficeMathML() 方法,用于添加 Office 公式。 Presentation ppt = new Presentation(); IAutoShape autoShape = ppt.Slides[0].Shapes.AppendShape(ShapeType.Rectangle, new RectangleF(100, 100, 300, 200)); string txtContent = File.ReadAllText(inputFile); autoShape.TextFrame.Paragraphs.AppendOfficeMathML(txtContent);…