[
https://issues.apache.org/jira/browse/PDFBOX-1307?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14362460#comment-14362460
]
David Hoffer commented on PDFBOX-1307:
--------------------------------------
Upon further review, in my case the images were flipped not inverted so I
re-flipped the image after it was created which works for me.
> extracted images from a PDF sometimes come out inverted
> -------------------------------------------------------
>
> Key: PDFBOX-1307
> URL: https://issues.apache.org/jira/browse/PDFBOX-1307
> Project: PDFBox
> Issue Type: Bug
> Components: Rendering
> Affects Versions: 1.6.0
> Reporter: Ian Holsman
> Priority: Minor
> Fix For: 2.0.0
>
> Attachments: IIIm1.jpg, IIIm2.jpg, invertedImage.pdf
>
>
> Hi.
> I am extracting images from a PDF (using the code below).
> sometimes the images appear inverted
> PDResources r = page.getResources();
> Map<String, PDXObjectImage> images = r.getImages();
> for (Map.Entry<String, PDXObjectImage> e : images.entrySet()) {
>
> BufferedImage bi = null;
> try {
> bi = ((PDXObjectImage) e.getValue()).getRGBImage();
> } catch (Exception ee) {
> logger.info("can't read image ;-(", ee);
> }
> if (bi != null) {
> currentPage.addImage(bi);
> ((PDXObjectImage)
> e.getValue()).write2file("/tmp/II"+e.getKey());
> }
> }
>
> and i'm not sure, but there may be a memory leak grabbing the images this way
> as well.. but that could in my code.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]