Skip to content

Instantly share code, notes, and snippets.

@jasonmit
Last active January 16, 2018 05:54
Show Gist options
  • Save jasonmit/582477e06a05a8e43a0c9f426588a5a5 to your computer and use it in GitHub Desktop.
Save jasonmit/582477e06a05a8e43a0c9f426588a5a5 to your computer and use it in GitHub Desktop.
promise image size
function imageSize(blobString) {
return new Promise((resolve, reject) => {
let img = new Image();
img.onload = (err) => resolve({ width: img.naturalWidth, height: img.naturalHeight });
img.onerror = (err) => reject(err);
img.src = blobString;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment