gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 22:38:20 26 4
gpt4 key购买 nike

如何通过 Google Apps 脚本将图像添加到 Google 文档(不是电子表格或演示文稿)。我没有看到 addImage 方法。团队肯定不会忽略这一点。

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

最佳答案

来自文档:

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

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

关于google-docs - 通过 Google Apps 脚本将图像添加到 Google 文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7898497/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com