I have an issue where I want to have an image resized, but have both a cropped and non-cropped version available (of the same size!)
The code to do this is simple:
$imagefull = $image->size(320,320,array( 'cropping' => false);
$imagecropped = $image->size(320,320,array( 'cropping' => true);
How...