تحويل دفاتر العمل Excel إلى Ods، Sxc و Fods (OpenOffice / LibreOffice calc).
حول OpenDocument
تنسيق OpenDocument (ODF) هو تنسيق ملف مجاني ومفتوح للوثائق المكتبية الإلكترونية الذي طوّره الأصل لـ OpenOffice suite. تنسيق الجدول الخلية OpenDocument (ODS) هو تنسيق الملفات لوثائق Excel. حاليًا يُعتبر OpenDocument معيارًا لـ OASIS و ISO.
تحويل Ods (OpenOffice / LibreOffice calc) إلى Excel
Aspose.Cells for Python via .NET يدعم تحميل Ods، Sxc و Fods التي يدعمها OpenOffice / LibreOffice Calc، وتحويل Ods، Sxc و Fods إلى ملفات إكسل.
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 إلى Ods (OpenOffice / LibreOffice Calc)
Aspose.Cells for Python via .NET يدعم تحويل ملفات إكسل إلى ملفات Ods، Sxc و Fods. يظهر المثال البرمجي أدناه كيفية تحويل النموذج إلى ملفات Ods، Sxc و Fods.
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") |