如何更改图像大小?

时间:2014-09-07 10:04:03

标签: google-apps-script google-drive-api google-docs

如何更改存储在磁盘上的图像大小?

function doGet() {
  var file =  DriveApp.getFileById("-ID-");
  if (file.getMimeType() == "image/jpeg") {
    //?
  }
}

1 个答案:

答案 0 :(得分:0)

这在Google Apps脚本中无法直接实现。唯一的方法可能是使用urlFetch调用(外部)API。

我环顾四周,似乎有一些API可供使用(例如imageshack),但我的测试中没有进一步...