[ 
https://issues.apache.org/jira/browse/PDFBOX-1307?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

John Hewson resolved PDFBOX-1307.
---------------------------------

       Resolution: Fixed
    Fix Version/s: 2.0.0

> 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.1.5#6160)

Reply via email to