imagecopy
我在 php 中使用裁剪图像。但我想将它保存到我的旧路径。我可以用来做什么?这是我裁剪图像的方法。
$w=250;
$h=300;
$x=$_POST['x1'];
$y=$_POST['y1'];
$filename="upload/".$_SESSION['basename'];
header('Content-type: image/jpg');
//header('Content-Disposition: attachment; filename='.$src);
$image = imagecreatefromjpeg($filename);
$crop = imagecreatetruecolor($w,$h);
$new = imagecopy ($crop, $image, 0, 0, $x, $y, $w, $h);
imagejpeg($crop);
imagedestroy($filename);
我使用了这种方法,但它对我不起作用。
$input = 'upload/'.$new;
$output = 'upload/xxx.jpg';
file_put_contents($output, file_get_contents($input));