Skip to content

Instantly share code, notes, and snippets.

@adrianolsk
Created March 9, 2016 19:10
Show Gist options
  • Save adrianolsk/41d1d7c0a9e72468398a to your computer and use it in GitHub Desktop.
Save adrianolsk/41d1d7c0a9e72468398a to your computer and use it in GitHub Desktop.
Image url to base64
//https://atmospherejs.com/froatsnook/request
Meteor.methods({
downloadImage: function (imageUrl) {
//https://atmospherejs.com/froatsnook/request
var result = request.getSync(imageUrl, {encoding: null});
return 'data:image/png;base64,' + new Buffer(result.body).toString('base64');
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment