[
https://issues.apache.org/jira/browse/PDFBOX-4310?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Alexandre updated PDFBOX-4310:
------------------------------
Component/s: (was: PDModel)
> Remove all images from a page
> -----------------------------
>
> Key: PDFBOX-4310
> URL: https://issues.apache.org/jira/browse/PDFBOX-4310
> Project: PDFBox
> Issue Type: Wish
> Affects Versions: 2.0.11
> Reporter: Alexandre
> Priority: Minor
> Attachments: 8325f992-15ff-4cdb-afed-0d8068c67ddc.pdf
>
>
> Hello Apache contributors,
> I am looking forward to remove all images from a pdf page.
> For the moment, I am trying 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}
> Best, A.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]