Skip to content

Instantly share code, notes, and snippets.

@natasv
Created June 6, 2016 19:16
Show Gist options
  • Save natasv/886f62cc62c37c835556957a3d248c2c to your computer and use it in GitHub Desktop.
Save natasv/886f62cc62c37c835556957a3d248c2c to your computer and use it in GitHub Desktop.
if (!file) {
return $q.reject(false);
}
return $q(function (resolve, reject) {
var reader = new FileReader();
reader.onloadend = function (response) {
var src = response.target.result;
var imgPromise = srcToDataURI(src);
return resolve(src);
};
reader.readAsDataURL(file);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment