ImageCompressor - this is an easy way to compress images on the fly.
The following libraries need to be installed:
sudo apt-get -y install jpegoptim pngquant
Execute the following command to install this package as a dependency in your project:
composer require "tihiy-production/php-image-compressor"
You can choose a local file as the source and write it to another file.
$source = tihiy\Compressor\ImageCompressor::sourceFile('uncompressed.jpg');
$source->toFile('compressed.jpg');
You can upload an image content as the source and get the compressed image data.
$sourceData = file_get_contents('uncompressed.jpg');
$resultData = tihiy\Compressor\ImageCompressor::sourceContent($sourceData)->toContent();
You can specify URL as a source to the image and compress it without having to upload.
$source = tihiy\Compressor\ImageCompressor::sourceUrl('https://example.com/uncompressed.jpg');
$source->toFile('compressed.jpg');
This software is licensed under the MIT License. View the license.