【发布时间】:2018-03-12 07:43:30
【问题描述】:
我尝试使用以下代码在多个文件夹中上传图片,但我遇到的问题是上传的图片显示为黑色。
主文件夹上传成功,缩略图文件夹显示黑色。
代码
$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION));
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
$check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
if($check !== false) {
echo "File is an image - " . $check["mime"] . ".";
$uploadOk = 1;
} else {
echo "File is not an image.";
$uploadOk = 0;
}
}
// Check if file already exists
if (file_exists($target_file)) {
echo "Sorry, file already exists.";
$uploadOk = 0;
}
// Check file size
if ($_FILES["fileToUpload"]["size"] > 500000) {
echo "Sorry, your file is too large.";
$uploadOk = 0;
}
// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
&& $imageFileType != "gif" ) {
echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
$uploadOk = 0;
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
$originalsFolder = "uploads/"; //original photos only
$thumbsFolder = "thumbnails/"; //thumbnails only -- 150
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
$fnam=$_FILES["fileToUpload"]["name"];
$q = "INSERT INTO testimage (id, image) VALUES (NULL, '".$fnam."')";
$query = mysqli_query($con,$q);
$file = $originalsFolder.$_FILES['fileToUpload']['name'];
createImageCopy($file, $thumbsFolder, 250);
}
}
以下是缩略图的回调函数
function createImageCopy($file, $folder, $newWidth){
list($width, $height) = getimagesize($file);
$imgRatio = $width/$height;
$newHeight = $newWidth/$imgRatio;
if($_FILES['fileToUpload']['type'] =="image/jpeg"){
$thumb = imagecreatetruecolor($newWidth, $newHeight);
$source = imagecreatefromjpeg($file);
}else if($_FILES['fileToUpload']['type'] == "image/png"){
$thumb = imagecreatetruecolor($newWidth, $newHeight);
$source = imagecreatefrompng($file);
}
if($newFileName = $folder.$_FILES['fileToUpload']['name']){
imagejpeg($thumb,$newFileName,80);
}else if($newFileName = $folder.$_FILES['fileToUpload']['name']){
imagepng($thumb,$newFileName,8);
}
imagedestroy($source);
imagedestroy($thumb);
}
HTML 代码
<form action="" method="post" enctype="multipart/form-data">
Select image to upload:
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" value="Upload Image" name="submit">
</form>
上传图片有2个文件夹
1)上传(它工作正常,上传的图像也显示)
2) 缩略图(上传图片成功但it's showing black image)
我尝试了很多方法,但没有找到任何方法,如果有人知道更多,请帮助我。
【问题讨论】:
标签: php html file-upload