Introduction | image

Image

Manipulate images with an expressive API

Image manipulation doesn't have to be hard. This PHP package makes it super easy to apply common manipulations to images like resizing, cropping and adding effects.

For all available manipulations, please see the overview.

For all the examples in this documentation we'll use this beautiful photo of New York:

Example Image

By chaining multiple manipulation methods together we can quickly add a nice effect to our image:

Image::load('example.jpg')
    ->sepia()
    ->blur(50)
    ->save();

Sepia + blur manipulation

The manualCrop method allows you to crop very specific parts of an image:

Image::load('example.jpg')
    ->manualCrop(600, 400, 20, 620)
    ->save();

Crop Starbucks

The image is converted to JPG simply by saving it with the correct file extension.

Image::load('github-logo.png')
    ->fit(Fit::Fill, 500, 300)
    ->background('lightblue')
    ->border(15, BorderType::Expand, '007698')
    ->save('example.jpg');

Example PNG to JPG