Skip to content

Instantly share code, notes, and snippets.

@cimm
Created February 2, 2015 19:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cimm/b9b31de6a7894117f506 to your computer and use it in GitHub Desktop.
Save cimm/b9b31de6a7894117f506 to your computer and use it in GitHub Desktop.
Get the image width in client side JavaScript
var file = ... // a File web API interface: https://developer.mozilla.org/en-US/docs/Web/API/File
img = new Image();
img.src = URL.createObjectURL(file);
img.onload = function() {
alert(this.naturalWidth);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment