1
Google Apps Scriptを使用してGoogleドライブに保存されている画像の解像度を確認する方法。画像の解像度を確認する方法
var childFile = files.next();
data = [
childFile.getName(),
childFile.getDateCreated(),
childFile.getUrl(),
childFile.getLastUpdated(),
childFile.getDescription(),
childFile.getSize()
];
上記のコードでは、イメージのサイズを取得できましたが、イメージの解像度はどのように取得できますか。