function AutoResizeImage(maxWidth,maxHeight){ var objImg = document.getElementById("operImg"); var img = new Image(); img.src = objImg.src; var hRatio; var wRatio; var Ratio = 1; var w = img.width; var h = img.height; wRatio = maxWidth / w; hRatio = maxHeight / h; if (maxWidth ==0 && maxHeight==0){ Ratio = 1; }else if (maxWidth==0){// if (hRatio}else if (maxHeight==0){ if (wRatio}else if (wRatioRatio = (wRatio} if (Ratiow = w * Ratio; h = h * Ratio; } objImg.height = h; objImg.width = w; }
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn