vote up 1 vote down star

I have some documentation written in OpenOffice, now I would like to include some of it as PDF files in the final build deliveries. Now I would like to do this with the automated build script.

Is there a way to create a PDF file from OpenOffice with a command line command?

flag

4 Answers

vote up 3 vote down check

Art of Solving has also a very good API to perform the conversion in java. Is a little slow but it is simple enough. This is how I use it.

        File inputFile = new File("C:\\oreyes\\hola.doc"); 
        File outputFile = new File("C:\\oreyes\\hola.pdf"); 
        OpenOfficeConnection connection = new SocketOpenOfficeConnection(8100);
        try { 
            connection.connect(); 
        } catch(Exception e) {}

        DocumentConverter converter = new OpenOfficeDocumentConverter(connection);
        converter.convert(inputFile, outputFile); 
        connection.disconnect();

You can create a jar with that and process it from the command line.

link|flag
vote up 0 vote down

I think it is not possible. I tried it some months ago.

It has an API though. Java API was a real nightmare.

You can however create a macro in something similar to VBA ( I really never put that much of attention what it was ) And then run it from the command line.

Here's the complete reference. See if it helps you.

http://www.oooforum.org/forum/viewtopic.phtml?t=3772

link|flag
vote up 0 vote down

Hang on, wasn't the question about converting OO files to PDF, not Word? That's what I'm looking for, anyway.

link|flag
The accepted answer is currently the only solution I have found, if you find a better one post it here. – Drejc Mar 22 at 21:34
vote up 0 vote down

there is a great tool called "unoconv", it was in my ubuntu repository. It converts odf, ods, ... to pdf and i think to other formats too.

i also could convert ppt's to pdf.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.