Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
它适用于 Xampp localhost ,但是当我在我的服务器上尝试时,它不起作用。
require_once "lib/WideImage.php"; $img = WideImage::load('i/big.jpg'); $res = $img ->resize(400, 300); $res->saveToFile("i/small.jpg");
服务器版本:5.1.61-0ubuntu0.10.10.1
gd安装在服务器上。
经过一番研究,我发现了这一点:
WideImage 是一个面向对象的图像处理库。它需要带有 GD2 扩展的PHP 5.2+ 。
但是您服务器上的 php 版本是 <5.2 更新它会对您有所帮助。
也许问题出在权限上(您没有创建新文件的权限)。