使用Google Apps脚本将Google幻灯片保存为PDF

时间:2017-10-18 20:55:06

标签: google-apps-script google-slides-api

是否可以使用Google Apps脚本将Google演示文稿另存为PDF格式。我只能找到保存Google文档和表格的解决方案。

2 个答案:

答案 0 :(得分:2)

这个示例脚本怎么样?使用DriveApp.createFile()保存和/或下载Google文档(电子表格,文档和幻灯片)时,文件格式会自动变为PDF。所以我们可以使用以下脚本。

示例脚本:

var blob = DriveApp.getFileById("### Slide file ID ###").getBlob();
DriveApp.createFile(blob);

注意:

在这种情况下,创建的PDF文件的文件名与幻灯片相同。

编辑:

如果要复制幻灯片文件,请使用以下脚本。

var file = DriveApp.getFileById("### Slide file ID ###");
file.makeCopy(DriveApp.getFolderById("### Destination folder ID ###"));

答案 1 :(得分:1)

这可以通过用 SlideApp 替换 DocumentApp 来实现

请注意,如果驱动器文件夹中存在以前创建的同名 pdf,它也会删除。

function onOpen() {
  var ui = DocumentApp.getUi();
  ui.createMenu('Save PDF copy')
  .addItem('Save PDF', 'SavePDF')
  .addToUi();
}

function SavePDF() {
  var theDoc = DocumentApp.getActiveDocument();
  var id = DocumentApp.getActiveDocument().getId()
  var ui = DocumentApp.getUi();
  var folderString = DriveApp.getFileById(id).getParents().next().getName();
  var folder = DriveApp.getFileById(id).getParents().next();

  var theBlob = theDoc.getAs('application/pdf')
  var thePDFName = theBlob.getName()

  var theFiles = DriveApp.getFilesByName(theBlob.getName())
  while (theFiles.hasNext()) {
    var theFile = theFiles.next()
    if (theFile.getParents().next().getName() == folderString) {
      theFile.setTrashed(true)
    }
   }

  var newFile = folder.createFile(theBlob);
  ui.alert('Saved to ' + folderString + " " + theBlob.getName())
}