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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to