Skip to content

Latest commit

 

History

History
55 lines (34 loc) · 905 Bytes

effects.md

File metadata and controls

55 lines (34 loc) · 905 Bytes
title weight
Effects
6

Blur

The blur method blurs the Image. The method accepts a value between 0 and 100.

$image->blur(50);

Blurred image

Pixelate

The pixelate method pixelates the Image. The method accepts a value between 0 and 100.

$image->pixelate(50);

Pixelated image

Greyscale

The greyscale method converts the Image to greyscale.

$image->greyscale();

Greyscale image

Sepia

The sepia method add a sepia filter to the Image.

$image->sepia();

Greyscale image

Sharpen

The sharpen method sharpens Image. The method accepts a value between 0 and 100.

$image->sharpen(40);

Greyscale image