Hello,
i need extract RAW image from PDF. The image is EXIF tagged.
 
In PDFBox 1.x it was done with   
  PDXObjectImage.write2OutputStream(os);
 
In PDFBox 2.0.0 image extraction can be done with 
  ImageIO.write((PDImageXObject)image.getImage(), "jpg", os);
but this is not RAW data from PDF, this is complete image reencode, so EXIF is 
lost .
 
How to extract RAW image in PDFBox 2.0.0 ?
 
Thanks

Reply via email to