Skip to content

Instantly share code, notes, and snippets.

@PoTHuYJoHN
Created October 10, 2014 07:22
Show Gist options
  • Save PoTHuYJoHN/c12893754ff271a81368 to your computer and use it in GitHub Desktop.
Save PoTHuYJoHN/c12893754ff271a81368 to your computer and use it in GitHub Desktop.
Get image size via JS
myImage.addEventListener('onload', function() {
console.log('My width is: ', this.naturalWidth);
console.log('My height is: ', this.naturalHeight);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment