1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
function imageCompression(baseImage,obj,quality,callback) { var img = new Image(); img.src = baseImage; img.onload = function () { var that = this; var w = that.width,h = that.height; var compressionResult,compressionWidth,compressionHeight; if(h>obj.height){ var canvas = document.createElement('canvas'); var ctx = canvas.getContext('2d'); var createw = document.createAttribute('width'); var createh = document.createAttribute('height'); h = obj.height; w = (h/that.height) * w; compressionWidth = w; compressionHeight = h; createw.nodeValue = w; createh.nodeValue = h; canvas.setAttributeNode(createw); canvas.setAttributeNode(createh); ctx.drawImage(that,0,0,w,h); var base64 = canvas.toDataURL('image/png', quality); compressionResult = base64; }else { compressionResult = baseImage; compressionWidth = that.width; compressionHeight = that.height; } if (compressionWidth > obj.width){ ClippingImage(compressionResult,obj.width,compressionHeight,quality,function (base64Clipping) { callback(base64Clipping); }); }else { callback(compressionResult); } } }
|