Google script : how to resize image in blob?
问题 I have a blob containing an image that is remotely loaded and created in Google Drive: var response = UrlFetchApp.fetch(fileURL); var fileBlob = response.getBlob(); var folder = DriveApp.getFolderById('THjgj698979XXXXXXXX'); var result = folder.createFile(fileBlob); What I want is to resize the image contained in this fileBlob. How can I do that? For your information, a post that can help but finally didn't really help me:(explains how to resize an image, not how to resize an image in a blob)