2017 © Pedro Peláez
 

library libre-office-converter

Converts files from one format, such as '.docx' or '.xlsx' to another, such as '.pdf' or '.csv'

image

px-core/libre-office-converter

Converts files from one format, such as '.docx' or '.xlsx' to another, such as '.pdf' or '.csv'

  • Thursday, April 7, 2016
  • by SafSoufTouk
  • Repository
  • 1 Watchers
  • 1 Stars
  • 113 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 27 % Grown

The README.md

pxCore/LibreOfficeConverter

Symfony bundle to converts files from one format, such as '.docx' or '.xlsx' to another, such as '.pdf' or '.csv'.
Accepted formats: .docx .doc .xlsx .xls .ppt .pdf .csv .odt .odp .ods and much more, (*1)

Authors

Requirements

Installation

Download the bundle using composer

$ composer require px-core/libre-office-converter "dev-master"

Composer will install the bundle to your project's vendor/px-core/libre-office-converter directory., (*2)

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new pxCore\LibreOfficeConverterBundle\pxCoreLibreOfficeConverterBundle()
        // ...
    );
}

If libreoffice is not installed yet use this command

$ sudo apt-get install libreoffice

Configure the libreoffice parameter (path to your libreoffice lib)

parameters:
    # ...
    libreoffice: /usr/bin/libreoffice   # Default value

On Unix or Linux variants the LibreOffice executable will usually be found in /usr/lib/libreoffice/program/soffice
(link: /usr/bin/libreoffice), (*3)

Usage

Exemple1: Convert WORD to PDF:, (*4)

// Create a new instance of pxCore_libreOffice_converter_service 
$wordToPdfService = $this->get('pxCore_libreOffice_converter_service');

$webDir = __DIR__ . '/../../../../web';
// The word file path
$wordPath = $webDir . '/word/test.docx';
// The outDir in wich we will put the generated PDF
$outDir = $webDir . '/pdf';
$toFormat = 'pdf';
// Generate the PDF file
$wordToPdfService->convert($wordPath, $outDir, $toFormat);

Exemple2: Convert XLSX to CSV:, (*5)

// Create a new instance of pxCore_libreOffice_converter_service 
$pxCoreLibreOfficeConverter = $this->get('pxCore_libreOffice_converter_service');

$webDir = __DIR__ . '/../../../../web';
// The xlsx file path
$xlsxPath = $webDir . '/xlsx/test2.xlsx';
// The outDir in wich we will put the generated csv file
$outdir = $webDir . '/csv';
$toFormat = 'csv';
// Generate the csv file
$pxCoreLibreOfficeConverter->convert($xlsxPath, $outdir, $toFormat);

Enjoy!, (*6)

The Versions

07/04 2016

dev-master

9999999-dev

Converts files from one format, such as '.docx' or '.xlsx' to another, such as '.pdf' or '.csv'

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Safwen Toukabri

csv pdf convert word libreoffice