Package org.bigbluebutton.presentation

Examples of org.bigbluebutton.presentation.PageConverter.convert()


    return new File(filenameWithoutExt + ".pdf");
  }
 
  private boolean convertOfficeDocToPdf(UploadedPresentation pres, File pdfOutput) {
    PageConverter converter = new Office2PdfPageConverter();
    return converter.convert(pres.getUploadedFile(), pdfOutput, 0);
  }
 
  private void makePdfTheUploadedFileAndSetStepAsSuccess(UploadedPresentation pres, File pdf) {
    pres.setUploadedFile(pdf);
    pres.setLastStepSuccessful(true);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.