$img_height) { $height = $img_height; } $width = ($height)/$img_height * $img_width; $im = ImageCreate($width,$height); /* ImageCopyResampled is better if available */ ImageCopyResized($im, $bg, 0, 0, 0, 0, $width, $height, $img_width, $img_height); ImageDestroy($bg); ImagePNG($im); ?>