zarulizham/laravel-ocrmypdf

This is my package OCRmyPDF

v1.0.1 2021-08-16 09:13 UTC

This package is auto-updated.

Last update: 2024-04-22 11:02:12 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Pre-requisite

OCRmyPDF: https://ocrmypdf.readthedocs.io/en/latest/

Installation

You can install the package via composer:

composer require zarulizham/laravel-ocrmypdf

You can publish the config file with:

php artisan vendor:publish --provider="ZarulIzham\OCRmyPDF\OCRmyPDFServiceProvider" --tag="laravel-ocrmypdf-config"

This is the contents of the published config file:

return [
    'path' => env('OCRMYPDF_PATH', '/usr/local/bin/ocrmypdf'),
];

Usage

OCRmyPDF::input(storage_path('panic.pdf'))
    ->output(storage_path('converted/panic.pdf'))
    ->redoOcr()
    ->addOption('--redo-ocr')
    ->addOption('--title Panic Document')
    ->addOption('--author Zarul Izham')
    ->begin();

Testing

Put PDF inside ./tests/storage and edit test script.

composer test

License

The MIT License (MIT). Please see License File for more information.