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.
##Quick examples
For all the examples in this documentation we'll use this beautiful photo of New York:
##Sepia and blur
By chaining multiple manipulation methods together we can quickly add a nice effect to our image:
Image::load('example.jpg')
->sepia()
->blur(50)
->save();
##Cropping the Starbucks storefront
The manualCrop
method allows you to crop very specific parts of an image:
Image::load('example.jpg')
->manualCrop(600, 400, 20, 620)
->save();
##Converting a transparent PNG to JPG
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');