Hello!
Everything works very well so far, but I found problems with transparency.
$_filename="nicename.png";
$format="png";
$thumb->resize($width,$height')->save($_filename,$format);
$thumb = PhpThumbFactory::create($_filename);//take the cached Thumb.
$thumb->show();
When I tried to resize and save this image here with png and transparency it turns out to have a black background (the same as when saved in jpg Format)
Try this image to test it:
http://www.atomikframework.com/assets/images/logo.png
Do I make any mistake, or is this a bug?
Thank you.