HWPFDocument wordDoc = new HWPFDocument(new FileInputStream(fileName));
List
You're getting at the pictures the wrong way, which is why you're not finding any positions!
What you need to do is process each CharacterRun of the document in turn. Pass that to the PicturesTable, and check if the character run has a picture in. If it does, fetch back the picture from the table, and you know where in the document it belongs as you have the run it comes from
At the simplest, it'd be something like:
PicturesSource pictures = new PicturesSource(document);
PicturesTable pictureTable = document.getPicturesTable();
Range r = document.getRange();
for(int i=0; i
You can find a good example of doing this in the Apache Tika parser for Microsoft Word .doc, which is powered by Apache POI