View Single Post
Old 05-20-2004, 12:02 PM   #1 (permalink)
ATLien
Contributing Member
 
ATLien's Avatar
 
Join Date: 10-13-03
Location: Atlanta, GA
Posts: 1,135
iTrader: 0 / 0%
ATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really nice
Send a message via AIM to ATLien Send a message via Skype™ to ATLien
PHP Image Resize Issue

[code:1:c36122c4ac]function resize($fname, $output, $max_width, $max_height, $quality = 75) {

getimagesize($fname);
$width = $size[0];
$height = $size[1];
$x_ratio = $max_width / $width;
$y_ratio = $max_height / $height;
if ( ($width <= $max_width) && ($height <= $max_height) ) {
$tn_width = $width;
$tn_height = $height;
}
else if (($x_ratio * $height) < $max_height) {
$tn_height = ceil($x_ratio * $height);
$tn_width = $max_width;
}
else {
$tn_width = ceil($y_ratio * $width);
$tn_height = $max_height;
}

$im = imagecreatefromjpeg($fname);
$dst = imagecreatetruecolor($tn_width,$tn_height);
imagecopyresampled($dst, $im, 0, 0, 0, 0,$tn_width,$tn_height,$width,$height);
imagejpeg($dst, $output, $quality);
imagedestroy($im);
imagedestroy($dst);
}
[/code:1:c36122c4ac]

Ok, someone gave me the above code to create a thumb. I want to know what varible I would use to echo the path to the image created in the function. Can anyone help me?
ATLien is offline   Reply With Quote