将裁剪添加到 PHP 图像调整大小脚本

Posted

技术标签:

【中文标题】将裁剪添加到 PHP 图像调整大小脚本【英文标题】:Adding Crop to PHP Image Resize Script 【发布时间】:2012-09-16 15:10:49 【问题描述】:

我有一个现有的图像上传脚本(如下),它工作正常,但我想为其添加一个裁剪功能,因此每张上传的照片都保持正确的纵横比,但被裁剪为 200 x 200 像素。

我已经查看了与此相关的其他关于 SO 的问题,但理想情况下,我想在我的脚本中添加裁剪,而不是实现一个全新的,如果这有意义的话。

有人可以帮忙吗?

一如既往的感谢。

mkdir("images/$user_id");
$saveto = "images/$user_id/$user_id.jpg";
move_uploaded_file($_FILES['image']['tmp_name'], $saveto);
$typeok = TRUE;

switch($_FILES['image']['type'])

    case "image/gif":   $src = imagecreatefromgif($saveto); break;

    case "image/jpeg":  // Both regular and progressive jpegs
    case "image/pjpeg": $src = imagecreatefromjpeg($saveto); break;

    case "image/png":   $src = imagecreatefrompng($saveto); break;

    default:            $typeok = FALSE; break;


if ($typeok)





    list($w, $h) = getimagesize($saveto);
    $max = 200;
    $tw  = $w;
    $th  = $h;

    if ($w > $h && $max < $w)
    
        $th = $max / $w * $h;
        $tw = $max;
    
    elseif ($h > $w && $max < $h)
    
        $tw = $max / $h * $w;
        $th = $max;
    
    elseif ($max < $w)
    
        $tw = $th = $max;
    

    $tmp = imagecreatetruecolor($tw, $th);
    imagecopyresampled($tmp, $src, 0, 0, 0, 0, $tw, $th, $w, $h);
    imageconvolution($tmp, array( // Sharpen image
                            array(-1, -1, -1),
                            array(-1, 16, -1),
                            array(-1, -1, -1)
                           ), 8, 0);
    imagejpeg($tmp, $saveto);
    imagedestroy($tmp);
    imagedestroy($src);



编辑:我发现以下脚本在其自己的页面上运行良好,但是我无法在现有的上传脚本中或之后实施它 - 我得到一些“无法打开流:没有这样的文件或目录的错误 - 但是图像的路径是正确的(我已经回显它以确保):

$filename = 'images/$user_id/$user_id.jpg';

// Get dimensions of the original image
list($current_width, $current_height) = getimagesize($filename);

// The x and y coordinates on the original image where we
// will begin cropping the image
$left = 25;
$top = 25;

// This will be the final size of the image (e.g. how many pixels
// left and down we will be going)
$crop_width = 200;
$crop_height = 200;

// Resample the image
$canvas = imagecreatetruecolor($crop_width, $crop_height);
$current_image = imagecreatefromjpeg($filename);
imagecopy($canvas, $current_image, 0, 0, $left, $top, $current_width, $current_height);
imagejpeg($canvas, $filename, 100);

谁能帮我把这两个放在一起?

谢谢

【问题讨论】:

这太本地化了。答案是如何将裁剪添加到您的 specific 脚本中,除了您自己之外,对任何人都无济于事。使用 php 裁剪图像的示例有成百上千个,您应该尝试将其添加到您的脚本中,并在遇到错误时寻求帮助。 imagick::cropThumbnailImage 将为您完成所有工作。 @meagar 公平点 :) 我会尝试一些东西并报告回来。谢谢 【参考方案1】:

看看:Gregwar/Image

它非常易于使用,而且非常高效。

resize($width, $height, $background):调整图片大小,将 保持比例,永远不要放大它

scaleResize($width, $height, $background):调整图片大小,将 保持规模

forceResize($width, $height, $background):调整图片大小,将 通过 $height 将图像精确到 $width

cropResize($width, $height, $background): 调整图片大小 保留比例并裁剪空白

【讨论】:

【参考方案2】:

感谢大家的回复-我通过更改使我的脚本正常工作

$filename = 'images/$user_id/$user_id.jpg';

$filename = "images/$user_id/$user_id.jpg";

【讨论】:

如果你没有看到它。他改了引号!

以上是关于将裁剪添加到 PHP 图像调整大小脚本的主要内容,如果未能解决你的问题,请参考以下文章

PHP:图像调整大小和裁剪为纵向

这个调整图像大小/裁剪图像的逻辑是不是正确(在 php 中,但它是关于逻辑而不是代码)

php调整图像大小然后裁剪图像问题

在php中将图像调整大小并裁剪为固定大小

通过调整图像 url 将图像裁剪为正确大小

允许在 PHP 中裁剪和调整图像大小而不使用太多内存的图像功能 [关闭]