/home/techb158/ileadtechnology.com/vendor/league/glide/src/Manipulators
Edit: /home/techb158/ileadtechnology.com/vendor/league/glide/src/Manipulators/Pixelate.php (866B)
getPixelate();
if (null !== $pixelate) {
$image->pixelate($pixelate);
}
return $image;
}
/**
* Resolve pixelate amount.
*
* @return string The resolved pixelate amount.
*/
public function getPixelate()
{
if (!is_numeric($this->pixel)) {
return;
}
if ($this->pixel < 0 or $this->pixel > 1000) {
return;
}
return (int) $this->pixel;
}
}