1
如何使用Google Apps腳本檢查存儲在Google雲端硬盤中的圖像的分辨率。如何檢查圖像的分辨率
var childFile = files.next();
data = [
childFile.getName(),
childFile.getDateCreated(),
childFile.getUrl(),
childFile.getLastUpdated(),
childFile.getDescription(),
childFile.getSize()
];
在上面的代碼我能夠獲得圖像的大小,但我怎麼能得到圖像的分辨率。