Description
When using Phalcon\Image\Adapter\GD resize() method on png with alpha channel the new image has a black background.
Steps to reproduce the behavior:
$image = new \Phalcon\Image\Adapter\GD('image-with-transparent-background.png'); //image with a transparent background
$image->resize(500,500); //any new size
$image->save(); //after saving the image has a black background
Description When using Phalcon\Image\Adapter\GD resize() method on png with alpha channel the new image has a black background.
Steps to reproduce the behavior:
Probably need to add imagealphablending();