You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by "Alexandre (JIRA)" <ji...@apache.org> on 2018/09/04 16:21:00 UTC

[jira] [Created] (PDFBOX-4310) Remove all images from a page

Alexandre created PDFBOX-4310:
---------------------------------

             Summary: Remove all images from a page
                 Key: PDFBOX-4310
                 URL: https://issues.apache.org/jira/browse/PDFBOX-4310
             Project: PDFBox
          Issue Type: Wish
          Components: PDModel
    Affects Versions: 2.0.11
            Reporter: Alexandre
             Fix For: 1.8.16


Hello Apache contributors,

I am looking forward to remove all image from a pdf page.

For the time being, I am doing the following and it is not working. What's missing?
{code:java}
PDPage page = document.getPage(p);             
PDResources resources = page.getResources();             resources.getXObjectNames().forEach((cosName) -> {             
PDXObject image; 
try { 
   image = resources.getXObject(cosName);             
   if (resources.isImageXObject(cosName)) {   
     resources.getCOSObject().removeItem(cosName);           
     page.setResources(resources);            
     page.getCOSObject().removeItem(cosName);             
   }
} 
catch (IOException e) { }             
});

{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@pdfbox.apache.org
For additional commands, e-mail: dev-help@pdfbox.apache.org