通过Google Apps脚本将图像添加到Google文档

时间:2011-10-26 03:38:02

标签: google-docs google-apps-script

如何通过Google Apps脚本向Google文档(非电子表格或演示文稿)添加图片。我没有看到addImage方法。当然,团队不会把它排除在外。

http://code.google.com/googleapps/appsscript/class_document.html

1 个答案:

答案 0 :(得分:9)

来自文档:

function insertImage() {
  // Retrieve an image from the web.
  var resp = UrlFetchApp.fetch("http://www.google.com/intl/en_com/images/srpr/logo2w.png");

  // Create a document.
  var doc = DocumentApp.openById("");

  // Append the image to the first paragraph.
  doc.getChild(0).asParagraph().appendInlineImage(resp.getBlob());
}

http://code.google.com/googleapps/appsscript/class_documentapp_listitem.html#appendInlineImage

我不确定您是否可以上传图片。但你确定可以通过网址将其插入段落中。