PHP图像调整大小和裁剪功能

时间:2010-10-01 04:44:35

标签: php cakephp image-processing crop

我想要一个功能,当我上传照片时,它应该裁剪图像,而不管中心的图像比例,确保裁剪在图像内部。

alt text

以上图片为2592 * 1944

我想剪裁159 * 129

的图像

alt text

这是我在使用cakephp插件时获得的(Miles Johnsons Upload Plugin)

有些人可以帮我找到一个图像裁剪功能来做这件事,或者帮助我做同样的算法。

3 个答案:

答案 0 :(得分:1)

我使用了这个:http://shiftingpixel.com/2008/03/03/smart-image-resizer/来创建此处的所有图片缩略图:http://www.patriciashin.com/painting.php

答案 1 :(得分:1)

我必须说我没有彻底测试这段代码,我将其修改为个人使用,这应该可以解决您的问题。

替换plugin / uploader / vendor / uploader.php中的函数裁剪

第368行附近

具有以下功能

 public function crop(array $options = array(), $explicit = false) {
    if ($this->_data[$this->_current]['group'] != 'image' || !$this->_enabled) {
        return false;
    }

    $options = $options + array('location' => self::LOC_CENTER, 'quality' => 100, 'width' => null, 'height' => null, 'append' => null, 'prepend' => null);
    $width = $this->_data[$this->_current]['width'];
    $height = $this->_data[$this->_current]['height'];
    $src_x = 0;
    $src_y = 0;
    $dest_w = $width;
    $dest_h = $height;
    $location = $options['location'];

    if (is_numeric($options['width']) && is_numeric($options['height'])) {
        $newWidth = $options['width'];
        $newHeight = $options['height'];

        if ($width / $newWidth > $height / $newHeight) {
            $dest_h = $options['height'];
            $dest_w = round($width / ($height / $newHeight));
        } else {
            $dest_w = $options['width'];
            $dest_h = round($height / ($width / $newWidth));
        }
    } else {
        if ($width > $height) {
            $newWidth = $height;
            $newHeight = $height;
        } else {
            $newWidth = $width;
            $newHeight = $width;
        }

        $dest_h = $newHeight;
        $dest_w = $newWidth;
    }

    $src_x = 0;
    $src_y = 0;
    if ($dest_w > $newWidth) {
            $src_x = ceil(( ($dest_w - $newWidth) / 2) * ($height / $newHeight));
    }

    if ($dest_h > $newHeight) {
            $src_y = ceil(( ($dest_h - $newHeight) / 2) * ($width / $newWidth));
    }

    $append = '_cropped_' . $newWidth . 'x' . $newHeight;

    if ($options['append'] !== false && empty($options['append'])) {
        $options['append'] = $append;
    }

    $transform = array(
        'width' => $newWidth,
        'height' => $newHeight,
        'source_x' => $src_x,
        'source_y' => $src_y,
        'source_w' => $width,
        'source_h' => $height,
        'dest_w' => $dest_w,
        'dest_h' => $dest_h,
        'target' => $this->setDestination($this->_data[$this->_current]['name'], true, $options, false),
        'quality' => $options['quality']
    );
    if ($this->transform($transform)) {

        return $this->_returnData($transform, $append, $explicit);
    }

    return false;
}

亲切的问候。

答案 2 :(得分:1)

此问题已解决,请查看最新版本的cake-uploader插件。 {{3P>