用PHP压缩文件的问题

时间:2019-12-18 11:32:58

标签: php html file-get-contents

我想使用PHP代码压缩图像,因为我有一个示例,this

我尝试了一些代码,但是图像下载正确,但是没有压缩。

为此,我尝试了以下代码。

<div class="message">
    <?php
        if($_POST){
          	if ($error) {
            	?>
                <label class="error"><?php echo $error; ?></label>
                <?php
            }
        }
        ?>
</div>
<fieldset class="well">
    <legend>Upload Image:</legend>
    <form action="" name="myform" id="myform" method="post" enctype="multipart/form-data">
        <ul>
            <li>
                <label>Upload:</label>
                <input type="file" name="file" id="file"/>
            </li>
            <li>
                <input type="submit" name="submit" id="submit" class="submit btn-success"/>
            </li>
        </ul>
    </form>
</fieldset>

<?php
$name  = '';
$type  = '';
$size  = '';
$error = '';
function compress_image($source_url, $destination_url, $quality)
{
    $info = getimagesize($source_url);
    if ($info['mime'] == 'image/jpeg')
        $image = imagecreatefromjpeg($source_url);
    elseif ($info['mime'] == 'image/gif')
        $image = imagecreatefromgif($source_url);
    elseif ($info['mime'] == 'image/png')
        $image = imagecreatefrompng($source_url);
    imagejpeg($image, $destination_url, $quality);
    return $destination_url;
}
if ($_POST) {
    if ($_FILES["file"]["error"] > 0) {
        $error = $_FILES["file"]["error"];
    } 
    else if (($_FILES["file"]["type"] == "image/gif") || 
    ($_FILES["file"]["type"] == "image/jpeg") || 
    ($_FILES["file"]["type"] == "image/png") || 
    ($_FILES["file"]["type"] == "image/pjpeg")) {

    $url = $_FILES["file"]["name"];

    $filename = compress_image($_FILES["file"]["tmp_name"], "image/$url", 80);
    move_uploaded_file($_FILES["file"]["tmp_name"], "image/$url");
    $location = "image/".$url;
    if (file_exists($location))
    {
        header('Content-Description: File Transfer');
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment; filename='.basename($filename));
        header('Expires: 0');
        header('Cache-Control: must-revalidate');
        header('Pragma: public');
        header('Content-Length: ' . filesize($filename));
        ob_clean();
        flush();
        readfile($location);
        exit;
    }
    }else {
        $error = "Uploaded image should be jpg or gif or png";
    }
}
?>

但是当我运行此代码文件时,下载正确。

但是压缩不正确。

它告诉我一个错误

  

PHP警告:file_get_contents(destination.jpg):无法打开流:没有此类文件或目录

1 个答案:

答案 0 :(得分:0)

您的路径无效。在使用file_get_contents()之前,应始终检查文件是否确实存在于所选的路径(dir)中。您可以在这里how to check existence中找到。

例如,在将任何文件从客户端上传到PHP后,我在使用file_get_contents($_FILES['file']['tmp_name'])时都在使用该文件。

当然,我在做

if(!@is_uploaded_file($_FILES['file']['tmp_name']) || $_FILES['file']['size'] == 0) return;之前。

我建议你也做一些检查。否则,您的代码将损坏。