omt / image_helper
Image handling and manipulation library with support for Laravel integration
2.5.1
2019-11-02 09:15 UTC
Requires
- php: >=5.4.0
- ext-fileinfo: *
- guzzlehttp/psr7: ~1.1
Requires (Dev)
- mockery/mockery: ~0.9.2
- phpunit/phpunit: ^4.8 || ^5.7
Suggests
- ext-gd: to use GD library based image processing.
- ext-imagick: to use Imagick based image processing.
- intervention/imagecache: Caching extension for the Intervention Image library
This package is auto-updated.
Last update: 2026-06-13 00:24:15 UTC
README
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.
Requirements
- PHP >=5.4
- Fileinfo Extension
Supported Image Libraries
- GD Library (>=2.0)
- Imagick PHP extension (>=6.5.7)
Getting started
Code Examples
// 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');