LaravelPackages.net
Acme Inc.
Toggle sidebar
zarulizham/laravel-ocrmypdf

This is my package OCRmyPDF

909
1
v1.0.3
About zarulizham/laravel-ocrmypdf

zarulizham/laravel-ocrmypdf is a Laravel package for this is my package ocrmypdf. It currently has 1 GitHub stars and 909 downloads on Packagist (latest version v1.0.3). Install it with composer require zarulizham/laravel-ocrmypdf. Discover more Laravel packages by zarulizham or browse all Laravel packages to compare alternatives.

Last updated

Laravel OCRmyPDF

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.

Comments