Greetings!
I'm trying to pixelate a image via GD library using the following code
$images = '../uploads/';
$image = new Phalcon\Image\Adapter\GD($images. 'input.jpg');
$image->pixelate(50);
$image->save($images. 'output.jpg');
and I'm getting a weird result where only certain areas are being pixelated.
Is this a bug or am I doing something wrong?