返回

Google Sheets Apps 脚本 > 查找图像比例

发布时间:2022-06-16 05:55:26 166
# 脚本

我正在使用 google sheet 脚本语言,我想从网络链接中获取图像的比例,例如 this flag。

我在这里看到了一种方法,但我想从函数中返回比率,而不是把它放在随机单元格中。

到目前为止,我已经设法得到了这个,这似乎不起作用。

function imageSize(imgUrl) {
  if  (typeof imgUrl == 'undefined') {
    imgUrl = 'https://img.hake.cc/other_net_images/other_images_skf/logo.gif';
  }
  PropertiesService.getScriptProperties().setProperty('ratio', 0);

  var t = '';     
  t += '\n';  


  var output = HtmlService.createHtmlOutput(t);
  // output.setSandboxMode(HtmlService.SandboxMode.IFRAME); 
  // SpreadsheetApp.getUi().showModalDialog(output,'please, wait...');
  // output.clear();
  Utilities.sleep(2000);
  return PropertiesService.getScriptProperties().getProperty('ratio');;
}


function returnVal(h) {
  Logger.log(h);
  PropertiesService.getScriptProperties().setProperty('ratio', h);
  return h;
}
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(1)
按点赞数排序
用户头像
下一篇
java-将集合转换为int[]数组 2022-06-16 03:56:06