用图片Google脚本替换文字?

时间:2013-10-03 23:50:46

标签: javascript image api google-apps-script google-docs

我正在尝试使用this API对某些Google文档进行迭代。但是,我对Javascript的经验很少。如何使用来自网址的实际内嵌图片替换关键字(例如<"image">)? ChildIndex是否支持段落中的索引?代码的加分点!

1 个答案:

答案 0 :(得分:0)

如果您想从网址添加实际的内嵌图片,请尝试以下操作:

var img_name_Url = "URL of the image";

var img_name_Blob = UrlFetchApp.fetch(img_name).getBlob().setName("img_name_Blob");

在您要使用的文档中:

htmlBody : "The content for the inline image <img src='cid:img_name'>",
       inlineImages:
       {
         img: img_name_Blob
       }