php imagecopyresampled无法按预期工作

时间:2016-01-05 10:47:50

标签: php image php-gd

我尝试使用imagecopyresampled裁剪图像,然后再将其保存到ftp服务器。

我的php是:

function image_resizing($image, $type, $ext, $quality, $file_name) {
    strtolower($ext);
    list($src_width, $src_height) = getimagesize($image);
    switch($ext) {
        case 'gif':
        $image_create = 'imagecreatefromgif';
        break;

        case 'png':
        $image_create = 'imagecreatefrompng';
        break;

        default:
        $image_create = 'imagecreatefromjpeg';
        break;        
    } 

    $temp_img = $image_create($image);

    if($type == 'wide') {
        $width = 1920;
        $height = 2160;
    } else if($type == 'content') {
        $height = 600;
        $width = 400;
    }

    $src_x = ($src_width - $width) / 2;
    $src_y = ($src_height - $height) / 2;

    $new_image = imagecreatetruecolor($width, $height);
    imagecopyresampled ($new_image, $temp_img, 0, 0, $src_x, $src_y, $width, $height, $src_width, $src_height);
    $image_dest = '';
    imagejpeg($new_image, $file_name, $quality);
}

但不知何故,我的裁剪区域周围的黑色空间或新图像中的所有黑色(在较小的图像中)都会结束。据我所知,src / dest坐标是正确的。

图片:

http://www.strongleaf.nl/images/website_images/content-images/image-test-image-imagecopyresampled.jpg

http://www.strongleaf.nl/images/website_images/wide-images/image-test-image-imagecopyresampled.jpg

2 个答案:

答案 0 :(得分:2)

如果原始图像较大,我认为pb是imagecopyresampled的最后两个参数在原始图像外界定了一个矩形。你能尝试一下:

imagecopyresampled ($new_image, $temp_img, 0, 0, $src_x, $src_y, $width, $height, $width, $height);

答案 1 :(得分:1)

我看到几个问题:

1)你应该将imagecopyresampled更改为(注意最后两个参数)

imagecopyresampled ($new_image, $temp_img, 0, 0, $src_x, $src_y, $width, $height, $width, $height);

2)你应该

$ext = strtolower($ext);

3)$ width,$ height如果您将错误的$ type传递给函数

,则为零

但是,如果图像的比例不同于1920x2160或400x600,如果它们在任何尺寸上都较小,那么你仍然不会避免使用黑色空间。

我建议不要打扰GD。请改用Imagick

您可以在Imagick中调用::cropthumbnailimage,这将解决所有尺寸问题。我开始使用Imagick的主要原因是GD库的内存使用率非常高。