Tagged Questions
The odf tag has no wiki summary.
14
votes
5answers
1k views
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.
5
votes
2answers
1k views
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 ...
4
votes
2answers
1k views
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 porpouse. ...
3
votes
2answers
533 views
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 ...
3
votes
3answers
1k views
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 ...
2
votes
1answer
52 views
ODF Toolkit-Casting Problem
I am developing a webservice to create an odt document with odf toolkit. I did use below code to create a new document but i am getting an casting error. What o you think about it? How can i create ...
2
votes
1answer
117 views
the line that cause odfWeave-generated odt file to be considered as corrupted
I have tried odfWeave a bit, nice app. But at the very beginning, even I tried exactly as the example provided in the manual, I can't generate any file.
I have searched a bit inside the odt file and ...
2
votes
5answers
2k views
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 ?
2
votes
1answer
1k views
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 ...
2
votes
2answers
165 views
How to identify an ODF file?
I need to be able to identify that a given file is an ODF file based on the contents of the file, and not on the file's extension.
ODF files are really a collection of XML files in a zip container, ...
1
vote
1answer
53 views
OOXML\ODF libraries
I want to create a .NET application, which would allow me to perform semantic markup of OOXML (Custom XML Part and ContentControls) and ODF (RDF metadata) documents. I am looking for suitable ...
1
vote
1answer
90 views
Parsing ODF in Python with lxml
I'm trying to parse the content.xml inside a ODF-file. I've read the file into a string and i've got a tree object with lxml.etree: tree = etree.XML(string)
But now I need to find every subelement ...
1
vote
0answers
244 views
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 => ...
1
vote
2answers
203 views
Does anyone use AODL in a real application?
We are currently using the Excel interop API in .NET to generate simple spreadsheet documents from a template. So we load the template first, insert some rows, fill in some data (dates, text, and ...
1
vote
4answers
1k views
Possible to output to .doc format using Qt?
I am writing a program using Qt. I want it to output to .doc to preserve formatting but all that is supported by Qt is plain text, ODF and HTML formats. ODF and HTML will preserve the formatting but ...
1
vote
6answers
2k views
How to convert OpenOffice ODF files to HTML
I have some ODF files with math formulas and I need to render them...or else the boss will fire me (lol).
Please, is there any way to do this ? or they can only be rendered in OpenOffice ?
1
vote
2answers
878 views
exporting mysql data to ODF with php
I would like to know if someone triend exporting data from MySQL to an ODF format ?
Any information / documentation would be very much appreciated.
I am going to try to export a MySQL result set to ...
0
votes
1answer
58 views
OpenOffice.org API or LibreOffice API?
Which API should I use? Which one is more promising? My main goal is to generate ODF documents. It's important for me to support ODF 1.2. And I want to use C++ and CLI bingings.
0
votes
1answer
80 views
C++ library to read a document, created within “Open Office Calc”
I have the file created within "Open Office Calc" which I need to load into my C++ program to generate some game-specific code for which this design file was written. All I need is spreadsheets names, ...
0
votes
0answers
28 views
odfpy date format
How I can format table-cell with date-style ?
I have tried:
calc = OpenDocumentSpreadsheet()
dcs = DateStyle(name="dcs",language="fr",country="fr",formatsource="AAAA-MM-JJ")
...
0
votes
1answer
104 views
Convert ODT to single XML file
I know that standards define two versions of ODT file:
- one is a archive os different files, i.e. meta.xml, content.xml etc,
- sencond is one big XML file with all the data.
(I know above from ...
0
votes
0answers
26 views
Simple Java API for ODF-append stylish text
I don't find anywhere how can i append formatted text to the paragraph just like
This is an example
(and its colorized version)
And i need to colorize the hyperlink. How can i do that?
It is ...
0
votes
2answers
65 views
Is there any java library to convert / parse ODF to html output?
I need to convert ODF document to html. Is there any java library for this?
0
votes
0answers
39 views
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 follows:
accelerator/current.xml
floater
images/Bitmaps
menubar
...
0
votes
1answer
124 views
Loading presentation document using SimpleODF and ODFDOM
I am trying to load an ODP document using SimpleODF and ODFDOM in Java. Below is my code snippet:
URL u = new URL(<URL of my file as it resides on server>);
URLConnection uc = ...
0
votes
3answers
697 views
PHP Html to DOC , XLS and ODF convertor
Hi everybody
I'm using CKeditor to edit and generate some reports for my php project. But I need to export the edited texts from CkEditor to Open office and Microsoft word format. So what I need is a ...
0
votes
1answer
164 views
Is there any handy converter between html odf ooxml and rtf?
Question1
Is there any lib which can convert between OOXML and HTML,
I mean OOXML2HTML and HTML2OOXML both.
Question2
And is there any lib which can convert between ODF and HTML(ODF2HTML HTML2ODF)
...
0
votes
1answer
46 views
Is there any method to make ckedit read odf file directly?
I want to build an webOffice platform, which can read odf and save odf.
I found ckeditor is really good, however it save files in html, is there any way to let ckeditor read odf and edit odf file ...
0
votes
1answer
49 views
Is there any opensource lib support decoding of OOXML or ODF files?
Is There any opensource lib which can decode OOXML/ODF file and display it on web Page?
Such as Google Docs?
Many thanks!
0
votes
4answers
167 views
Does ExtJS support decoding of OOXML or ODF files?
I want to develop a web office project just like Google Docs and ExtJS seems good. Can ExtJS read OOXML or ODF natively? Or is there any open source project which can help ExtJS decode OOXML or ODF ...
0
votes
2answers
118 views
How to convert plain text to ODF?
I am searching for C/C++ library for txt -> odf conversion. I've already checked http://odftoolkit.org but it has only Java version. Main criterion is a ease of use.
0
votes
1answer
446 views
How to set cell style using OpenOffice::OODoc?
How to apply a style to cell using OpenOffice::OODoc module in Perl?
I tried:
my $container = odfContainer("report1.ods", create => 'spreadsheet');
my $doc = odfDocument (
...
0
votes
2answers
164 views
How to generate ODF charts with Perl
How to create Open Document Format spreadsheet with charts using Perl?
0
votes
2answers
544 views
MS Word/ ODF Automation in Qt
How can I perform automation of MS Word documents (.doc) or ODF documents (.odt) in Qt 4.5? I know using the QAxWidget, QAxObject.
I have data (QString) and few images as well. I have to add them ...
0
votes
2answers
262 views
ODF document load
Is there any quick way to read/write an ODF file from PHP?
---- edit -----
I needed this for an ODS(spreadsheet) file
http://www.opendocumentphp.org/ seems to be unmaintained so i didn't even ...
0
votes
1answer
78 views
Supporting a subset of ODF in a .net application
I'm building a simple CMS for an ASP.net-based website and would like to store the site content in files that use a subset of the ODF file format. Ideally, the site should be able to save the content ...
0
votes
2answers
1k views
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 ...