pixelate — Pixelate an image

Description

public Intervention\Image\Image pixelate(integer $size, [boolean $advanced])

Applies a pixelation effect to the current image with a given size of pixels. The advanced mode of the GD Library is turned on by default and can be turned off by passing a boolean false.

Parameters

size

Size of the pixels.

advanced (optional)

Whether to use advanced pixelation of GD Library or not. Default: true

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