通过 Java 从 PDF 中提取图像

从 PDF 文档中提取图像。使用 Aspose.PDF for Java 以编程方式修改 PDF 文件

使用 Java 库从 PDF 文档中提取图像

为了添加 PDF 格式的图像,我们将使用 Aspose.PDF for Java API,这是一款功能丰富、功能强大且易于使用的适用于 Java 平台的转换 API。你可以直接从 Maven 下载它的最新版本,然后通过在 pom.xml 中添加以下配置将其安装在基于 Maven 的项目中。

Repository

<repository>
    <id>AsposeJavaAPI</id>
    <name>Aspose Java AP</name>
    <url>https://releases.aspose.com/java/repo/</url>
</repository>

Dependency

<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-pdf</artifactId>
<version>version of aspose-pdf API</version>
</dependency>

通过 Java 从 PDF 中提取图像


你需要 Aspose.PDF for Java 才能在你的环境中试用代码。

1。打开 PDF 文档。 1。提取特定的图像。 1。保存输出图像。 1。保存更新后的 PDF 文件。

从 PDF 文件中提取图像-Java

此示例代码说明如何从 PDF 中提取图像-Java


    // Open document
    Document pdfDocument = new Document(_dataDir + "ExtractImages.pdf");

    // Extract a particular image
    XImage xImage = pdfDocument.getPages().get_Item(1).getResources().getImages().get_Item(1);

    FileOutputStream outputImage = new FileOutputStream(_dataDir + "output.jpg");

    // Save output image
    xImage.save(outputImage, ImageFormat.Jpeg);
    outputImage.close();

    // Save updated PDF file
    pdfDocument.save(_dataDir + "ExtractImages_out.pdf");