![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ledger.corals.io/vendor/league/glide/src/Manipulators/ |
<?php namespace League\Glide\Manipulators; use Intervention\Image\Image; /** * @property string $pixel */ class Pixelate extends BaseManipulator { /** * Perform pixelate image manipulation. * * @param Image $image The source image. * * @return Image The manipulated image. */ public function run(Image $image) { $pixelate = $this->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; } }