Looking to hire Laravel developers? Try LaraJobs

laravel-ocrmypdf maintained by zarulizham

Description
This is my package OCRmyPDF
Author
Last update
2025/05/09 14:32 (dev-main)
License
Downloads
848

Comments
comments powered by Disqus

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.