将 PowerPoint 转换为 TIFF 带注释

将 PPT(X) 在注释幻灯片视图中转换为 TIFF

Presentation 类暴露的 Save 方法可用于将整个演示文稿在注释幻灯片视图中转换为 TIFF。以下代码片段将示例演示文稿更新为注释幻灯片视图中的 TIFF 图像,如下所示:

//实例化一个表示演示文稿文件的 Presentation 对象
Presentation pres = new Presentation("demo.pptx");
try {
    TiffOptions opts = new TiffOptions();
    opts.getNotesCommentsLayouting().setNotesPosition(NotesPositions.BottomFull);
    
    //将演示文稿保存为 TIFF 注释
    pres.save("Tiff-Notes.tiff", SaveFormat.Tiff,opts);
} finally {
    if (pres != null) pres.dispose();
}

上述代码片段将示例演示文稿更新为注释幻灯片视图中的 TIFF 图像,如下所示:

带幻灯片注释的源演示文稿视图 ** 
todo:image_alt_text  
在注释幻灯片视图中生成的 TIFF 图像 ** 
todo:image_alt_text