If you want a specific feature which is not avaliable now to be supported by our product, please post it here. We’ll seriously consider adding it as a new feature in our future upgrades.

Thu Oct 03, 2019 2:37 am

Do Spire components (word/excel/powerpoint) (for .NET) support import/export/manipulate of ODF (odt/ods/odp) file format?
If not, will you plan to add that support? What will be the schedule?

grchen168
 
Posts: 32
Joined: Sat Jan 24, 2015 4:48 pm

Thu Oct 03, 2019 9:16 am

Hi,

Thanks for your inquiry.
Our Spire.Doc supports the conversion between ODT and Word file. Please refer to following guide:
https://www.e-iceblue.com/Tutorials/Spi ... B.NET.html

Sincerely,
Betsy
E-iceblue support team
User avatar

Betsy.jiang
 
Posts: 3099
Joined: Tue Sep 06, 2016 8:30 am

Thu Oct 03, 2019 9:37 am

Thanks for the reply.

What about the ODS and ODP format?
Are those 2 format also supported?

grchen168
 
Posts: 32
Joined: Sat Jan 24, 2015 4:48 pm

Thu Oct 03, 2019 9:43 am

BTW, you mentioned that you support ODT and Word file "BI-directional conversion",
then, is it also supported for :
(1) ODS and Excel file "BI-directional conversion" ?
(2) ODP and Powerpoint file "BI-directional conversion" ?

grchen168
 
Posts: 32
Joined: Sat Jan 24, 2015 4:48 pm

Thu Oct 03, 2019 10:00 am

Hi,

Thanks for your response feedback.
Yes. Our Spire.XLS supports ODS file format. Our Spire.Presentation supports ODP file format.
Note, if you want to use Spire.Doc and Spire.Presentatation and Spire.XLS in one project, you need to download Spire.Office and reference the corresponding dlls(Spire.License.dll, Spire.Pdf.dll, Spire.Doc.dll, Spire.Common.dll, Spire.Xls.dll, Spire.Presentation.dll ) in your project.

Sample code:
Code: Select all
            Presentation ppt = new Presentation();
            //or load odp file
            ppt.LoadFromFile("sample.pptx");
            ppt.SaveToFile("result.odp", FileFormat.ODP);


            Workbook workbook = new Workbook();
            //or load ods file
            workbook.LoadFromFile("Sample.xlsx");
            workbook.SaveToFile("Result.ods",FileFormat.ODS);


Sincerely,
Betsy
E-iceblue support team
User avatar

Betsy.jiang
 
Posts: 3099
Joined: Tue Sep 06, 2016 8:30 am

Thu Oct 03, 2019 10:22 am

Thank you very much for the reply.
And I will give them tries.

PS: as always, you guys' support is remarkable.

grchen168
 
Posts: 32
Joined: Sat Jan 24, 2015 4:48 pm

Fri Oct 04, 2019 2:17 am

Hi,

Thanks for your response.
If there is any question, welcome to get it back to us.
Have a nice day :D

Sincerely,
Betsy
E-iceblue support team
User avatar

Betsy.jiang
 
Posts: 3099
Joined: Tue Sep 06, 2016 8:30 am

Return to New Feature Requests

cron