office-converter 0.1.0

Universal Office Converter - Convert between any document format supported by LibreOffice/OpenOffice.
Documentation
  • Coverage
  • 0%
    0 out of 9 items documented0 out of 0 items with examples
  • Size
  • Source code size: 15.76 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 440.69 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • xbmlz/office-converter
    3 1 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • xbmlz

Office Converter

Convert between any document format supported by LibreOffice/OpenOffice.

Requirements

Usage

To use office-converter, add this to your Cargo.toml:

[dependencies]

office-converter = "0.1.0"

Then, on your main.rs

use office_converter::OfficeConverter;

fn main() {

    let mut om = manager::OfficeManager::new();

    om.start();

    let con = converter::Converter::new();

    con.convert("E:/test.pptx", "E:/test.pdf");

    om.stop()
}