使用 PHP 按比例调整图像大小

发布于 2024-08-23 02:43:49 字数 61 浏览 4 评论 0原文

假设我有一些方形图像,我想将其调整为比例为 16:9 的矩形图像。使用 PHP 实现此目的的最佳方法是什么?

Say I've got some square images which I want to resize to rectangle images with the ratio 16:9. What is the best way to do it using PHP?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

┾廆蒐ゝ 2024-08-30 02:43:50

您可以使用imagecopyresampled(资源$ dst_image,资源$ src_image,int $ dst_x,int $ dst_y,int $ src_x,int $ src_y,int $ dst_w,int $ dst_h,int $ src_w,int $ src_h)

更多信息请访问 https://www.php.net/imagecopyresampled

you could use imagecopyresampled ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h )

more at https://www.php.net/imagecopyresampled

Spring初心 2024-08-30 02:43:50

试试这个...不使用 GD,但我认为它对你有用。

<?php
function Image($image, $crop = null, $size = null) {
$image = ImageCreateFromString(file_get_contents($image));

 if (is_resource($image) === true) {
$x = 0;
$y = 0;
$width = imagesx($image);
$height = imagesy($image);

/*
CROP (Aspect Ratio) Section
*/

if (is_null($crop) === true) {
    $crop = array($width, $height);
} else {
    $crop = array_filter(explode(':', $crop));

    if (empty($crop) === true) {
            $crop = array($width, $height);
    } else {
        if ((empty($crop[0]) === true) || (is_numeric($crop[0]) === false)) {
                $crop[0] = $crop[1];
        } else if ((empty($crop[1]) === true) || (is_numeric($crop[1]) === false)) {
                $crop[1] = $crop[0];
        }
    }

    $ratio = array(0 => $width / $height, 1 => $crop[0] / $crop[1]);

    if ($ratio[0] > $ratio[1]) {
        $width = $height * $ratio[1];
        $x = (imagesx($image) - $width) / 2;
    }

    else if ($ratio[0] < $ratio[1]) {
        $height = $width / $ratio[1];
        $y = (imagesy($image) - $height) / 2;
    }

}

/*
Resize Section
*/

if (is_null($size) === true) {
    $size = array($width, $height);
}

else {
    $size = array_filter(explode('x', $size));

    if (empty($size) === true) {
            $size = array(imagesx($image), imagesy($image));
    } else {
        if ((empty($size[0]) === true) || (is_numeric($size[0]) === false)) {
                $size[0] = round($size[1] * $width / $height);
        } else if ((empty($size[1]) === true) || (is_numeric($size[1]) === false)) {
                $size[1] = round($size[0] * $height / $width);
        }
    }
}

  $result = ImageCreateTrueColor($size[0], $size[1]);

if (is_resource($result) === true) {
    ImageSaveAlpha($result, true);
    ImageAlphaBlending($result, true);
    ImageFill($result, 0, 0, ImageColorAllocate($result, 255, 255, 255));
    ImageCopyResampled($result, $image, 0, 0, $x, $y, $size[0], $size[1], $width, $height);

    ImageInterlace($result, true);
    ImageJPEG($result, null, 90);
}
}

return false;
 }

header('Content-Type: image/jpeg');
 Image('image.jpg', '2:1', '1200x');

?>

Try this... Not Using GD but i think it will work for u.

<?php
function Image($image, $crop = null, $size = null) {
$image = ImageCreateFromString(file_get_contents($image));

 if (is_resource($image) === true) {
$x = 0;
$y = 0;
$width = imagesx($image);
$height = imagesy($image);

/*
CROP (Aspect Ratio) Section
*/

if (is_null($crop) === true) {
    $crop = array($width, $height);
} else {
    $crop = array_filter(explode(':', $crop));

    if (empty($crop) === true) {
            $crop = array($width, $height);
    } else {
        if ((empty($crop[0]) === true) || (is_numeric($crop[0]) === false)) {
                $crop[0] = $crop[1];
        } else if ((empty($crop[1]) === true) || (is_numeric($crop[1]) === false)) {
                $crop[1] = $crop[0];
        }
    }

    $ratio = array(0 => $width / $height, 1 => $crop[0] / $crop[1]);

    if ($ratio[0] > $ratio[1]) {
        $width = $height * $ratio[1];
        $x = (imagesx($image) - $width) / 2;
    }

    else if ($ratio[0] < $ratio[1]) {
        $height = $width / $ratio[1];
        $y = (imagesy($image) - $height) / 2;
    }

}

/*
Resize Section
*/

if (is_null($size) === true) {
    $size = array($width, $height);
}

else {
    $size = array_filter(explode('x', $size));

    if (empty($size) === true) {
            $size = array(imagesx($image), imagesy($image));
    } else {
        if ((empty($size[0]) === true) || (is_numeric($size[0]) === false)) {
                $size[0] = round($size[1] * $width / $height);
        } else if ((empty($size[1]) === true) || (is_numeric($size[1]) === false)) {
                $size[1] = round($size[0] * $height / $width);
        }
    }
}

  $result = ImageCreateTrueColor($size[0], $size[1]);

if (is_resource($result) === true) {
    ImageSaveAlpha($result, true);
    ImageAlphaBlending($result, true);
    ImageFill($result, 0, 0, ImageColorAllocate($result, 255, 255, 255));
    ImageCopyResampled($result, $image, 0, 0, $x, $y, $size[0], $size[1], $width, $height);

    ImageInterlace($result, true);
    ImageJPEG($result, null, 90);
}
}

return false;
 }

header('Content-Type: image/jpeg');
 Image('image.jpg', '2:1', '1200x');

?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文