kenken999's picture
test
5a32ee0
raw
history blame
216 Bytes
function ImageService() {}
ImageService.prototype.downloadImage = function(imageUrl) {
var options = {
'method': 'GET'
};
var response = UrlFetchApp.fetch(imageUrl, options);
return response.getBlob();
}