Welcome Guest, Not a member yet? Register   Sign In
Image cropping challenge
#13

[eluser]KeyStroke[/eluser]
Thank you so much Colin. You've pushed me in the right direction.

Now that I'm over converting aspect ratio, I've figured out the rest. Building on your code:

Code:
$ratio_x = 240;
$ratio_y = 145;
list($image_x, $image_y) = getimagesize($image_filepath);

$new_image_y = $image_y;
$new_image_x = $image_x;

if ($ratio_x > $ratio_y)
{
   $new_image_y = ($image_x * $ratio_y) / $ratio_x;
}
else
{
   $new_image_x = ($image_y * $ratio_x) / $ratio_y;
}

$crop_x = ($image_x - $new_image_x) / 2;
$crop_y = ($image_y - $new_image_y) / 2;

And it works like a charm!

And regarding your warning, I don't think the new dimensions could be larger than the original. (Correct me if I'm wrong)


Messages In This Thread
Image cropping challenge - by El Forum - 02-14-2009, 08:40 AM
Image cropping challenge - by El Forum - 02-14-2009, 10:11 AM
Image cropping challenge - by El Forum - 02-14-2009, 10:11 AM
Image cropping challenge - by El Forum - 02-14-2009, 10:14 AM
Image cropping challenge - by El Forum - 02-14-2009, 10:21 AM
Image cropping challenge - by El Forum - 02-15-2009, 10:09 AM
Image cropping challenge - by El Forum - 02-15-2009, 10:26 AM
Image cropping challenge - by El Forum - 02-16-2009, 12:22 AM
Image cropping challenge - by El Forum - 02-16-2009, 12:27 AM
Image cropping challenge - by El Forum - 02-16-2009, 12:32 AM
Image cropping challenge - by El Forum - 02-16-2009, 12:44 AM
Image cropping challenge - by El Forum - 02-16-2009, 12:46 AM
Image cropping challenge - by El Forum - 02-22-2009, 08:31 PM



Theme © iAndrew 2016 - Forum software by © MyBB