Nothing will work perfectly for 100% of all images until image saliency (facial recognition, horizon, etc) is taken into account which is years away, but surely different aspect ratios (16:9, 4:3) work in the same way that crop to square (1:1) works?
I could be wrong, definitely being foolish in trying to explain it , but looking at imagecopyresampled, wouldn't it work like this?:
imagecopyresampled($image['handle'], $image['source'], $hnd_x_offset, $hnd_y_offset, $src_x_offset, $src_y_offset, $new_width, $new_height, $src_width, $src_height)
Instead of $new_width : $new_height and $src_width : $src_height both being 1 : 1, they can both be 4 : 3, or 16 : 9
As long as $new_width : $new_height and $src_width : $src_height are the same aspect ratios there will be no distortion, regardless of the aspect ratio of the uploaded image - $src_width and $src_height are not the width and height of the src image, they are the width and height that you are copying out of the src image.
You still need to work out the offsets - $src_x_offset = 0 unless the height hits the boundary, $src_y_offset = 0 unless the width hits the boundary.
Say we have a 1600 x 1200 image and we want a 16:9 crop (160x90) from the center.
$src_width = $actual_source_image_width;
$src_height = ($actual_source_image_width / 16) * 9;
$src_y_offset = ($actual_source_image_height - $src_height) / 2;
$new_width = 160;
$new_height = 90;
$image['handle'] is 160 x 90
$image['source'] is 1600 x 1200
imagecopyresampled($image['handle'], $image['source'], 0, 0, 0, 150, 160, 90, 1600, 900)
A 1200 x 1600 source:
imagecopyresampled($image['handle'], $image['source'], 0, 0, 0, 462, 160, 90, 1200, 675)
A 1200 x 1200 source:
imagecopyresampled($image['handle'], $image['source'], 0, 0, 0, 262, 160, 90, 1200, 675)
A 100 x 100 source:
imagecopyresampled($image['handle'], $image['source'], 0, 0, 0, 22, 160, 90, 100, 56)
I know I'm oversimplifying it, but wouldn't that give a set of 160x90 thumbnail images with no distortion?
A 9:16 portrait from a 100x100 could be similar:
imagecopyresampled($image['handle'], $image['source'], 0, 0, 22, 0, 90, 160, 56, 100)
--
¯\_(ツ)_/¯ Education, learning resources, TEL, AR/VR/MR, CC licensed content, panoramas, interactive narrative, sectional modules (like jrDocs), lunch at Uni of Bristol. Get in touch if you share my current interests or can suggest better :)