1

I need to extract text from presentation files (.odp) that were created in Libre Office Impress.

I thought this would be super easy (I already implemented this function for .ppt and .pptx files). But I can't find any sample code out there that would let me open up .odp files. :(

Any suggestions on implementing this feature?

Arpi
  • 244
  • 3
  • 10

1 Answers1

3

Take a look at: OASIS Open Document Format for Office Applications (OpenDocument) TC

You will find out, that any (Open Document)-document is just a Zip-file which contains Xml-files.

Community
  • 1
  • 1
Paul Weiland
  • 727
  • 10
  • 24
  • You actually gave me a good idea. I ended up writing a class that unzipped the .ODP file, deserialized the content.xml file, and extracted all the text from it. Thanks! – Arpi Mar 31 '15 at 08:30