Hi, I want to save multiple thumbnails from each image with several sizes:
$image = PhpThumbFactory::create($image);
$thmb_panel = $image->adaptiveResize(79,79)->save($destino."/thmb.jpg");
$thmb_fend = $image->adaptiveResize(237, 180)->save($destino."/fend.jpg");
The problem is $thmb_fend saves with 79x79px like $thmb_panel.
Any suggestions?
Thanks for the great class :)