gpt4 book ai didi

javascript - Google 脚本替换 gDraw 文件中的图像

转载 作者:行者123 更新时间:2023-11-28 05:10:24 25 4
gpt4 key购买 nike

所以我正在尝试编写一个 Google 脚本,该脚本将从 Google 驱动器上的 3 个不同图像文件创建一个图像文件。我决定使用的方法是在 Drive 中创建模板或基本 gDraw 文件,然后修改该文件并将其导出为 jpeg。到目前为止,我已经能够使用这篇文章 1)Is there a Google Appscript command that can convert a .gDraw to a .jpg? 2)Can a trigger be set to perform this conversion on .gdraw file edit? 中的代码将我的 gDraw 文件导出为图像。 .

function gDrawTO_jpeg(){
var gDrawFile = Drive.Files.get('1P2qYTyeI9RovsI_qwiMEtlBeTJw-exjckQeYLL_NA7w');
var url = gDrawFile.exportLinks['image/jpeg'];
var token = ScriptApp.getOAuthToken();
var response = UrlFetchApp.fetch(url, {
headers: {
'Authorization': 'Bearer ' + token
}
});
var jpeg = response.getBlob();
// save drawing as jpeg file to Drive, or do whatever you need to with the blob
DriveApp.createFile(jpeg);
}

我所困惑的是试图弄清楚如何替换 gDraw 文件中的图像。

预先感谢您的帮助!

最佳答案

我从未遇到过 Google Draw 的 API,这意味着无法通过脚本进行联系进行编辑。然而,就在一个月前,谷歌发布了Slide API您可以远程添加图像。不知道这是否有帮助,然后可以嵌入幻灯片。

关于javascript - Google 脚本替换 gDraw 文件中的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41430884/

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