duanqin7791 2018-03-28 12:28
浏览 58
已采纳

我想在用户使用PHP和ImageManipulator库上传时调整配置文件图像的大小

I programmed a profile image system to let the users upload there own profile image and I want to resize the uploaded image to certain width and height this is the code am-using

function user_prof_img($image_temp,$image_extn,$conn){
  include_once 'ImageManipulator.php';
  ob_start();
  $username_id = $_SESSION['id'];
  $manipulator = new ImageManipulator($_FILES['profile_imge']['tmp_name']);
  $newImage = $manipulator->resample(200, 200);
  $newNamePrefix = time() . '_';
   $manipulator->save('../profile_image/'
    . $newNamePrefix . $_FILES['profile_imge']['name'] . '.' . $image_extn);
$image_path = '../profile_image/' . substr(md5(time()), 0 , 10) . '.' . $image_extn;
move_uploaded_file($image_temp,$image_path);
$update_img = "UPDATE users SET profile_img = '$image_path' WHERE users.id='$username_id'";
$updated_img = mysqli_query($conn,$update_img);
if (!$updated_img) {
echo "sorry an error happens while we processes your image please try again later";
}else {
  header("Location: ../browser-games/index");
}
}

if (isset($_POST['submit_img'])) {
  if (empty($_FILES['profile_imge']['name']) === true) {
    echo "<script>alert('please choose an image to upload')</script>";
  }else {
  $allowed = array('jpg','jpeg','png');
  $image_name = $_FILES['profile_imge']['name'];
  $image_extn = strtolower(end(explode('.', $image_name)));
  $image_size = $_FILES['profile_imge']['size'];
  $image_temp = $_FILES['profile_imge']['tmp_name'];
if (in_array($image_extn,$allowed) === true) {
user_prof_img($image_temp,$image_extn,$conn);
}else {
echo "<script>alert('incorrect image type. allowed: ".implode(', ', $allowed)."')</script>";
}


  }

}

