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
// create new Intervention Image
$img = Image::make('public/foo.jpg');
// apply pixelation effect
$img->pixelate(12);
See also
当前内容版权归 intervention 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 intervention .