Excel çalışma kitabını Ods, Sxc ve Fods (OpenOffice / LibreOffice calc) dönüştür
OpenDocument Hakkında
OpenDocument format (ODF), orijinal olarak Sun tarafından Open Office paketi için geliştirilen elektronik ofis belgeleri için ücretsiz ve açık bir dosya formatıdır. OpenDocument Spreadsheet (ODS), Excel belgelerinin dosya biçimidir. OpenDocument şu anda bir OASIS ve ISO standardıdır.
Ods (OpenOffice / LibreOffice calc)‘i Excel’e dönüştür
Aspose.Cells Python via .NET, OpenOffice / LibreOffice Calc tarafından desteklenen Ods, Sxc ve Fods dosyalarını yükleme ve Ods,Sxc ve Fods dosyalarını Excel dosyalarına dönüştürme işlemini destekler.
from aspose.cells import Workbook | |
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET | |
# Load your source ods file | |
workbook = Workbook("book1.ods") | |
# Save as xlsx file | |
workbook.save("ods_out.xlsx") | |
# Load your source sxc file | |
workbook = Workbook("book1.sxc") | |
# Save as xls file | |
workbook.save("sxc_out.xls") | |
# Load your source fods file | |
workbook = Workbook("book1.fods") | |
# Save as xlsb file | |
workbook.save("fods_out.xlsb") |
Excel’i Ods (OpenOffice / LibreOffice Calc)‘e dönüştür
Aspose.Cells Python via .NET, Excel dosyalarını Ods, Sxc ve Fods dosyalarına dönüştürmek için destek sağlar. Aşağıdaki kod örneği, şablonu Ods, Sxc ve Fods dosyalarına dönüştürme işlemini göstermektedir.
from aspose.cells import Workbook | |
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET | |
# Load your source workbook | |
workbook = Workbook("book1.xlsx") | |
# Save as ods file | |
workbook.save("Out.ods") | |
# Save as sxc file | |
workbook.save("Out.sxc") | |
# Save as fods file | |
workbook.save("Out.fods") |