请帮助我解决我当前的功能,使其成功地将任何其他图像类型转换为正确的 jpg 图像类型。
这是我的功能
function resize_image($oldimage_name, $new_image_name){
list($owidth,$oheight) = getimagesize($oldimage_name);
$width = 250; $height = 250;
$im = imagecreatetruecolor($width, $height);
$img_src = imagecreatefromjpeg($oldimage_name);
imagealphablending($img_src, false);
imagesavelalpha($img_src, true);
imagecopyresampled($im, $img_src, 0, 0, 0, 0, $width, $height, $owidth, $oheight);
imagejpeg($im, $new_image_name, 90);
imagedestroy($im);
unlink($oldimage_name);
return true;
}
感谢您的宝贵时间并提前提供帮助
德玛西亚99