这篇简单的文章重点介绍如何使用 Java** 将 PowerPoint 转换为 TIFF,按照详细的配置步骤使用以下代码示例。您可以在 MS Windows、Linux 或 macOS 中的任何 Java 配置环境中使用以下示例,以在 Java 中将 PPTX 转换为 TIFF,而不依赖于 MS PowerPoint。
使用 Java 将 PowerPoint 转换为 TIFF 的步骤
- 配置应用程序以从 Maven 存储库安装 Aspose.Slides for Java
- 初始化 Presentation 类对象以从磁盘加载源演示文件
- 实例化 TiffOptions 类对象并设置所需的图像选项
- 设置所需 TIFF 图像的图像尺寸和 DPI 设置
- 使用 save 方法将演示文稿转换为 Java 中的 TIFF
上述步骤将演示文稿转换为 Java 中的 TIFF,该过程首先使用 Presentation 类加载源演示文稿文件。然后我们使用 TiffOptions 类实例设置所需的 TIFF 图像 DPI 和大小,最后使用 save 方法将演示文稿保存为磁盘上的 TIFF 图像。
在 Java 中将 PPTX 转换为 TIFF 的代码
import com.aspose.slides.INotesCommentsLayoutingOptions; | |
import com.aspose.slides.License; | |
import com.aspose.slides.NotesPositions; | |
import com.aspose.slides.Presentation; | |
import com.aspose.slides.SaveFormat; | |
import com.aspose.slides.TiffCompressionTypes; | |
import com.aspose.slides.TiffOptions; | |
import java.awt.Dimension; | |
public class CreateTiffImage { | |
public static void main(String[] args) throws Exception { // Creating Tiff image | |
// Set the API license to avoid watermark in the output Tiff Image | |
License licSlides = new License(); | |
licSlides.setLicense("Aspose.Total.lic"); | |
// Create the Presentation class to load the source presentation and exporting to Tiff | |
Presentation sampleTiffPresentation = new Presentation("NewPresentation.pptx"); | |
// Initialize the TiffOptions class | |
TiffOptions tiffOpts = new TiffOptions(); | |
// Applying the desired Tiff compression type | |
tiffOpts.setCompressionType(TiffCompressionTypes.Default); | |
// Set the slides notes options inside exported Tiff | |
INotesCommentsLayoutingOptions notesOptions = tiffOpts.getNotesCommentsLayouting(); | |
notesOptions.setNotesPosition(NotesPositions.BottomFull); | |
// Now, set the Tiff image DPI. The resolution is always equal to 2-dots\inch | |
tiffOpts.setDpiX(200); | |
tiffOpts.setDpiY(100); | |
// Set the desired Tiff Image Size | |
tiffOpts.setImageSize(new Dimension(1728, 1078)); | |
// Save the loaded presentation to TIFF with specified image size | |
sampleTiffPresentation.save("CustomSizeTiff_out.tiff", SaveFormat.Tiff, tiffOpts); | |
} | |
} |
如果您甚至对 在 Java 中将 PPT 转换为 TIFF 感兴趣,您也可以使用上面的示例进行此转换。为了进一步自定义输出,TiffOptions 类公开了 CompressionType、PixelFormat、ShowHiddenSlides 和 NotesCommentsLayouting 等属性的设置方法。此应用程序无需安装 MS PowerPoint 或任何其他第三方工具即可将 PPTX 无缝转换为 TIFF。
在本文中,我们学习了借助一个简单的 API 接口*从 Java 中的 PowerPoint 生成 TIFF。如果您对创建 PowerPoint 幻灯片图像感兴趣,请参阅 如何使用 Java 创建 PowerPoint 幻灯片图像 上的文章。