Description
PDF optimization tool for PHP and Laravel applications
Leveraging the pdf-optimizer package within your Laravel applications allows for seamless optimization and compression of PDF files. With the Laravel-specific features provided by PdfOptimizer, including support for disks, queues, and comprehensive settings, you can efficiently tailor the optimization process to your application's needs.
use Mostafaznv\PdfOptimizer\Laravel\Facade\PdfOptimizer;use Mostafaznv\PdfOptimizer\Enums\ColorConversionStrategy;use Mostafaznv\PdfOptimizer\Enums\PdfSettings; $result = PdfOptimizer::fromDisk('local') ->open('input-1.pdf') ->toDisk('s3') ->settings(PdfSettings::SCREEN) ->colorConversionStrategy(ColorConversionStrategy::DEVICE_INDEPENDENT_COLOR) ->colorImageResolution(50) ->optimize('output-1.pdf'); dd($result->status, $result->message);
Recent Courses on Laravel Daily
Next.js Basics for Laravel Developers
11 lessons
58 min
How to Build Laravel 13 API From Scratch
30 lessons
1 h 23 min
How to Structure Laravel 13 Projects
16 lessons
1 h 32 min read