在我的页面上,我使用脚本来获取新图像:
$targ_w = $targ_h = 150;
$jpeg_quality = 90;
$src = $_POST['image'];
$img_r = imagecreatefromjpeg($src);
$dst_r = ImageCreateTrueColor( $targ_w, $targ_h );
imagecopyresampled($dst_r,$img_r,0,0,$_POST['x'],$_POST['y'],
$targ_w,$targ_h,$_POST['w'],$_POST['h']);
header('Content-type: image/jpeg');
imagejpeg($dst_r,null,$jpeg_quality);
目前,脚本接收 $_POST 数据,从中提取图像,然后将该图像显示给用户。
现在我想添加逻辑以将图像保存在文件中,但我不知道该怎么做。任何提示将不胜感激。