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

Spire.Cloud 纯前端文档控件

Spire.OCR for Java 2.1.1 现已发布。此版本引入了对 Linux-ARM 平台的支持,并支持文本按照图像的原始布局输出。此外,此更新还包括多个错误修复。更多详细信息如下。 新功能: 支持Linux-ARM平台。 支撑自动旋转图片。 ConfigureOptions configureOptions = new ConfigureOptions(); configureOptions.setAutoRotate(true); 支持按照图片排版输出文本。 VisualTextAligner visualTextAligner = new VisualTextAligner(scanner.getText()); String scannedText = visualTextAligner.toString(); 问题修复: 修复了针对"temp" 临时空文件夹的清理。 修复了路径中含有中文时报”Error occurred during ConfigureDependencies“错误的问题。 修复了的内容提取顺序不正确的问题。 获取 Spire.OCR…
Spire.Doc 13.7.14 现已发布。该版本新增了多项功能, 如支持加载epub文件,支持转换 Word 到 Pdf_UA1 格式。详情如下。 新功能: 支持加载epub文件进行处理。 Document doc = new Document(); doc.LoadFromFile("in.epub", Spire.Doc.FileFormat.EPub); doc.SaveToFile(@"out.docx", Spire.Doc.FileFormat.Docx); doc.SaveToFile(@"out.pdf", Spire.Doc.FileFormat.PDF); 支持Word 转Pdf_UA1格式 Document doc = new Document(); doc.LoadFromFile("in.docx"); ToPdfParameterList list = new ToPdfParameterList(); list.PdfConformanceLevel =…
Spire.PDF 11.7.14 现已正式发布。最新版本新增支持 XlsxLineLayoutOptions.TextRecognizer,通过 OCR 库增强 PDF 到 Excel 的转换效果。此外,该版本还修复了一系列已知问题,例如 XPS 转 PDF 内容不正确的问题。更多详情请查阅下方内容。 新功能: 新增支持 XlsxLineLayoutOptions.TextRecognizer,通过 OCR 库增强 PDF 到 Excel 的转换效果。 PdfDocument doc = new PdfDocument(); doc.LoadFromFile("in.pdf"); XlsxLineLayoutOptions options = new XlsxLineLayoutOptions(false, false, false,…
Spire.XLS for Python 15.7.1 现已发布。该版本新增了对多级排序和为透视表添加过滤器的支持,优化并模块化了命名空间结构,同时修复了文档操作、公式计算、单元格操作等方面的多个问题。详情如下: 优化: 开发测试授权支持解除绑定,仅对授权是 1.6 的版本生效。 from spire.xls import * from spire.xls import LicenseProvider as xlsLicense xlsLicense.SetLicenseKey("key",True) #testing code xlsLicense.UnbindDevelopmentOrTestingLicenses() 优化并模块化设计了命名空间结构。 新功能: 支持了多级排序。 workbook = Workbook() workbook.LoadFromFile(inputFile) for i in range(0, workbook.Worksheets.Count): worksheet…