Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 1.13 KB

README.md

File metadata and controls

46 lines (35 loc) · 1.13 KB

#TikaBundle

A bundle for Tika wrapper

Installation

To install FunstaffTikaBundle with Composer just run:

$ php composer.phar require funstaff/tika-bundle dev-master

Usage

config.yml

funstaff_tika:
    tika_path:  /path/to/tika.jar   # required
    java_path:  ~                   # default: null
    metadata_class: ~               # default: Funstaff\Tika\Metadata
    output_format: ~                # default: xml
    metadata_only: ~                # default: false
    output_encoding: ~              # default: UTF-8
    logging: ~                      # default: prod = false, dev = true

On controller:

$wrapper = $this->get('funstaff_tika.wrapper')
    ->addDocument(new Document('doc.pdf', $funstaffVendor.'/Tests/File/test.pdf'))
    ->execute();

/* Get Document */
$document = $wrapper->getDocument('doc.pdf');

/* Get Metadata */
$metadata = $document->getMetadata();

Credits

To all users that gave feedback and committed code https://github.com/Funstaff/TikaBundle.

© Bertrand Zuchuat - Funstaff