Last active
February 26, 2018 22:47
-
-
Save rheajt/e5489a7c5ed2ac7e2ed7c939289ab073 to your computer and use it in GitHub Desktop.
google apps script to append images to a folder full of files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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