Questions tagged [odf]

The Open Document Format for Office Applications, also known as OpenDocument.

The Open Document Format for Office Applications (ODF), also known as OpenDocument (OD), is an XML-based file format for spreadsheets, charts, presentations and word processing documents. It was developed with the aim of providing a universal document format that could be used with any office software suite.

111 questions
23
votes
6 answers

ODFPy documentation

I need to manipulate the ODF file format (open document format, the open office's internal format), and I need to do it in Python. It seem's ODFPy is a wonderful library for this purpose. Unfortunately the official documentation is very poor, almost…
Luca
15
votes
5 answers

C++ Library to render ODF documents?

I am unable to find any open source libraries to render ODF documents using C++. I found ODKit suporting Java and AODL for .NET C#. Does any one have any idea or provide me any pointers.
cpp11dev
  • 417
  • 6
  • 13
11
votes
3 answers

How can I access spreadsheets in the open document format (.ods) with Java?

I want to read, write and create Spreadsheets in the Open Document Format with Java. And I want the resulting Java-program running on a computer without OpenOffice.org or other ODS-capable programs installed. Exists a library to access this format?
Mnementh
  • 50,487
  • 48
  • 148
  • 202
10
votes
3 answers

Generating word documents (.doc/.odt) through C++/Qt

I am using Qt 4.5.3 and Windows XP. I need my application to generate documents that contains the information that is being used and generated. The information that is being used will be just strings (QString to be more specific) and the information…
liaK
  • 11,422
  • 11
  • 48
  • 73
10
votes
2 answers

Library to edit odt documents in php

I try to edit ODT-documents programmaticly in PHP. In fact I just want to do some text replacement and adding new rows in a table. I know that a normal ODF document is an archive containing XML-files. But before I reinvent the wheel: is there any…
neo
  • 1,260
  • 11
  • 22
6
votes
0 answers

What is the purpose of the Configurations2 directory inside of an ODF-Document?

The directory is not mentioned in the OASIS-Specification of ODF. Does anyone know the purpose of this directory? Its structure is as…
AlexTheBird
  • 677
  • 4
  • 16
6
votes
1 answer

How to add a text caption to an image with OpenOffice::OODoc?

I have the following code that creates an odf-document with a heading and a picture: #!/usr/bin/perl use strict; use warnings; use OpenOffice::OODoc; my $doc = odfDocument( file => 'test.odt', create => 'text' ); my $head =…
AlexTheBird
  • 677
  • 4
  • 16
6
votes
5 answers

How to convert ODT to DOC/RTF without openoffice.org

Is there any way to convert odt documents to doc or rtf on linux without openoffice or any library that relies on having openoffice installed ?
ionelmc
  • 720
  • 2
  • 10
  • 29
6
votes
1 answer

How to grab text from .odt file

I need to grab all text from odf files (open document format) in C#. I found AODL library, and installed it. I visited AODL's page https://wiki.openoffice.org to find examples on how to do the task I need, but they were all unsuccessful. For a…
Porkopek
  • 895
  • 9
  • 20
6
votes
0 answers

How to convert ODT files to PDF in Heroku?

Him I'm using odf-reports gem (https://github.com/sandrods/odf-report) to populate an odt template I have. But then I want to convert it to PDF. They advise to use libreoffice to do the conversion, and that works locally, but I want to use it in…
lbramos
  • 327
  • 1
  • 6
  • 19
6
votes
1 answer

Add content to frames of an OpenOffice odp presentation in ODFToolkit

I want to use a Open Office / Libre Office Presentation as a template and insert text and images into slides. I am trying to use odftoolkit. If I have a slide with the boxes, they are represented as in the XML How do I access those to…
Amala
  • 1,718
  • 1
  • 17
  • 29
6
votes
2 answers

Generate ODT/DOC(X) and convert to PDF, without OO.o/MS

I have a WSGI application that generates invoices and stores them as PDF. So far I have solved similar problems with FPDF (or equivalents), generating the PDF from scratch like a GUI. Sadly this means the entire formatting logic (positioning…
Alan Plum
  • 10,814
  • 4
  • 40
  • 57
4
votes
1 answer

Copy a whole ODT (Openoffice Writer) document section to other document with Openoffice Java API (UNO API)

I need to use the OpenOffice Java API to copy a document section and paste it over another document section. So far I have managed to copy the text of the section of the source document and paste it over the section at the target document (see the…
Angel Palazon
  • 369
  • 1
  • 5
  • 16
4
votes
1 answer

TCPDF ERROR: Unable to find object (8, 0) at expected location

I am getting an error while deleting a page from an scanned pdf using TCPDF & FPDI. Other pdf are working fine. ERROR: Unable to find object (8, 0) at expected location
shabeer
  • 1,064
  • 9
  • 17
3
votes
1 answer

Is there any library for generating ods/xlsx documents?

I need to edit xlsx/ods files. I thought, it should have been a library for this, as far as task seems relatively common. I checked current answers on on SO, but I was unable to found appropriate solution. My requirements are: Support for docx or…
Lol4t0
  • 12,444
  • 4
  • 29
  • 65
1
2 3 4 5 6 7 8