Heim  >  Artikel  >  Web-Frontend  >  Javascript implementiert eine Methode zum Ermitteln der Bildgröße und der bildproportionalen Skalierung

Javascript implementiert eine Methode zum Ermitteln der Bildgröße und der bildproportionalen Skalierung

高洛峰
高洛峰Original
2016-12-05 14:00:221304Durchsuche

Das Beispiel in diesem Artikel beschreibt die Methode zum Ermitteln der Bildgröße und zum proportionalen Skalieren des Bildes mithilfe von Javascript. Teilen Sie es als Referenz mit allen:

Bildgröße ermitteln:

var originImage = new Image();
function GetImageWidth(oImage) {
  if (originImage.src != oImage.src) originImage.src = oImage.src;
  return originImage.width;
}
function GetImageHeight(oImage) {
  if (originImage.src != oImage.src) originImage.src = oImage.src;
  return originImage.height;
}

🎜>

function SetImage(ImgD, FitWidth, FitHeight) {
  var image = new Image();
  image.src = ImgD.src;
  if (image.width > 0 && image.height > 0) {
    if (image.width / image.height >= FitWidth / FitHeight) {
      if (image.width > FitWidth) {
        ImgD.width = FitWidth;
        ImgD.height = (image.height * FitWidth) / image.width;
      } else {
        ImgD.width = image.width;
        ImgD.height = image.height;
      }
    } else {
      if (image.height > FitHeight) {
        ImgD.height = FitHeight;
        ImgD.width = (image.width * FitHeight) / image.height;
      } else {
        ImgD.width = image.width;
        ImgD.height = image.height;
      }
    }
  }
}

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn