vakata/image

Image manipulation helper class

2.4.0 2024-03-11 11:50 UTC

This package is auto-updated.

Last update: 2024-04-11 12:03:16 UTC


README

Latest Version on Packagist Software License Build Status Code Climate Tests Coverage

PHP helper class for image manipulation (using Imagick or GD - whichever is available).

Install

Via Composer

$ composer require vakata/image

Usage

$image = new \vakata\image\Image('image.png');
header('Content-Type: image/jpeg');
echo $image
    ->crop(200, 200)
    ->grayscale()
    ->rotate(90)
    ->toJPG();

Read more in the API docs

Testing

$ composer test

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email github@vakata.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.