PHP+JavaScript实现图片预览上传功能开发!

PHP+JavaScript实现图片预览上传功能开发!代码如下:

1、HTML

<div class="id-card">
                <div class="img-up img-front">
                    <img  <if condition="empty($addressInfo['iden_card_positive']) neq true"> src="{$addressInfo['iden_card_positive']}" <else /> src="__VIEW__Public/images/address_ic_id_front.png"</if> id="imgFront" >
                    <input id="front" class="fileImage input" type="file"  accept="image/*">
                </div>
                <div class="img-up img-back">
                    <img  <if condition="empty($addressInfo['iden_card_opposite']) neq true"> src="{$addressInfo['iden_card_opposite']}" <else /> src="__VIEW__Public/images/address_ic_id_back.png"</if> id="imgBack">
                    <input id="back" class="fileImage input2" type="file"  accept="image/*">
                </div>
                <p>点击图片可重新上传</p>
            </div>
<input type="hidden" id="imgPath2" value="{$imgInfo['img_opposite']}" />
    <input type="hidden" id="imgPath1" value="{$imgInfo['img_positive']}" />

2、JavaScript代码

<script>
document.addEventListener('DOMContentLoaded', init, false);
document.addEventListener('DOMContentLoaded', init2, false);

function init() {
var u = new UploadPic();
u.init({
    input: document.querySelector('.input'),
    callback: function (base64) {
         $.ajax({
            url:"__APP__/ImgSets/uploadToImg",
            data:{str:base64,type:this.fileType},
            type:'post',
            dataType:'json',
            success:function(data){
            	if(data['code'] == 1){
					 $("#sco").text('已经上传');
                	 $("#imgPath1").val(data.path);
            	}else{
            	}
            }
         })
        },
        loading: function () {

        }
});
}
function init2() {
var u = new UploadPic();
u.init({
    input: document.querySelector('.input2'),
    callback: function (base64) {
         $.ajax({
            url:"__APP__/ImgSets/uploadToImg",
            data:{str:base64,type:this.fileType},
            type:'post',
            dataType:'json',
            success:function(data){
            	if(data['code'] == 1){
					 $("#sct").text('已经上传');
                	 $("#imgPath2").val(data.path);
            	}else{
            	}
            }
         })
        },
        loading: function () {

        }
});
}
function UploadPic() {
    this.sw = 0;
    this.sh = 0;
    this.tw = 0;
    this.th = 0;
    this.scale = 0;
    this.maxWidth = 0;
    this.maxHeight = 0;
    this.maxSize = 0;
    this.fileSize = 0;
    this.fileDate = null;
    this.fileType = '';
    this.fileName = '';
    this.input = null;
    this.canvas = null;
    this.mime = {};
    this.type = '';
    this.callback = function () {};
    this.loading = function () {
            };
    }

    UploadPic.prototype.init = function (options) {
        this.maxWidth = options.maxWidth || 2000;
        this.maxHeight = options.maxHeight || 2000;
        this.maxSize = options.maxSize || 3 * 1024 * 1024;
        this.input = options.input;
        this.mime = {'png': 'image/png', 'jpg': 'image/jpeg', 'jpeg': 'image/jpeg', 'bmp': 'image/bmp'};
        this.callback = options.callback || function () {
        };
        this.loading = options.loading || function () {
        };

        this._addEvent();
    };

    /**
     * @description 绑定事件
     * @param {Object} elm 元素
     * @param {Function} fn 绑定函数
     */
    UploadPic.prototype._addEvent = function () {
        var _this = this;

        function tmpSelectFile(ev) {
            _this._handelSelectFile(ev);
        }

        this.input.addEventListener('change', tmpSelectFile, false);
    };

    /**
     * @description 绑定事件
     * @param {Object} elm 元素
     * @param {Function} fn 绑定函数
     */
    UploadPic.prototype._handelSelectFile = function (ev) {
        var file = ev.target.files[0];

        //add start
        var reader = new FileReader();
        reader.readAsDataURL(file);//将文件读取为Data URL小文件   这里的小文件通常是指图像与 html 等格式的文件
        reader.onload = function(e){
            $("#"+ev.target.id).parent().children("img").attr("src",e.target.result);
        }
        //add end

        this.type = file.type

// 如果没有文件类型,则通过后缀名判断(解决微信及360浏览器无法获取图片类型问题)
        if (!this.type) {
            this.type = this.mime[file.name.match(/\.([^\.]+)$/i)[1]];
        }

        if (!/image.(png|jpg|jpeg|bmp)/.test(this.type)) {
            $(".topLoading").hide();
            opLayer('open',"选择的文件类型不是图片!");
            return;
        }

        /*if (file.size > this.maxSize) {
            $(".topLoading").hide();
            opLayer('open','选择文件大于' + this.maxSize / 1024 / 1024 + 'M,请重新选择');
            return;
        }*/

        this.fileName = file.name;
        this.fileSize = file.size;
        this.fileType = this.type;
        this.fileDate = file.lastModifiedDate;

        this._readImage(file);
    };

    /**
     * @description 读取图片文件
     * @param {Object} image 图片文件
     */
    UploadPic.prototype._readImage = function (file) {
        var _this = this;

        function tmpCreateImage(uri) {
            _this._createImage(uri);
        }

        this.loading();

        this._getURI(file, tmpCreateImage);
    };

    /**
     * @description 通过文件获得URI
     * @param {Object} file 文件
     * @param {Function} callback 回调函数,返回文件对应URI
     * return {Bool} 返回false
     */
    UploadPic.prototype._getURI = function (file, callback) {
        var reader = new FileReader();
        var _this = this;

        function tmpLoad() {
// 头不带图片格式,需填写格式
            var re = /^data:base64,/;
            var ret = this.result + '';

            if (re.test(ret))
                ret = ret.replace(re, 'data:' + _this.mime[_this.fileType] + ';base64,');

            callback && callback(ret);
        }

        reader.onload = tmpLoad;

        reader.readAsDataURL(file);

        return false;
    };

    /**
     * @description 创建图片
     * @param {Object} image 图片文件
     */
    UploadPic.prototype._createImage = function (uri) {
        var img = new Image();
        var _this = this;

        function tmpLoad() {
            _this._drawImage(this);
        }

        img.onload = tmpLoad;

        img.src = uri;
    };

    /**
     * @description 创建Canvas将图片画至其中,并获得压缩后的文件
     * @param {Object} img 图片文件
     * @param {Number} width 图片最大宽度
     * @param {Number} height 图片最大高度
     * @param {Function} callback 回调函数,参数为图片base64编码
     * return {Object} 返回压缩后的图片
     */
    UploadPic.prototype._drawImage = function (img, callback) {
        this.sw = img.width;
        this.sh = img.height;
        this.tw = img.width;
        this.th = img.height;

        this.scale = (this.tw / this.th).toFixed(2);

        if (this.sw > this.maxWidth) {
            this.sw = this.maxWidth;
            this.sh = Math.round(this.sw / this.scale);
        }

        if (this.sh > this.maxHeight) {
            this.sh = this.maxHeight;
            this.sw = Math.round(this.sh * this.scale);
        }

        this.canvas = document.createElement('canvas');
        var ctx = this.canvas.getContext('2d');

        this.canvas.width = this.sw;
        this.canvas.height = this.sh;
//      alert(this.fileSize / 1024 / 1024);
//		alert(this.tw);
//		alert(this.th);
//		alert(this.sw);
//		alert(this.sh);
//		return false;
        ctx.drawImage(img, 0, 0, img.width, img.height, 0, 0, this.sw, this.sh);

        this.callback(this.canvas.toDataURL(this.type));

        ctx.clearRect(0, 0, this.tw, this.th);
        this.canvas.width = 0;
        this.canvas.height = 0;
        this.canvas = null;
    };
</script>

3、PHP

/**
	 * 手机端上传图片
	 */
	public function uploadToImg(){
		$str = I('post.str');  
		$type = I('post.type');  
		$ret = array('code'=>0,'path'=>'');
    switch($type){  
            case 'image/png':  
            $ext='.png';  
            break;  
        case 'image/jpeg';  
            $ext='.jpeg';  
            break;  
        case 'image/jpeg':  
            $ext='.jpg';  
            break;  
        case 'image/bmp':  
            $ext='.bmp';  
            break;  
        default:  
            $ext='.jpg';  
    }  
		$savePath = '/Upload/IMGS/'.$this->uid.'/'.time().rand(000,999).$ext;
    $filePath = '.'.$savePath;  
    if(!file_exists(dirname($filePath))){  
        mkdir(dirname($filePath),0777,true);  
    }  
    $imgContent = str_replace('data:'.$type.';base64,','',$str);  
    $imgContent = base64_decode($imgContent);  
    $result = @file_put_contents($filePath,$imgContent);
		if($result){
			$ret['code'] = 1;
			$ret['path'] = $savePath;
		}  
		$this->ajaxReturn($ret);	
	}

 

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值