1. 程式人生 > >分享一個前端等比壓縮圖片外掛

分享一個前端等比壓縮圖片外掛

no photo no bb。。。。程式猿的美感一般般,將就看看,主要是效果實現了就行了。

注意,當前的等比壓縮精度可能不是很精確,最多有0.01的誤差,就是說,js的parseInt結果不夠準確,可能將寬度或高度多給了1畫素。假如要求高的話可以自己再改改。


具體思路及相容性:

相容性別提了,這個用的是html5的canvas及檔案api,ie6 7 8絕對沒辦法執行的。但是現代瀏覽器包括安卓ios都可以用----安卓該不會要支援到安卓2.0版本的瀏覽器吧?

思路:讀取圖片的原始尺寸,然後按照限制高度限制寬度獲得最適合的尺寸,然後用canvas繪製這圖片出來,就得到結果了。

下面是程式碼。

核心指令碼:

/**
 * 這是基於html5的前端圖片工具,壓縮工具。
 */
var ImageResizer=function(opts){
    var settings={
        resizeMode:"auto"//壓縮模式,總共有三種  auto,width,height auto表示自動根據最大的寬度及高度等比壓縮,width表示只根據寬度來判斷是否需要等比例壓縮,height類似。
        ,dataSource:"" //資料來源。資料來源是指需要壓縮的資料來源,有三種類型,image圖片元素,base64字串,canvas物件,還有選擇檔案時候的file物件。。。
        ,dataSourceType:"image" //image  base64 canvas
        ,maxWidth:150 //允許的最大寬度
        ,maxHeight:200 //允許的最大高度。
        ,onTmpImgGenerate:function(img){} //當中間圖片生成時候的執行方法。。這個時候請不要亂修改這圖片,否則會打亂壓縮後的結果。
        ,success:function(resizeImgBase64,canvas){

        }//壓縮成功後圖片的base64字串資料。
        ,debug:false //是否開啟除錯模式。

    };
    var appData={};
    $.extend(settings,opts);

    var _debug=function(str,styles){
        if(settings.debug==true){
            if(styles){
                console.log(str,styles);
            }
            else{
                console.log(str);
            }
        }
    };
var innerTools={
        getBase4FromImgFile:function(file,callBack){

            var reader = new FileReader();
            reader.onload = function(e) {
                var base64Img= e.target.result;
                //var $img = $('<img>').attr("src", e.target.result)
                //$('#preview').empty().append($img)
                if(callBack){
                    callBack(base64Img);
                }
            };
            reader.readAsDataURL(file);
        }

    //--處理資料來源。。。。將所有資料來源都處理成為圖片圖片物件,方便處理。
        ,getImgFromDataSource:function(datasource,dataSourceType,callback){
            var _me=this;
            var img1=new Image();
            if(dataSourceType=="img"||dataSourceType=="image"){
            img1.src=$(datasource).attr("src");
            if(callback){
             callback(img1);
            }
            }
            else if(dataSourceType=="base64"){
                img1.src=datasource;
            if(callback){
             callback(img1);
            }            }
            else if(dataSourceType=="canvas"){
            img1.src = datasource.toDataURL("image/jpeg");
            if(callback){
             callback(img1);
            }
            }
            else if(dataSourceType=="file"){
                _me.getBase4FromImgFile(function(base64str){
                    img1.src=base64str;
                    if(callback){
                        callback(img1);
                    }
                });
            }

        }
       //計算圖片的需要壓縮的尺寸。當然,壓縮模式,壓縮限制直接從setting裡面取出來。
    ,getResizeSizeFromImg:function(img){
       var _img_info={
                w:$(img)[0].naturalWidth,
                h:$(img)[0].naturalHeight
            };
        console.log("真實尺寸:");
        console.log(_img_info);
       var _resize_info={
           w:0
           ,h:0
       };
        if(_img_info.w<=settings.maxWidth&&_img_info.h<=settings.maxHeight){
            return _img_info;
        }
        if(settings.resizeMode=="auto"){
        var _percent_scale=parseFloat(_img_info.w/_img_info.h);
            var _size1={
                w:0
                ,h:0
            };
            var _size_by_mw={
                w:settings.maxWidth
                ,h:parseInt(settings.maxWidth/_percent_scale)
            };
            var _size_by_mh={
                w:parseInt(settings.maxHeight*_percent_scale)
                ,h:settings.maxHeight
            };
            if(_size_by_mw.h<=settings.maxHeight){
                return _size_by_mw;
            }
            if(_size_by_mh.w<=settings.maxWidth){
                return _size_by_mh;
            }

            return {
                w:settings.maxWidth
                ,h:settings.maxHeight
            };

        }
        if(settings.resizeMode=="width"){
            if(_img_info.w<=settings.maxWidth){
                return _img_info;
            }
            var _size_by_mw={
                w:settings.maxWidth
                ,h:parseInt(settings.maxWidth/_percent_scale)
            };
            return _size_by_mw;
        }

        if(settings.resizeMode=="height"){
            if(_img_info.h<=settings.maxHeight){

                return _img_info;
            }
            var _size_by_mh={
                w:parseInt(settings.maxHeight*_percent_scale)
                ,h:settings.maxHeight
            };
            return _size_by_mh;
        }

    }
    //--將相關圖片物件畫到canvas裡面去。
    ,drawToCanvas:function(img,theW,theH,realW,realH,callback){

    var canvas = document.createElement("canvas");
        canvas.width=theW;
        canvas.height=theH;
        var ctx = canvas.getContext('2d');
        ctx.drawImage(img,
0,//sourceX,
0,//sourceY,
realW,//sourceWidth,
realH,//sourceHeight,
0,//destX,
0,//destY,
theW,//destWidth,
theH//destHeight
 );

        //--獲取base64字串及canvas物件傳給success函式。
        var base64str=canvas.toDataURL("image/png");
        if(callback){
            callback(base64str,canvas);
        }
    }
    };

    //--開始處理。
    (function(){
        innerTools.getImgFromDataSource(settings.dataSource,settings.dataSourceType,function(_tmp_img){
            var __tmpImg=_tmp_img;
            settings.onTmpImgGenerate(_tmp_img);
            //--計算尺寸。
            var _limitSizeInfo=innerTools.getResizeSizeFromImg(__tmpImg);
            console.log(_limitSizeInfo);
            var _img_info={
                w:$(__tmpImg)[0].naturalWidth,
                h:$(__tmpImg)[0].naturalHeight
            };
            innerTools.drawToCanvas(__tmpImg,_limitSizeInfo.w,_limitSizeInfo.h,_img_info.w,_img_info.h,function(base64str,canvas){
              settings.success(base64str,canvas);
            });

        });
    })();

    var returnObject={


    };

    return returnObject;
};


