“Obtenha a imagem SRC e largura e altura” Respostas de código

JavaScript Obtenha largura e altura da imagem

var img = new Image();
img.onload = function() {
  alert(this.width + 'x' + this.height);
}
img.src = 'http://www.google.com/intl/en_ALL/images/logo.gif';
v0

Obtenha a imagem SRC e largura e altura

// for the original width and height in px of the source
image.naturalWidth, image.naturalHeight

// for the image size in px rendered on the screen
image.width, image.height
Ill Impala

Respostas semelhantes a “Obtenha a imagem SRC e largura e altura”

Perguntas semelhantes a “Obtenha a imagem SRC e largura e altura”

Procure respostas de código populares por idioma

Procurar outros idiomas de código