Image::pixelate

Apply pixelation filter to the current image

2.8M Downloads / Month

Open Source MIT License

You are viewing the documentation for Intervention Image 2, this version has reached end of life (EOL). Please consider upgrading to version 3.

public Intervention\Image\Image pixelate(integer $size)

Applies a pixelation effect to the current image with a given size of pixels.

Parameters

size

Size of the pixels.

Return Values

Instance of Intervention\Image\Image

Examples

// create new Intervention Image
$img = Image::make('public/foo.jpg');

// apply pixelation effect
$img->pixelate(12);

See also

Edit