html測試程式碼:

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <script type="text/javascript" src="/static/lib/jquery-1.11.0.min.js"></script>
    <script type="text/javascript" src="/static/lib/util.js"></script>
    <script type="text/javascript" src="ImageResizer.js"></script>
</head>
<body>
<h2>這是一個檔案選擇框,用於測試壓縮工具和打水印。</h2>
<div>請選擇圖片以壓縮圖片。</div>
<div><input type="file" id="file"> </div>
<div>選擇了這張圖片。</div>
<div>
    <img id="preview"/>

</div>
<h3>壓縮設定.</h3>
<div>

    <label>壓縮模式:</label><select id="sel-mode">
        <option value="auto">自動</option>
        <option value="width">按照寬度壓縮</option>
        <option value="height">按照高度壓縮</option>
    </select>
    <label>壓縮限制:</label>寬度:<input type="text" value="150" name="width" id="resize_width">x高度:<input type="text" value="200" name="height" id="resize_height">
    <input type="button" value="壓縮" id="btn-resize" style="display: none;">

</div>
<div>這是壓縮後的結果。</div>
<img id="result"/>

<script type="text/javascript">
    var _fileInput=document.getElementById("file");
    _fileInput.addEventListener("change",function(){

    if (_fileInput.files.length === 0) {
        alert("請選擇圖片");
        return; }
    var oFile = _fileInput.files[0];
    //if (!rFilter.test(oFile.type)) { alert("You must select a valid image file!"); return; }

    /*  if(oFile.size>5*1024*1024){
     message(myCache.par.lang,{cn:"照片上傳:檔案不能超過5MB!請使用容量更小的照片。",en:"證書上傳:檔案不能超過100K!"})
     changePanel("result");
     return;
     }*/
    if(!new RegExp("(jpg|jpeg|gif|png)+","gi").test(oFile.type)){
        alert("照片上傳:檔案型別必須是JPG、JPEG、PNG或GIF!");
        return;
    }

            var reader = new FileReader();
            reader.onload = function(e) {
                var base64Img= e.target.result;
                //var $img = $('<img>').attr("src", e.target.result)
                //$('#preview').empty().append($img)
                $("#preview").attr("src",base64Img);

                //--執行resize。
                var _ir=ImageResizer({
                        resizeMode:"auto"
                        ,dataSource:base64Img
                        ,dataSourceType:"base64"
                        ,maxWidth:parseInt($("#resize_width").val()) //允許的最大寬度
                        ,maxHeight:parseInt($("#resize_height").val()) //允許的最大高度。
                        ,onTmpImgGenerate:function(img){

                        }
                        ,success:function(resizeImgBase64,canvas){
                        $("#result").attr("src",resizeImgBase64);

                        }
                        ,debug:true
                });

            };
            reader.readAsDataURL(oFile);

    },false);
</script>
</body>
</html>