摘要:
//图片等比例压缩 var scaleImage = function (w, h, o) { var img = new Image(); //img.height=$("#imgBig").height(); //img.width=$("#imgBig").width(); img.src = o.src; if (img.width > 0 && img.height > 0) { if (img.width / img.height >= w / h) { if (img.width > w) { o.w 阅读全文