When I resize images using the built in GD library resize(), the transparancy becomes a black background. How can I keep the transparency?
$image = new Phalcon\Image\Adapter\GD("upload/test.jpg");
$image->resize(200, 200);
if ($image->save()) {
echo 'success';
}