php图像调整大小 - 从中​​心平方/裁剪缩略图?

时间:2012-02-23 09:21:42

标签: php image resize thumbnails crop

我有一个图片上传脚本,可将上传的图片大小调整为150x150像素。如果图像是正方形的话,那就太棒了,但是如果有人上传了一张像640x200像素的图像,它看起来并不漂亮。

所以我基本上需要它根据图像的中心自动创建一个方形缩略图。如果图像较宽,则应从左侧和右侧裁剪。如果图像较高,则应从顶部和底部裁剪。

我在网上找到了一个代码修改,确切地说:

Upload, resize, and crop center of image with PHP

我对PHP并不是很好,我现在已经在这几个小时了,尝试将下面的代码与上面的选项结合起来。如果有人能帮助我那会很棒:)

                                $target_path = "avatars/";
        $image     = $_FILES['uploadedfile']['name'];
        $target_path = $target_path . basename( $_FILES['uploadedfile']['name']); 
        $_POST["userpic"]=$_FILES['uploadedfile']['name'];
        if($_FILES['uploadedfile']['tmp_name']!="") {
        $imagetype=explode(".",$_POST["userpic"]);

        if($imagetype[1]=="jpg" || $imagetype[1]=="JPG" || $imagetype[1]=="gif" || $imagetype[1]=="GIF")
        {
        $target_path = "avatars/";
        $thaid=$_POST["user_id"];
        $target_path = $target_path .$thaid.".".$imagetype[1]; 
        $target_path2 =$thaid.".".$imagetype[1]; 
        move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path);
        $_POST["userpic"]=$target_path2;
        $n_width=$setts['avatar_width']; 
        $n_height=$setts['avatar_height']; 
        $tsrc=$target_path; 
        $add=$target_path;

        if($imagetype[1]=="jpg" || $imagetype[1]=="JPG")
        {
        $im=imagecreatefromjpeg($add);
        $width=imagesx($im); 
        $height=imagesy($im); 
        $newimage=imagecreatetruecolor($n_width,$n_height);


        $ar = 1.00;

    if ($ar < 1) { // "tall" crop
$cropWidth = min($height * $ar, $width);
$cropHeight = $cropWidth / $ar;
    }
    else { // "wide" crop
$cropHeight = min($width / $ar, $height);
$cropWidth = $cropHeight * $ar;
    }


        imagecopyresized($newimage,$im,0,0,0,0,$n_width,$n_height,$cropWidth,$cropHeight);
        imagejpeg($newimage,$tsrc,100);
        }
        if($imagetype[1]=="gif" || $imagetype[1]=="GIF")
        {
        $im=imagecreatefromgif($add);
        $width=imagesx($im);              
        $height=imagesy($im);            
        $newimage=imagecreatetruecolor($n_width,$n_height);
        imagecopyresized($newimage,$im,0,0,0,0,$n_width,$n_height,$width,$height);
        imagegif($newimage,$tsrc,100);
        }
        }
        else
        {
        $_POST["userpic"]="noimage.jpg";
        }
        } 

2 个答案:

答案 0 :(得分:2)

如果安装了ImageMagick,您可以执行以下操作:

<?php
$i = new Imagick();
$i->readImage($file);
$i->cropThumbnailImage($w,$h);

这样,你实际上不必担心数学。

答案 1 :(得分:1)

计算要裁剪区域的尺寸的数学并不复杂。我已经给出this question的答案,允许你根据作物区域的任何纵横比计算出这个答案;因为你想要一个方形缩略图,你应该将宽高比设置为1。

然后,了解原始图像和缩略图的尺寸,您可以轻松计算传递给imagecopyresized的值。