gpt4 book ai didi

PHP上传和调整图像大小

转载 作者:可可西里 更新时间:2023-11-01 13:17:04 25 4
gpt4 key购买 nike

我正在编写一个使用 PHP 上传图片的脚本,我想让它在保存之前将图片的宽度调整为 180。
我尝试使用 WideImage 库和 ->saveFileTO(...) 但是当我在页面中包含 WideImage.php 时,页面变为空白!!
所以这是我的脚本,如果你能帮助我并告诉我如何保存调整大小的版本

最佳答案

您可以使用 PHP GD library在上传时调整图像大小。

以下代码应该让您了解如何实现调整大小:

// Get the image info from the photo
$image_info = getimagesize($photo);
$width = $new_width = $image_info[0];
$height = $new_height = $image_info[1];
$type = $image_info[2];

// Load the image
switch ($type)
{
case IMAGETYPE_JPEG:
$image = imagecreatefromjpeg($photo);
break;
case IMAGETYPE_GIF:
$image = imagecreatefromgif($photo);
break;
case IMAGETYPE_PNG:
$image = imagecreatefrompng($photo);
break;
default:
die('Error loading '.$photo.' - File type '.$type.' not supported');
}

// Create a new, resized image
$new_width = 180;
$new_height = $height / ($width / $new_width);
$new_image = imagecreatetruecolor($new_width, $new_height);
imagecopyresampled($new_image, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);

// Save the new image over the top of the original photo
switch ($type)
{
case IMAGETYPE_JPEG:
imagejpeg($new_image, $photo, 100);
break;
case IMAGETYPE_GIF:
imagegif($new_image, $photo);
break;
case IMAGETYPE_PNG:
imagepng($new_image, $photo);
break;
default:
die('Error saving image: '.$photo);
}

关于PHP上传和调整图像大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2159897/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com