Mandriva
Here example on how to use OpenOffice with Commandline. More tips about OpenOffice.

how to convert documents into PDF documents from the command line (same for HTML)

This tips comes from Steinar Bang and DannyB

You need a Macro to do the work. That part is written in OOo's dialect of Basic.

Get into ~OpenOffice.org.

Tools -> Macros -> Macro....

Now click the button Organizer.....

Click the Libraries tab.

Set Application/Document to "soffice".

Click the button New...

Give the library the name "~DannysLibrary".

Now click the Modules tab.

Unfold the tree of items under soffice. Find ~DannysLibrary and hilight it. Click the button New Module...

Name the module "Conversion".

The Basic IDE window should appear. Paste in the following code. Be sure to watch out for trailing spaces on lines copied from this web site. Especially on lines ending with an underscore, there cannot be any trailing spaces.

Sub test( cArg )
   Print "|"+cArg+"|"
End Sub

Sub ConvertWordToPDF( cFile )
   cURL = ConvertToURL( cFile )

   ' Open the document.
   ' Just blindly assume that the document is of a type that OOo will
   '  correctly recognize and open –– without specifying an import filter.
   oDoc = ~StarDesktop.loadComponentFromURL( cURL, "_blank", 0, Array(_
            ~MakePropertyValue( "Hidden", True ),_
            ) )


   cFile = Left( cFile, Len( cFile ) - 4 ) + ".pdf"
   cURL = ConvertToURL( cFile )

   ' Save the document using a filter.
   oDoc.storeToURL( cURL, Array(_
            ~MakePropertyValue( "~FilterName", "writer_pdf_Export" ),_
            )

   oDoc.close( True )
End Sub


Function ~MakePropertyValue( Optional cName As String, Optional uValue ) As com.sun.star.beans.~PropertyValue
   Dim oPropertyValue As New com.sun.star.beans.~PropertyValue
   If Not ~IsMissing( cName ) Then
      oPropertyValue.Name = cName
   ~EndIf
   If Not ~IsMissing( uValue ) Then
      oPropertyValue.Value = uValue
   ~EndIf
   ~MakePropertyValue() = oPropertyValue
End Function

This macro code is now part of OpenOffice.org and not specific to any document. That is, the macro is available at all times. Even if no documents are currently open.

You can use this command line:

#
ooffice -invisible "macro:///~DannysLibrary.Conversion.convertToPDFAndHTML(fullpathtomyfile.sxw)" >/dev\/null 2>&1
#

If the system need a fake X display you can use this code:

  1. Run ~OpenOffice to make PDF and HTML
  2. I need to "fake" an Xserver for ~OpenOffice in batch mode
export DISPLAY=:10 /usr/X11R6/bin/Xvfb $DISPLAY >/dev/null 2>&1 &

ooffice -invisible "macro:///~DannysLibrary.Conversion.convertToPDFAndHTML(fullpathtomyfile.sxw)" >/dev/null 2>&1

  1. shut down the "fake" X server
ps xww | grep "Xvfb $DISPLAY" | cut -c1-5 | xargs -i kill {} >/dev/null 2>&1

To output HTML as well, you can copy the code to generate PDF, change the extension from .pdf to .html, and the "FilterName" from "writer_pdf_Export" to "HTML (StarWriter)".

KB - how to convert documents into PDF documents from the command line (same for HTML)
Version 1.7 last modified by ptyxs on 28/11/2005 at 21:02

 


en zh_TW

RSS

Creator: lemarois on 2004/05/30 20:59
(c) Mandriva 2007
18888888