PHP之图片上传类(加了缩略图)

有缩略图功能 但是 感觉不全面,而且有点问题,继续学习,将来以后修改下

<form action="<?php $_SERVER[‘PHP_SELF‘]; ?>" enctype="multipart/form-data" method="post" ><input type="text" name="name" /><input type="file" name="file" /><input type="submit"  name=‘submit‘ value="提交" ></form>

<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2016/6/28
 * Time: 21:04
 */

class upload{
      protected  $fileMine;//文件上传类型
      protected  $filepath;//文件上传路径
      protected  $filemax;//文件上传大小
      protected  $fileExt;//文件上传格式
      protected  $filename;//文件名
      protected  $fileerror;//文件出错设置
      protected  $fileflag;//文件检测
      protected  $fileinfo; //FILES
      protected  $ext;  //文件扩展
      protected  $path;

    //文件上传
    public function __construct($filename="file",$filemax=20000000,$filepath="./Uploads",$fileflag=true,$fileExt=array(‘jpg‘,‘exe‘),$fileMine=array(‘image/jpeg‘))
    {
        $this->filename=$filename;
        $this->fileinfo=$_FILES[$this->filename];
        $this->filemax=$filemax;
        $this->filepath=$filepath;
        $this->fileflag=$fileflag;
        $this->fileExt=$fileExt;
        $this->fileMine=$fileMine;

        //var_dump($this->filename);

    }

    //错误判断
    public function UpError(){

            if($this->fileinfo[‘error‘]>0){
                switch($this->fileinfo[‘error‘])
                {
                    case 1:
                    $this->fileerror="上传文件大小超过服务器允许上传的最大值,php.ini中设置upload_max_filesize选项限制的值 ";
                        break;
                    case 2:
                        $this->fileerror="上传文件大小超过HTML表单中隐藏域MAX_FILE_SIZE选项指定的值";
                        break;
                    case 3:
                        $this->fileerror="文件部分被上传";
                        break;
                    case 4:
                        $this->fileerror="没有选择上传文件";
                        break;
                    case 5:
                        $this->fileerror="未找到临时目录";
                        break;
                    case 6:
                        $this->fileerror="文件写入失败";
                        break;
                    case 7:
                        $this->fileerror="php文件上传扩展没有打开 ";
                        break;
                    case 8:
                        $this->fileerror="";
                        break;

                }
                return false;
            }
            return true;

    }

    //检测文件类型
    public function UpMine(){
        if(!in_array($this->fileinfo[‘type‘],$this->fileMine)) {
            $this->error="文件上传类型不对";
            return false;
        }
        return true;

    }
    //检测文件格式
    public function UpExt(){
        $this->ext=pathinfo($this->fileinfo[‘name‘],PATHINFO_EXTENSION);
        //var_dump($ext);
        if(!in_array($this->ext,$this->fileExt)){
            $this->fileerror="文件格式不对";
            return false;
        }
       return true;
    }
    //检测文件路径
    public function UpPath(){
        if(!file_exists($this->filepath)){
            mkdir($this->filepath,0777,true);
        }
    }
    //检测文件大小
    public function UpSize(){
        $max=$this->fileinfo[‘size‘];
        if($max>$this->filemax){
            $this->fileerror="文件过大";
            return false;
        }
        return true;
    }
    //检测文件是否HTTP
    public function UpPost(){
        if(!is_uploaded_file($this->fileinfo[‘tmp_name‘])){
            $this->fileerror="恶意上偿还";
            return false;
        }
        return true;
    }
    //文件名防止重复
    public function Upname(){
        return md5(uniqid(microtime(true),true));
    }

    //图片缩略图
    public function Smallimg($x=100,$y=100){
        $imgAtt=getimagesize($this->path);
        //图像宽,高,类型
        $imgWidth=$imgAtt[0];
        $imgHeight=$imgAtt[1];
        $imgext=$imgAtt[2];
        //等比列缩放

        if(($x/$imgWidth)>($y/$imgHeight)){
            $bl=$y/$imgHeight;
        }else{
            $bl=$x/$imgWidth;
        }
        $x=floor($imgWidth*$bl);  //缩放后
        $y=floor($imgHeight*$bl);
        $images=imagecreatetruecolor($x,$y);
        $big=imagecreatefromjpeg($this->path);
        imagecopyresized($images,$big,0,0,0,0,$x,$y,$imgWidth,$imgWidth);
        switch($imgext){
            case 1:
                $imageout=imagecreatefromgif($this->path);
                break;
            case 2:
                $imageout=imagecreatefromjpeg($this->path);
                break;
            case 3:
                $imageout=imagecreatefromgif($this->path);
                break;
        }
        $im=imagejpeg($images,$this->path);

    }

