gpt4 book ai didi

php - 如何在 PHP 中将用户输入的图像自动调整为特定尺寸?

转载 作者:可可西里 更新时间:2023-11-01 00:27:39 24 4
gpt4 key购买 nike

当用户输入他们的图像时,他们的图像是任意大小的。我希望能够将所有图像调整为特定尺寸。是否有允许我在 PHP 中执行此操作的函数?

谢谢

最佳答案

你需要的函数是imagecopyresampled ,也插入像素,(imagecopyresized 没有);
在我的代码中,我在这样的函数中使用它:

function resizeAndSavePhoto($original, $destination, $dest_width, $dest_height){    
$photo = createImage($original);
$size = getimagesize($original);

$final_photo = imagecreatetruecolor($dest_width, $dest_height);

imagecopyresampled($final_photo, $photo,0,0,0,0,$dest_width, $dest_height, $size[0], $size[1]);
imagejpeg($final_photo, $destination, 100);
}

$orignal$destination 是文件名路径

关于php - 如何在 PHP 中将用户输入的图像自动调整为特定尺寸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2517866/

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