= $width) { $width = ($def_h * $width) / $height; $height = $def_h; } if ($width >= $height) { $height = ($def_w * $height) / $width; $width = $def_w; } //$height = ($w / $width) * $height; //$width = $w; $dst_img = ImageCreatetruecolor($width, $height); imagecopyresampled ($dst_img, $src_img, 0, 0, 0, 0, $width, $height, ImageSX($src_img), ImageSY($src_img)); if ($extension == "jpg" || $extension == "jpeg") { ImageJPEG($dst_img, '', 100); } if ($extension == "gif") { ImageGIF($dst_img, '', 100); } if ($extension == "png") { ImagePNG($dst_img, '', 100); } ImageDestroy($dst_img); ImageDestroy($src_img); ?>