时间:2021-07-01 10:21:17 帮助过:30人阅读
//创建新的图像
$new_f=imagecreatetruecolor($new_w, $new_h);
//用资源图片创建图像
$sour_f=imagecreatefromjpeg($source);
//拷贝资源图片到新图像
imagecopyresampled($new_f, $sour_f, 0, 0, 0, 0, $new_w, $new_h, $s_w, $s_h);
//输出图片到浏览器
imagejpeg($new_f,$newfile);
imagedestroy($new_f);
imagedestroy($sour_f);
}
}
?>