Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
how to extract all images from a .ppt file using Android with help of Apache poi?

I am working on ppt viewer for Android . I have extracted all the text from a ppt with the help of Apache POI API but unable to extract images in a ppt file. I would be happy to know the results.... My codes are here link

share|improve this question

marked as duplicate by Paresh Mayani, Gagravarr, Bill the Lizard Apr 12 '12 at 14:05

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Check the following code for reading all the images in an PPTX file :

SlideShow ppt = new SlideShow(new HSLFSlideShow("slideshow.ppt"));

  //extract all pictures contained in the presentation
  PictureData[] pdata = ppt.getPictureData();
  for (int i = 0; i < pdata.length; i++){
    PictureData pict = pdata[i];

    // picture data
    byte[] data = pict.getData();

    int type = pict.getType();
    String ext;
    switch (type){
      case Picture.JPEG: ext=".jpg"; break;
      case Picture.PNG: ext=".png"; break;
      case Picture.WMF: ext=".wmf"; break;
      case Picture.EMF: ext=".emf"; break;
      case Picture.PICT: ext=".pict"; break;
      default: continue;
    }
    FileOutputStream out = new FileOutputStream("pict_"+i + ext);
      out.write(data);
      out.close();

  }

References : http://poi.apache.org/slideshow/how-to-shapes.html

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.