• <menu id="w2i4a"></menu>
  • logo Aspose.PDF使用教程

    文檔首頁(yè)>>Aspose.PDF使用教程>>Aspose.PDF功能演示:使用Java添加,提取,刪除或替換PDF文件中的圖像

    Aspose.PDF功能演示:使用Java添加,提取,刪除或替換PDF文件中的圖像


    圖像被廣泛用于PDF文件中的不同類型的描繪和演示。在本文中,將學(xué)習(xí)如何以編程方式處理PDF文件中的圖像。特別是,本文將介紹如何使用Java添加,提取,刪除或替換PDF文件中的圖像。

    • 使用Java在PDF中添加圖像
    • 使用Java從PDF提取圖像
    • 使用Java從PDF刪除圖像
    • 使用Java替換PDF中的圖像

    Aspose.PDF for Java是功能強(qiáng)大的API,可為您提供多種PDF操作功能。該API可讓您無(wú)縫處理PDF文件中的文本,注釋或圖像。感興趣的朋友可點(diǎn)擊下方按鈕下載最新版。

    點(diǎn)擊下載最新版Aspose.PDF for Java

    PDF處理控件Aspose.PDF功能演示:使用Java添加,提取,刪除或替換PDF文件中的圖像

    使用Java在PDF文件中添加圖像

    以下是使用Java在PDF文件中添加圖像的步驟。

    • 首先,創(chuàng)建Document 類的實(shí)例 以加載PDF文檔。
    • 使用Document.getPages()。get_Item(int)方法獲取要添加圖像的頁(yè)面。
    • 將圖像文件加載到FileInputStream對(duì)象中。
      • 將新頁(yè)面添加到PDF文檔并設(shè)置其屬性。
      • 從列表中將每個(gè)圖像文件加載到文件流中。
      • 將圖像添加到頁(yè)面的段落集合中。
    • 使用Page.getResources().getImages().add(FileInputStream)方法將圖像添加到頁(yè)面的資源中。
    • 使用運(yùn)算符將圖像放置在頁(yè)面上:
      • GSave運(yùn)算符可保存當(dāng)前的圖形狀態(tài)。
      • ConcatenateMatrix運(yùn)算符,用于指定要放置圖像的位置。
      • Do運(yùn)算符在頁(yè)面上繪制圖像。
      • GRestore操作員保存更新的圖形狀態(tài)。
    • 最后,使用Document.save(string)方法保存更新的PDF文件。

    以下代碼示例顯示了如何使用Java將圖像添加到PDF文件。

    // Open a document
    Document pdfDocument1 = new Document("input.pdf");
    
    // Set coordinates
    int lowerLeftX = 100;
    int lowerLeftY = 100;
    int upperRightX = 200;
    int upperRightY = 200;
    
    // Get the page you want to add the image to
    Page page = pdfDocument1.getPages().get_Item(1);
    
    // Load image into stream
    java.io.FileInputStream imageStream = new java.io.FileInputStream(new java.io.File("input_image1.jpg"));
    
    // Add an image to the Images collection of the page resources
    page.getResources().getImages().add(imageStream);
    
    // Using the GSave operator: this operator saves current graphics state
    page.getContents().add(new Operator.GSave());
    
    // Create Rectangle and Matrix objects
    Rectangle rectangle = new Rectangle(lowerLeftX, lowerLeftY, upperRightX, upperRightY);
    Matrix matrix = new Matrix(new double[] { rectangle.getURX() - rectangle.getLLX(), 0, 0, rectangle.getURY() - rectangle.getLLY(), rectangle.getLLX(), rectangle.getLLY() });
    
    // Using ConcatenateMatrix (concatenate matrix) operator: defines how image must be placed
    page.getContents().add(new Operator.ConcatenateMatrix(matrix));
    XImage ximage = page.getResources().getImages().get_Item(page.getResources().getImages().size());
    
    // Using Do operator: this operator draws image
    page.getContents().add(new Operator.Do(ximage.getName()));
    
    // Using GRestore operator: this operator restores graphics state
    page.getContents().add(new Operator.GRestore());
    
    // Save the new PDF
    pdfDocument1.save("Updated_document.pdf");
    
    // Close image stream
    imageStream.close();

    使用Java從PDF文件中提取圖像

    以下是使用Java從PDF文檔提取圖像的步驟。

    • 創(chuàng)建Document 類的實(shí)例 以加載PDF文檔。
    • 使用Document.getPages()。get_Item(int).getResources()。getImages()。get_Item(int)方法將所需圖像提取到XImage對(duì)象中。
    • 還可以遍歷圖像集合以提取并保存所有圖像。
    • 最后,使用OutputStream將提取的圖像保存為文件。

    以下代碼示例顯示了如何使用Java從PDF文件提取圖像。

    // Open a document
    Document pdfDocument = new Document("input.pdf");
    
    // Extract a particular image
    XImage xImage = pdfDocument.getPages().get_Item(1).getResources().getImages().get_Item(1);
    
    // Create stream object to save the output image
    java.io.OutputStream output = new java.io.FileOutputStream("output.jpg");
    
    // Save the output image
    xImage.save(output);
    
    // Close stream
    output.close();

    使用Java從PDF文件中刪除圖像

    以下是使用Java從PDF文件中刪除圖像的步驟。

    • 將PDF文件加載到 Document 對(duì)象中。
    • 使用以下方法之一刪除所需的圖像。
      • delete()從集合中刪除圖像。
      • delete(int index)按索引從集合中刪除圖像。
      • delete(String name)按名稱從集合中刪除圖像。
    • 最后,使用Document.save(string)方法保存更新的PDF文件。

    以下代碼示例顯示了如何使用Java刪除PDF中的圖像。

    // Open a document
    Document pdfDocument = new Document("input.pdf");
    
    // Delete a particular image
    pdfDocument.getPages().get_Item(1).getResources().getImages().delete(1);
    
    // Save the updated PDF file
    pdfDocument.save("output.pdf");

    使用Java替換PDF文件中的圖像

    以下是使用Java替換PDF文件中的圖像的步驟。

    • 將PDF文件加載到 Document 對(duì)象中。
    • 將新圖像加載到FileInputStream對(duì)象中。
    • 使用Document.getPages()。get_Item(int).getResources()。getImages()。replace(int,F(xiàn)ileInputStream)方法通過(guò)指定索引來(lái)替換圖像。
    • 最后,使用Document.save(string)方法保存更新的PDF文件。

    以下代碼示例顯示了如何使用Java替換PDF中的圖像。

    // Open a document
    Document pdfDocument = new Document("input.pdf");
    
    // Replace a particular image
    pdfDocument.getPages().get_Item(1).getResources().getImages().replace(1, new java.io.FileInputStream(new java.io.File("apose.png")));
    
    // Save the updated PDF file
    pdfDocument.save("output.pdf");

    如果您有任何疑問(wèn)或需求,請(qǐng)隨時(shí)加入Aspose技術(shù)交流群(761297826),我們很高興為您提供查詢和咨詢
    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();