wiejakp / image-crop
Image cropping helper for PHP.
Installs: 10 688
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 1
Open Issues: 0
Requires
- php: >=7.2.0
- composer/composer: ^1.9
- data-uri/data-uri: ^0.2.5
Requires (Dev)
This package is auto-updated.
Last update: 2025-03-29 01:00:16 UTC
README
This project adheres to a Contributor Code of Conduct. By participating in this project and its community, you are expected to uphold this code.
Installation
The preferred method of installation is via Composer. Run the following
command to install the package and add it as a requirement to your project's
composer.json
:
composer require wiejakp/image-crop
Basic Usage
$imagePath = 'image.jpeg'; $imageCrop = (new ImageCrop()) ->setReader(JPEGReader::class) ->setWriter(JPEGWriter::class); // load resource into a reader $imageCrop->getReader()->loadFromPath($imagePath); // perform cropping actions $imageCrop->crop(); // skip images that appear to be empty if (false === $imageCrop->isEmpty()) { // save cropped image to the drive $imageCrop->getWriter()->write(); // do stuff with $imageCrop->getData() or $imageCrop->getDataUri() $anchor = \sprintf('<a href="%s">anchor</a>', $imageCrop->getDataUri()); ... }
Reader And Writers
You can mix nad match what image resource is being loaded and what image resource is being generated out.
BMP Reader And Writer
$imageCrop = (new ImageCrop()) ->setReader(BMPReader::class) ->setWriter(BMPWriter::class);
GIF Reader And Writer
$imageCrop = (new ImageCrop()) ->setReader(GIFReader::class) ->setWriter(GIFWriter::class);
JPEG Reader And Writer
$imageCrop = (new ImageCrop()) ->setReader(JPEGReader::class) ->setWriter(JPEGWriter::class);
PNG Reader And Writer
$imageCrop = (new ImageCrop()) ->setReader(PNGReader::class) ->setWriter(PNGWriter::class);
Documentation
Check out the documentation website for detailed information and code examples.
Contributing
Contributions are welcome! Please read CONTRIBUTING for details.
Copyright and License
The wiejakp/ImageCrop library is copyright © Przemek Wiejak and licensed for use under the MIT License (MIT). Please see LICENSE for more information.