3

我正在使用 php 脚本来上传和调整图像大小,非常简单:

if($_SERVER["REQUEST_METHOD"] == "POST") {
    $image = $_FILES["image_upload"];
    $uploadedfile = $image['tmp_name'];

    if ($image) {
        $filename = stripslashes($_FILES['image_upload']['name']);
        $extension = getExtension($filename);
        $extension = strtolower($extension);
        if (($extension != "jpg") && ($extension != "jpeg") && ($extension != "png") && ($extension != "gif")) {
            $error_txt = 'Immagine incoretta';
            $errors=1;
        } else {
            $size=filesize($uploadedfile);
            if ($size > MAX_SIZE*1024) {
                $error_txt = "Immagine troppo grande";
                $errors=1;
            }
            if($extension=="jpg" || $extension=="jpeg" ) {
                $uploadedfile = $uploadedfile;
                $src = imagecreatefromjpeg($uploadedfile);
            } else if($extension=="png") {
                $uploadedfile = $uploadedfile;
                $src = imagecreatefrompng($uploadedfile);
            } else {
                $src = imagecreatefromgif($uploadedfile);
            }

            list($width,$height)=getimagesize($uploadedfile);

            $newwidth=500;
            $newheight=375;
            $tmp=imagecreatetruecolor($newwidth,$newheight);



            imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,$width,$height);


            $filename = "images/". generateRandomString(5) . $image['name'];

            imagejpeg($tmp,$filename,100);

            imagedestroy($src);
            imagedestroy($tmp);
        }
    }

我想更进一步,现在我只是调整图像的大小,无论比例如何,我想我想在不丢失原始比例的情况下将其调整为固定的高度,这当然是通过裁剪来实现的+调整原始图像的大小。

我不知道如何使用我的实际imagecreatetruecolorimagecopyresampled函数来做到这一点,并且查看 php 手册似乎不是很容易。

有一个非常好的库我试图集成到我的代码中,使用它就像mysite.com/lib/timthumb.php?src=castle1.jpg&h=180&w=120一样简单,但我不知道如何将它与我的实际集成代码。

所以你有什么建议?

4

1 回答 1

2

以下代码如有错别字或任何内容,请见谅。我没有测试过。我在这里所做的是计算高度或宽度是否是太长的比例。然后调整源尺寸以匹配最终图像尺寸。此外,调整我们缩小的一侧的中心,使裁剪的图像居中。

    $newwidth  = 500;
    $newheight = 375;
    $tmp       = imagecreatetruecolor($newwidth, $newheight);

    $widthProportion  = $width / $newwidth;
    $heightProportion = $height / $newheight;

    if ($widthProportion > $heightProportion) {
        // width proportion is greater than height proportion
        // figure out adjustment we need to make to width
        $widthAdjustment = ($width * ($widthProportion - $heightProportion));

        // Shrink width to proper proportion
        $width = $width - $widthAdjustment;

        $x = 0; // No adjusting height position
        $y = $y + ($widthAdjustment / 2); // Center the adjustment
    } else {
        // height proportion is greater than width proportion
        // figure out adjustment we need to make to width
        $heightAdjustment = ($height * ($heightProportion - $widthProportion));

        // Shrink height to proper proportion
        $height = $height - $heightAdjustment;

        $x = $x + ($heightAdjustment / 2); // Center the ajustment
        $y = 0; // No adjusting width position
    }

    imagecopyresampled($tmp, $src, 0, 0, $x, $y, $newwidth, $newheight, $width, $height);

所以基本上使用 $width 和 $height 变量,您可以指定您想要多少图片(裁剪)。和 $x, $y 我们说我们要裁剪图片的位置。其余的只是标准调整大小以适应完整的新图像。

我希望这会有所帮助!

于 2013-03-22T22:23:09.340 回答