php - 上传时压缩图片大小-PHP

标签 php image

我正在将屏幕截图上传到我的网站。 我只想上传具有相同宽度和高度属性的原始图像我只想减小其大小,例如,如果上传前的图像大小为 3 MB,则在上传/保存后它必须为 300 KB 但在我的情况下生成图像没有显示完全空白的图像。

下面是我用来上传文件的代码..

<form action="" method="post" enctype="multipart/form-data" id="something" class="uniForm">
    <input name="new_image" id="new_image" size="30" type="file" class="fileUpload" />
    <button name="submit" type="submit" class="submitButton">Upload/Resize Image</button>

<?php
    if(isset($_POST['submit'])){
      if (isset ($_FILES['new_image'])){
          $imagename = $_FILES['new_image']['name'];
          $source = $_FILES['new_image']['tmp_name'];
          $target = "images/".$imagename;
          move_uploaded_file($source, $target);

          $imagepath = $imagename;
          $save = "images/" . $imagepath; //This is the new file you saving
          $file = "images/" . $imagepath; //This is the original file

          list($width, $height) = getimagesize($file) ; 


          $tn = imagecreatetruecolor($width, $height) ; 
          $image = imagecreatefromjpeg($file) ; 
          imagecopyresampled($tn, $image, 0, 0, 0, 0, $width, $height, $width, $height) ; 

          imagejpeg($tn, $save, 70) ; 

          $save = "images/sml_" . $imagepath; //This is the new file you saving
          $file = "images/" . $imagepath; //This is the original file

          list($width, $height) = getimagesize($file) ; 

          $modwidth = 130; 

          $diff = $width / $modwidth;

          $modheight = 185; 
          $tn = imagecreatetruecolor($modwidth, $modheight) ; 
          $image = imagecreatefromjpeg($file) ; 
          imagecopyresampled($tn, $image, 0, 0, 0, 0, $modwidth, $modheight, $width, $height) ; 

          imagejpeg($tn, $save, 70) ; 
        echo "Large image: <img src='images/".$imagepath."'><br>"; 
        echo "Thumbnail: <img src='images/sml_".$imagepath."'>"; 

      }
    } ?>

如果我上传 jpg 图像,它工作正常/但不适用于其他人 我想将它用于每种图像类型

最佳答案

对于类型检测,请使用以下代码和说明。

<?php
function imageCreateFromAny($filepath) {
    $type = exif_imagetype($filepath); // [] if you don't have exif you could use getImageSize()
    $allowedTypes = array(
        1,  // [] gif
        2,  // [] jpg
        3,  // [] png
        6   // [] bmp
    );
    if (!in_array($type, $allowedTypes)) {
        return false;
    }
    switch ($type) {
        case 1 :
            $im = imageCreateFromGif($filepath);
        break;
        case 2 :
            $im = imageCreateFromJpeg($filepath);
        break;
        case 3 :
            $im = imageCreateFromPng($filepath);
        break;
        case 6 :
            $im = imageCreateFromBmp($filepath);
        break;
    }   
    return $im; 
}
?>

关于php - 上传时压缩图片大小-PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22110688/

相关文章:

WPF - 动态修改图像颜色 (C#)

php - AWS EC2 RDS无法连接到mysql

php - Yii CRedisCache.php 将使用哪种 redis 数据类型进行缓存存储?

php - 将 "with\"替换为 Dotrine 1.2

PHP: session 变量丢失, session ID 更改(使用 Ajax)

jquery 事件不适用于 append 元素

python - 如何在 Canvas Python Tkinter 中居中图像

c++ - 我是否在 WinApi 中正确执行动画?

php - 为什么这段代码显示所有评论?

java - JLabel图片显示问题