Skip to content

Instantly share code, notes, and snippets.

@rheajt
Last active February 26, 2018 22:47
Show Gist options
  • Save rheajt/e5489a7c5ed2ac7e2ed7c939289ab073 to your computer and use it in GitHub Desktop.
Save rheajt/e5489a7c5ed2ac7e2ed7c939289ab073 to your computer and use it in GitHub Desktop.
google apps script to append images to a folder full of files
function signReports() {
var folderId = '<<PUT THE ID OF YOUR FOLDER WITH DOCS TO APPEND IMAGES TO>>';
var imageId = '<<PUT THE ID OF THE IMAGE TO APPEND HERE>>';
var files = DriveApp.getFolderById(folderId).getFilesByType(MimeType.GOOGLE_DOCS);
while(files.hasNext()) {
var file = files.next();
var doc = DocumentApp.openById(file.getId());
var image = DriveApp.getFileById(imageId);
doc.getBody().appendImage(image).setWidth(doc.getBody().getPageWidth());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment