تحويل Excel إلى SVG
Contents
[
Hide
]
تحويل Excel إلى SVG
SVG(**الرسومات المتجهات قابلة لل)**هي مواصفة تستند إلى معايير XML للرسومات المتجهة ثنائية الأبعاد. إنه معيار مفتوح قيد التطوير من قبل World Wide Web Consortium (W3C) منذ 1999.
Aspose.Cells for Python via Java يدعم تحويل ملفات Excel إلى صور SVG. لهذا ، يوفر API امتداد الملفعرض الورقة, خيارات ImageOrPrintOptions، وعرض المصنفالطبقات.
يوضح مقتطف التعليمات البرمجية التالي تحويل ورقة عمل 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") |