0
我得到的時候從腳本我使用創建縮略圖Imagepng功能不太工作
警告以下錯誤信息:imagepng()[function.imagepng]:無法打開「漫畫/海賊王/ ASD /縮略圖」寫作:是在/homez.380/mangasma/www/mangaUpload.php目錄上線220
這就是行導致錯誤
imagepng($dst_img,$dir);
,這裏是方法
function createthumb($source,$output,$new_w,$new_h)
{
$dirpos=strrpos($output,"/");
$dir= substr($output,0,$dirpos);
if(!file_exists($dir))
{
mkdir($dir);
chmod($dir,0775);
}else
{
chmod($dir,0775);
}
$ext=explode(".",$source);
$ext=$ext[count($ext)-1];
$ext=strtolower($ext);
if (preg_match("/jpg|jpeg/",$ext)){$src_img=imagecreatefromjpeg($source);}
if (preg_match("/png/",$ext)){$src_img=imagecreatefrompng($source);}
if (preg_match("/gif/",$ext)){$src_img=imagecreatefromgif($source);}
echo $src_img;
$old_x=imageSX($src_img);
$old_y=imageSY($src_img);
if ($old_x > $old_y)
{
$thumb_w=$new_w;
$thumb_h=$old_y*($new_h/$old_x);
}
if ($old_x < $old_y)
{
$thumb_w=$old_x*($new_w/$old_y);
$thumb_h=$new_h;
}
if ($old_x == $old_y)
{
$thumb_w=$new_w;
$thumb_h=$new_h;
}
$dst_img=ImageCreateTrueColor($thumb_w,$thumb_h);
imagecopyresampled($dst_img,$src_img,0,0,0,0,$thumb_w,$thumb_h,$old_x,$old_y);
if (preg_match("/png/",$ext))
{
imagepng($dst_img,$dir);
}
elseif (preg_match("/gif/",$ext))
{
imagegif($dst_img,$dir);
} elseif (preg_match("/jpg|jpeg/",$ext)) {
imagejpeg($dst_img,$dir);
}
imagedestroy($dst_img);
imagedestroy($src_img);
return array("w"=>$thumb_w,"h"=>$thumb_h);
}
文件夾權限正確,但仍然沒有寫入的部分。 – dbomb101 2010-12-08 14:51:27