本篇文章将介绍通过Java程序打印PPT幻灯片的方法。包括打印幻灯片的所有页、打印幻灯片中的指定页面。
使用工具:Free Spire.Presentation for Java (免费版)
Jar文件获取及导入:
方法1:通过官网下载jar文件包。下载后,解压文件,并将lib文件夹下的Spire.Presentation.jar文件导入java程序。
Java示例代码
【示例1】静默打印PPT所有页面
import com.spire.presentation.Presentation; import com.spire.presentation.PresentationPrintDocument; public class PrintPPT { public static void main(String[] args) throws Exception { String inputFile = "Sample.pptx"; //加载文档 Presentation presentation = new Presentation(); presentation.loadFromFile(inputFile); //使用默认打印机打印所有文档中的所有幻灯片 PresentationPrintDocument document = new PresentationPrintDocument(presentation); document.print(); presentation.dispose(); } }
【示例2】不连续打印部分幻灯片
import com.spire.presentation.Presentation; import com.spire.presentation.PresentationPrintDocument; public class PrintPPT { public static void main(String[] args) throws Exception { String inputFile = "Sample.pptx"; //加载文档 Presentation presentation = new Presentation(); presentation.loadFromFile(inputFile); PresentationPrintDocument document = new PresentationPrintDocument(presentation); //选择需要打印的幻灯片 document.selectSlidesForPrint("1", "2-6"); document.print(); presentation.dispose(); } }
(本文完)
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