Skip to content

Instantly share code, notes, and snippets.

@bastengao
Created September 3, 2012 06:07
Show Gist options
  • Save bastengao/3607145 to your computer and use it in GitHub Desktop.
Save bastengao/3607145 to your computer and use it in GitHub Desktop.
get image natural width and height.
window.Images = {
naturalSize:function (imgSrc, callback) {
jQuery("<img/>").load( function () {
var naturalWidth = this.width;
var naturalHeight = this.height;
callback(naturalWidth, naturalHeight);
}).attr("src", imgSrc);
}};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment