Я загружаю изображение и это изображение, которое я оптимизирую, но получаю сообщение об ошибке «Нет такого файла или каталога». Я получаю сообщение об ошибке по приведенному ниже коду.
$source_img =basename($_FILES["fileToUpload"]["name"]);
Если я напишу $source_img = 'assets/img/login-bg.jpg';
тогда это работает. Я хочу загрузить изображение, а затем оптимизировать его.
Я получаю ошибку
Warning: getimagesize(demoimg.JPG): failed to open stream: No such file or directory in C:\xampp\htdocs\... on line 6
Notice: Undefined variable: image in C:\xampp\htdocs\... on line 17
Warning: imagejpeg() expects parameter 1 to be resource, null given in C:\xampp\htdocs\... on line 17
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>
PHP
function compress($source, $destination, $quality) {
$info = getimagesize($source);
if ($info['mime'] == 'image/jpeg')
$image = imagecreatefromjpeg($source);
elseif ($info['mime'] == 'image/gif')
$image = imagecreatefromgif($source);
elseif ($info['mime'] == 'image/png')
$image = imagecreatefrompng($source);
imagejpeg($image, $destination, $quality);
return $destination;
}
if(isset($_POST['submit'])){
$source_img =basename($_FILES["fileToUpload"]["name"]);
$temp = explode(".", $source_img);
$newfilename = round(microtime(true)) . '.' . end($temp);
$destination_img= "assets/$newfilename";
$d = compress($source_img, $destination_img, 90);
}
Попробуйте этот код PHP:
<?php
function compress($source, $destination, $quality) {
$info = getimagesize($source);
if ($info['mime'] == 'image/jpeg')
$image = imagecreatefromjpeg($source);
elseif ($info['mime'] == 'image/gif')
$image = imagecreatefromgif($source);
elseif ($info['mime'] == 'image/png')
$image = imagecreatefrompng($source);
imagejpeg($image, $destination, $quality);
return $destination;
}
if(isset($_POST['submit'])){
$source_img =$_FILES["fileToUpload"]["tmp_name"];
$source_img_name =basename($_FILES["fileToUpload"]["name"]);
$temp = explode(".", $source_img_name);
$newfilename = round(microtime(true)) . '.' . end($temp);
$destination_img= "assets/$newfilename";
$d = compress($source_img, $destination_img, 90);
}
?>
Надеюсь, поможет. Всего наилучшего!
Других решений пока нет …