如何在保持宽高比的同时将图像调整为固定的宽度和高度?

问题描述 投票:0回答:1

我试图批量调整图像大小为250 x 250 PHP

所有源图像都大于250 x 250,这很有帮助。

我想保持纵横比,但要使它们全部为250 x 250.我知道图像的一部分将被裁剪掉以执行此操作。这对我来说不是问题

问题是我当前的脚本仅适用于宽度并根据方面制作高度,但有时,图像现在最终会被说成250 x166。我不能使用它。

在那个原因它需要以相反的方式(高度到宽度)调整大小

脚本如何在不拉伸的情况下始终将最终图像设置为250 x 250。再说一遍,我不在乎是否有裁剪。我认为在某个地方会有一个别人,但现在这已经过了我的脑海。我更像是一个前端人物。

任何帮助都会很棒。

以下是我的完整脚本的相关部分:

$width = 250;
$height = true;

 // download and create gd image
 $image = ImageCreateFromString(file_get_contents($url));

 // calculate resized ratio
 // Note: if $height is set to TRUE then we automatically calculate the height based on the ratio
 $height = $height === true ? (ImageSY($image) * $width / ImageSX($image)) : $height;

 // create image 
 $output = ImageCreateTrueColor($width, $height);

 ImageCopyResampled($output, $image, 0, 0, 0, 0, $width, $height, ImageSX($image), ImageSY($image));

 // save image
 ImageJPEG($output, $destdir, 100); 
php resize crop aspect-ratio
1个回答
2
投票
    $newWidth = 250;
    $newHeight = 250;

    // download and create gd image
    $image = ImageCreateFromString(file_get_contents($url));
    $width = ImageSX($image);
    $height = ImageSY($image);

    $coefficient =  $newHeight / $height;

    if (($target_width / $width) > $coefficient) {
        $coefficient = $target_width / $width;
    }

    // create image
    $output = ImageCreateTrueColor($newWidth, $newHeight);

    ImageCopyResampled($output, $image, 0, 0, 0, 0, $width * $coefficient, $height * $coefficient, $width, $height);

   // save image
   ImageJPEG($output, $destdir, 100); 
© www.soinside.com 2019 - 2024. All rights reserved.