Stars: 13424
Forks: 1512
Pull Requests: 320
Issues: 900
Watchers: 287
Last Updated: 2023-08-07 22:48:33
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 submitting your pull request.
Intervention Image is licensed under the MIT License.
Copyright 2017 Oliver Vogel