成功裁剪php服务器后图片没有被替换

时间:2014-09-12 20:32:05

标签: php image gd crop jcrop

我正在使用jcrop.js裁剪我的图片。

我的图片裁剪过程成功完成,但裁剪完图片后,我的服务器中的新图片不会替换它。

我的代码是

<?php
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    $targ_w = $targ_h = 150;
    $jpeg_quality = 90;
    $src = 'upload/flowers.jpg';
    $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);
    exit;
} 
?> 

0 个答案:

没有答案