【发布时间】:2011-03-02 21:11:42
【问题描述】:
这个函数会创建一些随机的黑色图像,比如 10% 的时间, 不多,但是..你知道..不应该发生。
class ImgResizer {
private $originalFile = '';
public function __construct($originalFile = '') {
$this -> originalFile = $originalFile;
}
public function resize($newWidth, $targetFile) {
if (empty($newWidth) || empty($targetFile)) {
return false;
}
$src = imagecreatefromjpeg($this -> originalFile);
list($width, $height) = getimagesize($this -> originalFile);
$newHeight = ($height / $width) * $newWidth;
if ($newHeight<'335') {
//$newHeight='335';
}
$tmp = imagecreatetruecolor($newWidth, $newHeight);
#$tmp = imagecreate($newWidth, $newHeight);
imagecopyresampled($tmp, $src, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height);
if (file_exists($targetFile)) {
unlink($targetFile);
}
imagejpeg($tmp, $targetFile, 85); // 85 is my choice, make it between 0 – 100 for output image quality with 100 being the most luxurious
}
}
error_log 中没有给出错误。这里是 gd_info():
Array(
[GD Version] => bundled (2.0.34 compatible)
[FreeType Support] =>
[T1Lib Support] =>
[GIF Read Support] => 1
[GIF Create Support] => 1
[JPG Support] => 1
[PNG Support] => 1
[WBMP Support] => 1
[XPM Support] => 1
[XBM Support] => 1
[JIS-mapped Japanese Font Support] => )1
服务器是linux。函数被这样调用: 假设 $imagen 是实际的源图像,$imagendestino 是新缩略图的路径和文件名。
if (!file_exists($imagendestino)) {
$work = new ImgResizer($imagen);
$work -> resize(475, $imagendestino);
}
提前致谢!
【问题讨论】:
-
你确定你启用了错误日志吗?
-
失败是确定性的吗? IE。同一个输入文件的输出总是一样的吗?