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

在线编辑/WebAPI

Spire.XLS for C++ 14.1.3 已发布。该版本新增了自定义异常类SpireException。此外,还增强了从Excel到PDF的转换功能。详情请阅读以下内容。 新功能: 新增了自定义异常类SpireException。 问题修复: 修复了当系统语言环境为西班牙语时,转换Excel到PDF后页眉高度变宽的问题。 获取Spire.XLS for C++ 14.1.3请点击: https://www.e-iceblue.cn/Downloads/Spire-XLS-CPP.html
Spire.Barcode for Java 5.1.3 已发布。本次更新新增支持在二维码中间添加图片的功能。此外,该版本还修复了垂直方向的条形码识别失败的问题。详情请阅读以下内容。 新功能: 应用授权的方法更改为com.spire.barcode.license.LicenseProvider.setLicenseKey(key)。 支持在二维码中间添加图片。 BarcodeSettings barCodeSetting = new BarcodeSettings(); BufferedImage image = ImageIO.read(new File("Image/1.png")); barCodeSetting.setQRCodeLogoImage(image); 问题修复: 修复了垂直方向的条形码识别失败的问题。 获取Spire.Barcode for Java 5.1.3请点击: https://www.e-iceblue.cn/Downloads/Spire-Barcode-JAVA.html
Spire.Presentation 9.1已发布。该版本升级了VS2019工程框架至4.6.2版本。此外,还进行了一系列其他调整,例如移除了MonoAndroid、Xamarin.iOS。详情请阅读以下内容。 功能调整: 升级VS2019工程框架升级至4.6.2版本。 移除了MonoAndroid、Xamarin.iOS。 移除了产品中的Spire.Pdf.dll 引用。 废弃了Spire.Pdf.Sercurity.PdfSecurity,并使用新接口Spire.Presentation.External.Pdf.PdfSecurity进行替换。 废弃了Spire.Pdf.PdfConformanceLevel,并使用新接口Spire.Presentation.External.pdf.PdfConformanceLevel进行替换。 presentation.SaveToPdfOption.PdfConformanceLevel = Spire.Presentation.External.Pdf.PdfConformanceLevel.Pdf_A1A; 获取Spire.Presentationt 9.1请点击: https://www.e-iceblue.cn/Downloads/Spire-Presentation-NET.html
Spire.PDF for Android via Java 10.1.1 已发布。本次更新新增支持转换 PDF 文档到 SVGZ 文档,以及比较 PDF 文档。详情请阅读以下内容。 新功能: 支持比较 PDF 文档。 PdfDocument pdf1 = new PdfDocument(inputFile_1); PdfDocument pdf2 = new PdfDocument(inputFile_2); PdfComparer compare = new PdfComparer(pdf1, pdf2); compare.getOptions().setPageRanges(0, pdf1.getPages().getCount() -…