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.
OpenOffice.org API or LibreOffice API?
6.2k views Asked by Tenere At
2
There are 2 answers
0
moggi
On
There is nearly no difference between the two APIs ATM. At least before Libreoffice 4.0 ( which is only in planning with no specific date ) there might be some long necessary API clean-ups. All in all they should be even c++ binary compatible.
Right now you should be able to use the same extensions/code to access both Libreoffice and Openoffice. You should only be careful with all interfaces marked as LibO 3.4 or 3.5 from http://api.libreoffice.org/
Related Questions in OPENOFFICE.ORG
- Is there a way to automatically export OpenOffice/LibreOffice drawings to bitmaps, with options?
- How generate a sequence of dates in open office
- Convert a Multi-Page Text/word file to PNG using LibreOffice API in JAVA
- Error While Loading Document using OpenOffice SDK in JAVA
- How to convert text to table rows in the OpenOffice?
- How can I edit document like doc,PDF in my browser?
- Problem with Opening ODS File using Java Code on VMware Virtual Machine
- How to KEEP only first occurence data in Libre Office Calc (with two column filter)
- Table containing the count of multiple columns?
- Error trying to use LibreOffice COM library `com.sun.star.ServiceManager': Access denied
- Need a macro in opencalc
- Code or command-line for converting ODG (open document graphic) to PNG, JPEG, etc? (Windows and/or macOS)
- Connecting to LO from python IDE with PyUNO for debugging
- Angular frontend Spring backend file download not working or corrupt
- How to sign a microsoft office or openOffice certificate with a p12 or pfx certificate
Related Questions in LIBREOFFICE
- How to switch encoding of LibreOffice strings in Java UNO API?
- Is there a way to automatically export OpenOffice/LibreOffice drawings to bitmaps, with options?
- LibreOffice. Getting OutOfMemoryException while execute Conversion to PDF not instantly, but after long time of work
- Calculate the average of a filtered list/column with a condition (libre office calc)
- LibreOffice converts files from RTF to PDF to plain RTF text
- How to turn off LibreOffice API SDK Reference Browser?
- I compiled LibreOffice on Windows using Cygwin, but after running 'C:/cygwin64/opt/lo/bin/make', I encountered numerous errors
- How do I this shell (.zsh) script to put files into nested folders?
- win32gui SendMessage not working correctly in libreoffice
- Is there a way to program macros to finely tune animations in LibreOffice Impress?
- problem invoking msgbox after closing one document in python. object has no attribute 'getCurrentController'
- Add Image to Libre Office Writer with VB.Net
- How do I get content of a text cursor in Libreoffice Writer?
- How to convert excel to PDF using nodeJS? Getting issues using libreoffice-convert
- Libreoffice classes not available in java code
Related Questions in UNO
- How to switch encoding of LibreOffice strings in Java UNO API?
- How to create app bundle file in uno platform?
- Description of the input parameter (structure type) of the function in the XCU file
- Uno's Android app is immediately closed only when debugging
- how can you work with libreoffice via nc without java or python
- How to retrieve data from the text field in front of the cursor in a LibreOffice Writer macro?
- Can libreoffice be used as an application platform like Eclipse RCP?
- Platform specific XAML not working for wasm
- Uno - macOS app crashes on startup when debugging without any errors - WASM stuck on Splash screen
- Error While Loading Document using OpenOffice SDK in JAVA
- Segmentation fault opening Calc spreadsheet
- An error occurs while compiling an idl file to an rdb file
- UNO Windows and WASM do not render consistently
- UNO is not maintaining the binding to an ObservableCollection
- UNO Navigator.NavigateViewModelAsync<> not passing data as part of NavigationEventArgs
Related Questions in ODF
- Paragraph style on two columns in ODT file with odfpy
- How do I get the rich text from ODS cell using Simple ODF from ODF Toolkit?
- Centering text in odt files
- How set specific font in table cells using ODF Toolkit?
- How to install and set up the ODF-DOM API
- Set anchortype="paragraph" for image using odf.text
- How to read an *.xls file in Octave running on Linux Mint
- Problem with softPageBreaks when reading a odf file with lxml to create a LaTeX file
- Is it possible to build a LibreOffice document from code similar to the way a web page is built from HTML and CSS?
- I would like to edit an odt document using python. Just a simple swap of keywords. Is this possible?
- While parsing .ods file with pandas using read_excel() (and odf), how to drop comments in cells?
- Python Pandas is removing newlines when importing an ODS file and I want to keep them
- how to extract the titles of a document .odt in Libreoffice - Python
- How to use version odfdom-java 0.10.0?
- Which regex condition could I use in to capture a math formula with units in R?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I use OpenOffice API a lot in an application of me. I made some tests with LibreOffice too and there are some (as far as i see undocumented and unwanted!) differences allready! (OO 3.2 against LO 3.4 and 3.5) Not much but here and there teh LO-Api behaves different from the OO-Api even in the same functionality. This is not important if you only deal with one of them, but it is important when you have to be sure that your App runs with OO and LO.