gpt4 book ai didi

php - 您的服务器不支持处理此类图片所需的 GD 功能

转载 作者:行者123 更新时间:2023-12-02 05:17:46 24 4
gpt4 key购买 nike

你的服务器不支持处理这类图片所需的GD函数。砸了我的脑袋。我不明白哪一部分是错的!路径应该是准确的。

鉴于源图像是resources/images/upload/BAACN_13853.jpeg

for($i=0; $i<count($result); $i++){
if($result[$i]['condition'] == "Success"){
//**************** RESIZE *******************/

$config['image_library'] = 'GD2';
$config['source_image'] = $result[$i]['msg'];
$config['new_image'] = "/resources/images/upload_thumb/";
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = TRUE;
if($width != NULL || $width != 0){
$config['width'] = $width;
}
if($width != NULL || $width != 0){
$config['height'] = $height;
}

$this->load->library('image_lib', $config);

if($this->image_lib->resize()){
echo $result[$i]['msg']." resized successfully.<br>";
}else{
echo $result[$i]['msg']." resized failed!!<br>";
};
$this->image_lib->clear();
}else{

echo $result[$i]['msg']."<br>";
}
}

最佳答案

要解决此问题,请删除开头的 正斜杠,如下所示:

$config['source_image'] = $result[$i]['msg'];
$config['new_image'] = "/resources/images/upload_thumb/";

确保 $result[$i]['msg'] 不以正斜杠开头

关于php - 您的服务器不支持处理此类图片所需的 GD 功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23362142/

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