sheet.getDrawingPatriarch().getChildren() gets you a collection of shapes on sheet. iterate over shapes, check if it is a instance of HSSFPicture and then use getAnchor() to retrieve position on the slide.
Yegor On Fri, Jun 8, 2012 at 6:14 PM, Dmitry Zamula <[email protected]> wrote: > Hello, guys! > > > > I use ExcelToHtmlConverter, and it's pretty good. But, there is some > problems with rendering images (they are absent in output html). As I learn > in documentation, the best way to get an image is to use > workbook.getAllPictures() method. But, with this method I cannot get any > information about image location in document. Maybe you can suggest me the > best way to process an image with it location? > > -- > Best Regards, > *Dmitry Zamula* > > Saint-Petersburg, Russia > UTC/GMT +4 hours > > Mobile phone: +7 (904) 646-9254 > Skype Id: brantner_ru > E-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
