I'm loading in an image into memory per a solution I found on here, and that's fine, but since it's within a callback, the properties width and height are undefined outside of it.
var originalWidth, originalHeight;
$("<img/>") // Make in memory copy of image to avoid css issues
.attr("src", $(img).attr("src"))
.load(function() {
originalWidth = this.width; // Note: $(this).width() will not
originalHeight = this.height; // work for in memory images.
});
console.log(originalWidth); // undefined obviously since `this` is only accessible within `load`s callback.
I thought about maybe putting it within an object like:
var originalWidth, originalHeight;
var imgDimensions = {};
$("<img/>") // Make in memory copy of image to avoid css issues
.attr("src", $(img).attr("src"))
.load(function() {
imgDimensions.originalWidth = this.width; // Note: $(this).width() will not
imgDimensions.originalHeight = this.height; // work for in memory images.
});
console.log(imgDimensions['originalWidth']); // undefined also
How can I return those properties from within load()?
.loadis binding an event that could occur at any time, so that means code on the next line (console.log) does not wait for it to complete. It says "when the image has been loaded, run these lines of code"...but again, it's not blocking the rest of your code like you expect. Anyways, you shouldn't be dependent onload- api.jquery.com/load-event - scroll down to "Caveats of the load event when used with images" – Ian Nov 2 '12 at 21:44