Image::pixelate
Apply pixelation filter to the current image
2.9M Downloads / Month
Open Source MIT License
2.9M Downloads / Month
Open Source MIT License
public Intervention\Image\Image pixelate(integer $size)
Applies a pixelation effect to the current image with a given size of pixels.
Size of the pixels.
Instance of Intervention\Image\Image
// create new Intervention Image
$img = Image::make('public/foo.jpg');
// apply pixelation effect
$img->pixelate(12);