pixelate — Pixelate an image

Description

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

  1. // create new Intervention Image
  2. $img = Image::make('public/foo.jpg');
  3. // apply pixelation effect
  4. $img->pixelate(12);

See also