Skip to content

Instantly share code, notes, and snippets.

@oshliaer
Last active December 9, 2015 20:53
Show Gist options
  • Save oshliaer/8bdb77985b9a3cf4c315 to your computer and use it in GitHub Desktop.
Save oshliaer/8bdb77985b9a3cf4c315 to your computer and use it in GitHub Desktop.
An export of a Google Driwings image #gas #google_drawings #google_docs
function insertImageToDoc(imageID, docID){
var url = 'https://docs.google.com/feeds/download/drawings/Export?id=' + imageID + '&exportFormat=png';
var params = {
'headers' : {
'Authorization' : 'Bearer ' + ScriptApp.getOAuthToken()
}
};
var resp = UrlFetchApp.fetch(url, params);
var doc = DocumentApp.openById(docID);
var body = doc.getBody();
var el = body.findText('BOOKMARK_AS_A_TEXT').getElement().getParent();
if(el){
//Inserts the given InlineImage at the specified index
var img = body.insertImage(body.getChildIndex(el) + 1, resp.getBlob());
img.setWidth(img.getWidth() * 2);
img.setHeight(img.getHeight() * 2);
}
}
//Get export links
//Require Enabling advanced services https://developers.google.com/apps-script/guides/services/advanced
function getExportLinks(id){
var u = Drive.Files.get(id).exportLinks;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment