这几天我一直在想办法解决这个问题。我需要上传一张图片,将其裁剪为正方形,调整为 300x300,然后调整为 150x150,上传到我的“uploads/products/$id/”文件夹,然后将文件路径推入 mysql 数据库。
但是,我不断输出黑色图像。这个脚本有什么问题?
$ext = explode('.', $_FILES['image1']['name']);
$extension = $ext[1];
$target_path = 'uploads/products/'.$id.'/';
$filename = 'featuredpic.'.$extension;
$featured100_full_path = $target_path.$filename;
if(!is_dir('../../../uploads/products/'.$id)){
mkdir('../../../uploads/products/'.$id, 0777);
}
if(file_exists('../../../'.$featured100_full_path)) {
chmod('../../../'.$featured100_full_path, 0755);
unlink('../../../'.$featured100_full_path);
}
if(!move_uploaded_file($_FILES['image1']['tmp_name'], '../../../'.$featured100_full_path)){
echo 'Error: Image Not Uploaded!';
}
if($extension=="jpg" || $extension=="jpeg" ){
$uploadedfile = $_FILES['image1']['tmp_name'];
$src = imagecreatefromjpeg($uploadedfile);
}
else if($extension=="png"){
$uploadedfile = $_FILES['image1']['tmp_name'];
$src = imagecreatefrompng($uploadedfile);
} else {
$src = imagecreatefromgif($uploadedfile);}
list($width, $height) = getimagesize($filename);
$newwidth = 300;
$newheight = 300;
$featured300 = imagecreatetruecolor($newwidth, $newheight);
$newwidth1 = 150;
$newheight1 = 150;
$featuredthumb = imagecreatetruecolor($newwidth1, $newheight1);
imagecopyresampled($featured300,$src,0,0,0,0,$newwidth,$newheight,$width,$height);
imagecopyresampled($featuredthumb,$src,0,0,0,0,$newwidth1,$newheight1,$width,$height);
$filename_featured300 = 'uploads/products/'.$id.'/featured300.'.$extension;
$filename_featuredthumb = 'uploads/products/'.$id.'/featuredthumb.'.$extension;
imagejpeg($featured300, '../../../'.$filename_featured300,100);
imagejpeg($featuredthumb, '../../../'.$filename_featuredthumb,100);
imagedestroy($src);
imagedestroy($tmp);
imagedestroy($tmp1);