将 Excel 转换为 SVG
Contents
[
Hide
]
将 Excel 转换为 SVG
SVG(**可缩放矢量图形)**是基于 XML 标准的二维矢量图形规范。它是一个开放标准,自 1999 年以来一直由万维网联盟 (W3C) 开发。
Aspose.Cells for Python via Java 支持将Excel文件转换为SVG图片。为此,API 提供了图纸渲染, 图像或打印选项, 和工作簿渲染类。
以下代码片段演示了将 Excel 工作表转换为 SVG 图像。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source_directory = "Examples/SampleFiles/SourceDirectory/" | |
output_directory = "Examples/SampleFiles/OutputDirectory/" | |
workbook = Workbook(source_directory + "Book1.xlsx") | |
imgOptions = ImageOrPrintOptions() | |
imgOptions.setSaveFormat(SaveFormat.SVG) | |
sheetCount = workbook.getWorksheets().getCount() | |
for i in range(0, sheetCount): | |
sheet = workbook.getWorksheets().get(i) | |
sr = SheetRender(sheet, imgOptions) | |
for j in range(0, sr.getPageCount()): | |
sr.toImage(j, output_directory + sheet.getName() + "%s" % j + "_out.svg") |