Image handling and manipulation library with support for Laravel integration, forked to apply bugfixes and addons.
pecee/intervention-image is a Laravel package for image handling and manipulation library with support for laravel integration, forked to apply bugfixes and addons..
It currently has 1 GitHub stars and 848 downloads on Packagist (latest version 2.4.4).
Install it with composer require pecee/intervention-image.
Discover more Laravel packages by pecee
or browse all Laravel packages to compare alternatives.
Last updated
Intervention Image is a PHP image handling and manipulation library providing an easier and expressive way to create, edit, and compose images. The package includes ServiceProviders and Facades for easy Laravel integration.
// open an image file
$img = Image::make('public/foo.jpg');
// resize image instance
$img->resize(320, 240);
// insert a watermark
$img->insert('public/watermark.png');
// save image in desired format
$img->save('public/bar.jpg');
Refer to the official documentation to learn more about Intervention Image.
Contributions to the Intervention Image library are welcome. Please note the following guidelines before submiting your pull request.
Intervention Image is licensed under the MIT License.
Copyright 2017 Oliver Vogel