您好,登錄后才能下訂單哦!
// Img是html中的<img>元素,maxWidth最大寬度,maxHeight最大高度
function imgAutoSize(Img, maxWidth, maxHeight) {
var img = new Image();
img.src = imgData.attr("src");
var imgHeight = img.height; // 原圖片大小
var imgWidth = img.width; //原圖片大小
// 如果圖片高度或者寬度大于限定的高度或者寬度則進(jìn)行等比例尺寸壓縮
if (imgHeight > winHeight || imgWidth > winWidth) {
// 1.原圖片寬高比例 大于等于 圖片框?qū)捀弑壤? if (winWidth/ winHeight <= imgWidth / imgHeight) {
imgWidth = winWidth; //以框的寬度為標(biāo)準(zhǔn)
imgHeight = winWidth * (imgHeight / imgWidth);
}
// 2.原圖片寬高比例 小于 圖片框?qū)捀弑壤? if (winWidth/ winHeight > imgWidth / imgHeight) {
imgWidth = winHeight * (imgWidth / imgHeight);
imgHeight = winHeight ; //以框的高度為標(biāo)準(zhǔn)
}
}
var imgHtml = "<img src='" + img.src + "' width='" + width + "px' height='" + height + "px' />";
}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。