Spaces:
Sleeping
Sleeping
File size: 216 Bytes
5a32ee0 |
1 2 3 4 5 6 7 8 9 |
function ImageService() {}
ImageService.prototype.downloadImage = function(imageUrl) {
var options = {
'method': 'GET'
};
var response = UrlFetchApp.fetch(imageUrl, options);
return response.getBlob();
} |