新闻中心 | 新版本发布、优惠信息、促销活动和产品资讯等
|
028-81705109
|
|
微信扫一扫
|

在线编辑/WebAPI

Spire.Presentation for Python 9.1.0已发布。本次更新新增了自定义异常类SpireException。此外,还修复了在将形状转换为图片时,程序抛出System.ArgumentNullException”异常的问题。详情请阅读以下内容。 新功能: 新增了自定义异常类SpireException。 问题修复: 修复了在将形状转换为图片时,程序抛出System.ArgumentNullException异常的问题。 获取 Spire.Presentation for Python 9.1.0请点击: https://www.e-iceblue.cn/Downloads/Spire-Presentation-Python.html
Spire.PDF for Python 10.1.1 已发布。本次更新新增自定义异常类 SpireException。详情请阅读以下内容。 新功能: 新增自定义异常类 SpireException。 获取 Spire.PDF for Python 请点击: https://www.e-iceblue.cn/Downloads/Spire-PDF-Python.html
Spire.Doc for Python 12.1.0已发布。本次更新新增了自定义异常类SpireException。此外,还修复了设置表格边框无效的问题。详情请阅读以下内容。 新功能: 新增自定义异常类SpireException。 问题修复: 修复了设置表格边框无效的问题。 获取Spire.Doc for Python 12.1.0请点击: https://www.e-iceblue.cn/Downloads/Spire-Doc-Python.html
Spire.PDF for Java 10.1.3 已发布。本次更新新增 PdfTextReplacer 接口来实现替换文本的功能以及 PdfImageHelper 接口来实现删除图片、提取图片、替换图片和压缩图片的功能。此外,本次更新还提高了绘制水印的效率。详情请阅读以下内容。 新功能: 提高绘制水印的效率。 新增PdfTextReplacer接口来实现替换文本的功能。 PdfDocument pdf = new PdfDocument(); pdf.loadFromFile("sample.pdf"); PdfPageBase page = pdf.getPages().get(0); PdfTextReplacer replacer = new PdfTextReplacer(page); PdfTextReplaceOptions options= new PdfTextReplaceOptions(); options.setReplaceType(EnumSet.of(ReplaceActionType.WholeWord)); replacer.replaceText("www.google.com", "1234567"); pdf.saveToFile(outputFile); 新增PdfImageHelper接口来实现删除图片、提取图片、替换图片和压缩图片的功能。…