裁剪图像croppic + CI时出错

时间:2015-08-02 18:58:43

标签: php jquery codeigniter

我使用croppic裁剪图像。它在上传图像时成功,但在裁剪图像时无法正常工作,错误意外令牌< 。它不能获得$ ImgUrl。 value这是我目前的代码:

 function image_cropping(){

    $imgUrl = $_POST['imgUrl'];
    // original sizes
    $imgInitW = $_POST['imgInitW'];
    $imgInitH = $_POST['imgInitH'];
    // resized sizes
    $imgW = $_POST['imgW'];
    $imgH = $_POST['imgH'];
    // offsets
    $imgY1 = $_POST['imgY1'];
    $imgX1 = $_POST['imgX1'];
    // crop box
    $cropW = $_POST['cropW'];
    $cropH = $_POST['cropH'];
    // rotation angle
    $angle = $_POST['rotation'];

    $jpeg_quality = 100;

    $output_filename =base_url() . 'assets/images/croppedImg_'.rand();

    $what = getimagesize($imgUrl);

    switch(strtolower($what['mime']))
    {
        case 'image/png':
            $img_r = imagecreatefrompng($imgUrl);
            $source_image = imagecreatefrompng($imgUrl);
            $type = '.png';
            break;
        case 'image/jpeg':
            $img_r = imagecreatefromjpeg($imgUrl);
            $source_image = imagecreatefromjpeg($imgUrl);
            error_log("jpg");
            $type = '.jpeg';
            break;
        case 'image/gif':
            $img_r = imagecreatefromgif($imgUrl);
            $source_image = imagecreatefromgif($imgUrl);
            $type = '.gif';
            break;
        default: die('image type not supported');
    }

    if(!is_writable(dirname($output_filename))){
        $response = Array(
            "status" => 'error',
            "message" => 'Can`t write cropped File'
        );  

    }else{

        $resizedImage = imagecreatetruecolor($imgW, $imgH);
        imagecopyresampled($resizedImage, $source_image, 0, 0, 0, 0, $imgW, $imgH, $imgInitW, $imgInitH);

        $rotated_image = imagerotate($resizedImage, -$angle, 0);

        $rotated_width = imagesx($rotated_image);
        $rotated_height = imagesy($rotated_image);

        $dx = $rotated_width - $imgW;
        $dy = $rotated_height - $imgH;

        $cropped_rotated_image = imagecreatetruecolor($imgW, $imgH);
        imagecolortransparent($cropped_rotated_image, imagecolorallocate($cropped_rotated_image, 0, 0, 0));
        imagecopyresampled($cropped_rotated_image, $rotated_image, 0, 0, $dx / 2, $dy / 2, $imgW, $imgH, $imgW, $imgH);
        // crop image into selected area
        $final_image = imagecreatetruecolor($cropW, $cropH);
        imagecolortransparent($final_image, imagecolorallocate($final_image, 0, 0, 0));
        imagecopyresampled($final_image, $cropped_rotated_image, 0, 0, $imgX1, $imgY1, $cropW, $cropH, $cropW, $cropH);

        imagejpeg($final_image, $output_filename.$type, $jpeg_quality);
        $response = Array(
            "status" => 'success',
            "url" => $output_filename.$type
        );
    }
    print json_encode($response);
 }

}

任何想法都出错了?谢谢

1 个答案:

答案 0 :(得分:0)

您可以从此链接下载源文件 http://imakeitsolutions.com/croppic/

尝试使用此代码

imagejpeg($final_image, $output_filename.$type, $jpeg_quality);
$response = Array(
    "status" => 'success',
    "url" => base_url(). $output_filename.$type
);