the page that the profile image appears in

    <?php
                             if(isset($_SESSION['id'])){
                                 $username_id = $_SESSION['id'];
$select_img = "SELECT * FROM users WHERE users.id=$username_id";
$get_img = mysqli_query($conn,$select_img);
if (!$get_img) {
    echo "sorry we are unable to pull in data from our database at this moment please try again later";
}else {
 if ($img_row = mysqli_fetch_assoc($get_img)){
        if (empty($img_row['profile_img']) === false) {
             echo '<div class="prof_img_con">
             <img src="'.$img_row['profile_img'].'" alt="'.$img_row['username'].'" class="prof_img">

             </div>';
        }else {
            echo '
            <form action="" method="POST" enctype="multipart/form-data">
            <label for="file"class="file_label">
            <div class="prof_img_con"><img src="../profile_image/avatar.png" class="prof_img"
            title="Upload Profile Image"></div>
            </label>
    <input type="file" name="profile_imge" id="file" value="update image">
    <div class="submit_con">
    <label for="sub_img" class="sub_img" id="img_label">Submit Image</label>
    <input type="submit" id="sub_img" name="submit_img">
    </div>
            ';
            include "../include/profile_img.php";
        }
 }else {
     echo "<script><alert(sorry an error just happens please refresh the page or try again later)</script>";
 }
}

th ImageManipulator code goes under here

<?php
class ImageManipulator
{
    /**
     * @var int
     */
    protected $width;

    /**
     * @var int
     */
    protected $height;

    /**
     * @var resource
     */
    protected $image;

    /**
     * Image manipulator constructor
     * 
     * @param string $file OPTIONAL Path to image file or image data as string
     * @return void
     */
    public function __construct($file = null)
    {
        if (null !== $file) {
            if (is_file($file)) {
                $this->setImageFile($file);
            } else {
                $this->setImageString($file);
            }
        }
    }

    /**
     * Set image resource from file
     * 
     * @param string $file Path to image file
     * @return ImageManipulator for a fluent interface
     * @throws InvalidArgumentException
     */
    public function setImageFile($file)
    {
        if (!(is_readable($file) && is_file($file))) {
            throw new InvalidArgumentException("Image file $file is not readable");
        }

        if (is_resource($this->image)) {
            imagedestroy($this->image);
        }

        list ($this->width, $this->height, $type) = getimagesize($file);

        switch ($type) {
            case IMAGETYPE_GIF  :
                $this->image = imagecreatefromgif($file);
                break;
            case IMAGETYPE_JPEG :
                $this->image = imagecreatefromjpeg($file);
                break;
            case IMAGETYPE_PNG  :
                $this->image = imagecreatefrompng($file);
                break;
            default             :
                throw new InvalidArgumentException("Image type $type not supported");
        }

        return $this;
    }

    /**
     * Set image resource from string data
     * 
     * @param string $data
     * @return ImageManipulator for a fluent interface
     * @throws RuntimeException
     */
    public function setImageString($data)
    {
        if (is_resource($this->image)) {
            imagedestroy($this->image);
        }

        if (!$this->image = imagecreatefromstring($data)) {
            throw new RuntimeException('Cannot create image from data string');
        }
        $this->width = imagesx($this->image);
        $this->height = imagesy($this->image);
        return $this;
    }

    /**
     * Resamples the current image
     *
     * @param int  $width                New width
     * @param int  $height               New height
     * @param bool $constrainProportions Constrain current image proportions when resizing
     * @return ImageManipulator for a fluent interface
     * @throws RuntimeException
     */
    public function resample($width, $height, $constrainProportions = true)
    {
        if (!is_resource($this->image)) {
            throw new RuntimeException('No image set');
        }
        if ($constrainProportions) {
            if ($this->height >= $this->width) {
                $width  = round($height / $this->height * $this->width);
            } else {
                $height = round($width / $this->width * $this->height);
            }
        }
        $temp = imagecreatetruecolor($width, $height);
        imagecopyresampled($temp, $this->image, 0, 0, 0, 0, $width, $height, $this->width, $this->height);
        return $this->_replace($temp);
    }

    /**
     * Enlarge canvas
     * 
     * @param int   $width  Canvas width
     * @param int   $height Canvas height
     * @param array $rgb    RGB colour values
     * @param int   $xpos   X-Position of image in new canvas, null for centre
     * @param int   $ypos   Y-Position of image in new canvas, null for centre
     * @return ImageManipulator for a fluent interface
     * @throws RuntimeException
     */
    public function enlargeCanvas($width, $height, array $rgb = array(), $xpos = null, $ypos = null)
    {
        if (!is_resource($this->image)) {
            throw new RuntimeException('No image set');
        }

        $width = max($width, $this->width);
        $height = max($height, $this->height);

        $temp = imagecreatetruecolor($width, $height);
        if (count($rgb) == 3) {
            $bg = imagecolorallocate($temp, $rgb[0], $rgb[1], $rgb[2]);
            imagefill($temp, 0, 0, $bg);
        }

        if (null === $xpos) {
            $xpos = round(($width - $this->width) / 2);
        }
        if (null === $ypos) {
            $ypos = round(($height - $this->height) / 2);
        }

        imagecopy($temp, $this->image, (int) $xpos, (int) $ypos, 0, 0, $this->width, $this->height);
        return $this->_replace($temp);
    }

    /**
     * Crop image
     * 
     * @param int|array $x1 Top left x-coordinate of crop box or array of coordinates
     * @param int       $y1 Top left y-coordinate of crop box
     * @param int       $x2 Bottom right x-coordinate of crop box
     * @param int       $y2 Bottom right y-coordinate of crop box
     * @return ImageManipulator for a fluent interface
     * @throws RuntimeException
     */
    public function crop($x1, $y1 = 0, $x2 = 0, $y2 = 0)
    {
        if (!is_resource($this->image)) {
            throw new RuntimeException('No image set');
        }
        if (is_array($x1) && 4 == count($x1)) {
            list($x1, $y1, $x2, $y2) = $x1;
        }

        $x1 = max($x1, 0);
        $y1 = max($y1, 0);

        $x2 = min($x2, $this->width);
        $y2 = min($y2, $this->height);

        $width = $x2 - $x1;
        $height = $y2 - $y1;

        $temp = imagecreatetruecolor($width, $height);
        imagecopy($temp, $this->image, 0, 0, $x1, $y1, $width, $height);

        return $this->_replace($temp);
    }

    /**
     * Replace current image resource with a new one
     * 
     * @param resource $res New image resource
     * @return ImageManipulator for a fluent interface
     * @throws UnexpectedValueException
     */
    protected function _replace($res)
    {
        if (!is_resource($res)) {
            throw new UnexpectedValueException('Invalid resource');
        }
        if (is_resource($this->image)) {
            imagedestroy($this->image);
        }
        $this->image = $res;
        $this->width = imagesx($res);
        $this->height = imagesy($res);
        return $this;
    }

    /**
     * Save current image to file
     * 
     * @param string $fileName
     * @return void
     * @throws RuntimeException
     */
    public function save($fileName, $type = IMAGETYPE_JPEG)
    {
        $dir = dirname($fileName);
        if (!is_dir($dir)) {
            if (!mkdir($dir, 0755, true)) {
                throw new RuntimeException('Error creating directory ' . $dir);
            }
        }

        try {
            switch ($type) {
                case IMAGETYPE_GIF  :
                    if (!imagegif($this->image, $fileName)) {
                        throw new RuntimeException;
                    }
                    break;
                case IMAGETYPE_PNG  :
                    if (!imagepng($this->image, $fileName)) {
                        throw new RuntimeException;
                    }
                    break;
                case IMAGETYPE_JPEG :
                default             :
                    if (!imagejpeg($this->image, $fileName, 95)) {
                        throw new RuntimeException;
                    }
            }
        } catch (Exception $ex) {
            throw new RuntimeException('Error saving image file to ' . $fileName);
        }
    }

    /**
     * Returns the GD image resource
     *
     * @return resource
     */
    public function getResource()
    {
        return $this->image;
    }

    /**
     * Get current image resource width
     *
     * @return int
     */
    public function getWidth()
    {
        return $this->width;
    }

    /**
     * Get current image height
     *
     * @return int
     */
    public function getHeight()
    {
        return $this->height;
    }
}

with this code am getting both the resized image and the original image but the original image is shown on my page instead of the resized image. how can I show the resized image and delete the original image automatically? and thanks for the help

  • 写回答

1条回答 默认 最新

  • duandou8457 2018-03-28 13:57
    关注

    Long story short is that you're saving the original file ($image_path) to the user's profile when you should be saving the resized image's path.

    I created 2 new variables which are then used below. This makes the code a bit cleaner and easier to read: $smallPath and $originalPath which are used by the ImageManipulator and DB respectively.

    You can also use tempnam() (http://php.net/manual/en/function.tempnam.php) as opposed to writing unique name logic yourself.

    I should also point out that your DB query is wide open to SQL Injection attacks. I did not modify this for you.

    include_once 'ImageManipulator.php';
    ob_start();
    $username_id = $_SESSION['id'];
    $manipulator = new ImageManipulator($_FILES['profile_imge']['tmp_name']);
    $newImage = $manipulator->resample(200, 200);
    $newNamePrefix = time() . '_';
    
    // You can use tempnam() to do the unique logic for you. 
    $smallPath = '../profile_image/' . $newNamePrefix . $_FILES['profile_imge']['name'] . '.' . $image_extn;
    $originalPath = '../profile_image/' . substr(md5(time()), 0 , 10) . '.' . $image_extn;
    
    $manipulator->save($smallPath);
    move_uploaded_file($image_temp, $originalPath);
    
    // This is very dangerous. You **need to be using prepared statements.
    // Lookup PDO - https://phpdelusions.net/pdo
    $update_img = "UPDATE users SET profile_img = '$smallPath' WHERE users.id='$username_id'";
    $updated_img = mysqli_query($conn,$update_img);
    ...
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题