Excel'i SVG'e dönüştür
Contents
[
Hide
]
Excel’i SVG’e dönüştür
SVG(**Ölçeklendirilebilir Vektör Grafiği)**iki boyutlu vektör grafikleri için XML standartlarına dayalı bir belirtimdir. World Wide Web Consortium (W3C) tarafından 1999’dan beri geliştirilmekte olan açık bir standarttır.
Aspose.Cells for Python via Java, Excel dosyalarının SVG resimlere dönüştürülmesini destekler. Bunun için API,SheetRender, ResimVeyaBaskıSeçenekleri, veÇalışma KitabıRendersınıflar.
Aşağıdaki kod parçacığı, bir Excel çalışma sayfasının SVG görüntüsüne dönüştürülmesini gösterir.
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") |