Welcome Guest, Not a member yet? Register   Sign In
Resize image only when it is too big
#2

[eluser]Bramme[/eluser]
you'll have to do the calculations yourself...
Code:
$image_url = '/myimage.jpg';
$max_size = 500px;

list($width, $height, $t, $i) = getimagesize($image_url);
if($width > $max_size || $height > $max_size) {
    // use image lib
}


Messages In This Thread
Resize image only when it is too big - by El Forum - 07-18-2008, 05:28 AM
Resize image only when it is too big - by El Forum - 07-18-2008, 05:40 AM



Theme © iAndrew 2016 - Forum software by © MyBB