Spire.Presentation 7.9.2 已发布。该版本新增支持转换 PPT 到 PDF 时设置不转换隐藏的幻灯片以及查找幻灯片中第一个出现的匹配文本并修改其样式。同时,本次更新还增强了 PPT 到图片的转换。此外,该版本还修复了许多已知问题。详情请阅读以下内容。 新功能: 支持查找幻灯片中第一个出现的匹配文本并修改其样式。 Presentation ppt = new Presentation(); ppt.LoadFromFile(inputFile); string text = "create"; TextRange textRange = ppt.Slides[0].FindFirstTextAsRange(text); textRange.Fill.FillType = FillFormatType.Solid; textRange.Fill.SolidColor.Color = Color.Red; textRange.FontHeight = 28; textRange.LatinFont =…