使用PHPTumb调整大小

时间:2015-02-06 09:22:27

标签: php phpthumb

我遇到了PHPThumb的问题,我的调整大小功能无法正常工作。 此函数必须将图像调整为DIV的最大尺寸x或y:

if($thumb_x_value>$thumb_y_value) { 
      $thumb->resize($thumb_x_value, $thumb_x_value)->save($url_fichier); 
    }
    else { 
      $thumb->resize($thumb_y_value, $thumb_y_value)->save($url_fichier); 
    }

图像未调整大小。

解决方案在这里吗?使用的路径是相对路径,因为文件存储在另一个文件夹中,而$ url是

../../../uploads/image.jpg

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

默认情况下不允许放大图片。

编辑GD Thumb.inc.php,第710行 进入SetOptions公共函数并将resizeUp false设置为true

$defaultOptions = array ( 
'resizeUp' => true

全部