    //文件双传
    public function uploads()
    {
        if($this->UpError()&&$this->UpMine()&&$this->UpExt()&&$this->UpSize()&&$this->UpPost()){
            $this->UpPath();
            $names=$this->Upname();
            $this->path=$this->filepath.‘/‘. $names.‘.‘.$this->ext;

            if(move_uploaded_file($this->fileinfo[‘tmp_name‘], $this->path)){
                return  $this->path;
            }else{
                $this->fileerror="上传失败";
            }
        }else{
            exit("<b>".$this->fileerror."</b>");
        }
    }

}

?>

  

<?php
   header("content-type:imagejpeg");
header("Content-type:text/html;charset=utf-8");
  require ‘list.php‘;
  $u=new upload();
  $a=$u->uploads();

  $c=$u->Smallimg();
echo "<img src={$a} />";
echo "<img src={$c} />";

?>

  

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Examples</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
</head>
<body>
    <form action="ce.php" enctype="multipart/form-data" method="post" >
    <input type="text" name="name" /><input type="file" name="file" />
    <input type="submit"  name=‘submit‘ value="提交" >
    </form>
</body>
</html>

  

时间: 2025-01-06 00:40:29

PHP之图片上传类(加了缩略图)的相关文章

图片上传类与加密解密

php图片上传类 <?php //引入config_app全局变量 include ini_get("yaf.library") ."/../config/application/global.php"; include 'Image.php'; include 'Aes.php'; //获取链接过来的参数 $format = isset($_GET['__format'])?$_GET['__format']:"json"; switch

[原创]超强C#图片上传,加水印,自动生成缩略图源代码

<%@ Page Language=“C#“ AutoEventWireup=“true“ %> <%@ Import Namespace=“System“ %> <%@ Import Namespace=“System.IO“ %> <%@ Import Namespace=“System.Net“ %> <%@ Import NameSpace=“System.Web“ %> <%@ Import NameSpace=“Legalsof

PHP图片上传类

前言 在php开发中,必不可少要用到文件上传,整理封装了一个图片上传的类也还有必要.一.控制器调用 public function upload_file() { if (IS_POST) { if (!empty($_FILES['Filedata'])) { import('Org.Upload', COMMON_PATH); $upload = new \Upload(); // 允许上传文件大小 $upload->allowMaxSize(C('ALLOW_UPLOAD_FILE_MAX

图片上传类

1 import java.util.*; 2 import java.lang.*; 3 import java.io.File; 4 import java.util.HashMap; 5 import java.util.List; 6 import java.util.Map; 7 import javax.servlet.http.HttpServletRequest; 8 import org.apache.commons.fileupload.FileItem; 9 import

CI 图片上传类的解决

很久没有用CI了,新公司需要用ci ,图片上传的功能,我都搞半天,伤心,因为我是女孩子,给自己找个借口吧. 1. 要看源码,upload.php里do_upload()是上传的主要函数. public function do_upload($field = 'userfile') { // } 默认name = 'userfile',这里要写你自己的name 2.要测试,不能盲目的,盲目的 if (! $this->upload->do_upload ('userfile')) { $erro

ASP.NET图片上传,加水印文字和水印图片!

看了清清月儿的这篇文章让自己受益匪浅,但是觉得还有一些问题.上传图片后还有原来的图片文件存在,觉得这样很不爽,调用file类的delete方法删除原来没有生成水印的图片另外自己又加了一个限制图片大小的函数 1.最简单的单文件上传(没花头) 效果图:说明:这是最基本的文件上传,在asp.net1.x中没有这个FileUpload控件,只有html的上传控件,那时候要把html控件转化为服务器控件,很不好用.其实所有文件上传的美丽效果都是从这个FileUpload控件衍生,第一个例子虽然简单却是根本

基于Jcrop的图片上传裁剪加预览

1.页面结构 <div class="container"> <div class="row"> <div class="span12"> <div class="jc-demo-box"> <input type="file" id="fileChange" /> <div class="prew"

laravel之引入图片上传类

1.在官网http://www.uploadify.com/ 下载插件,flash verison 的版本是免费版 2.解压后将文件夹放置在指定的目录下 3.前端导入css,js文件,可以仿照文件夹中index.php的样式编写 本页面文件要加载jquery库 4.在formData中传递自己需要的参数,在onUploadSuccess中编写成功回调样式代码 5.以下是后台处理的逻辑代码:

php图片上传类(支持缩放、裁剪、图片缩略功能)

代码: /** * @author [Lee] <[<[email protected]>]> * 1.自动验证文件是表单提交的文件还是base64流提交的文件 * 2.验证图片类型是否合法 * 3.验证图片尺寸是否合法 * 4.验证图片大小是否合法 * 5.支持缩放功能 * 6.支持裁剪功能 * 7.支持缩略图功能 */ class fileuploader{ private $file; private $type; public $suffix = array(); publ