RE: How to extract autoshape text in Excel 2007+

2013-09-26 Thread Allison, Timothy B.
, 2013 6:30 PM To: user@tika.apache.org Subject: Re: How to extract autoshape text in Excel 2007+ Hi, I'm waiting for the fix of this bug. https://issues.apache.org/jira/browse/TIKA-1100 The POI's bug which is referenced in this issue has fixed already. http://issues.apache.org/bugzilla

Re: How to extract autoshape text in Excel 2007+

2013-09-26 Thread Hiroshi Tatsumi
: Wednesday, September 25, 2013 6:30 PM To: user@tika.apache.org Subject: Re: How to extract autoshape text in Excel 2007+ Hi, I'm waiting for the fix of this bug. https://issues.apache.org/jira/browse/TIKA-1100 The POI's bug which is referenced in this issue has fixed already. http://issues.apache.org

Re: How to extract autoshape text in Excel 2007+

2013-09-25 Thread Hiroshi Tatsumi
-Original Message- From: Allison, Timothy B. Sent: Tuesday, July 23, 2013 5:10 AM To: user@tika.apache.org Subject: RE: How to extract autoshape text in Excel 2007+ Hiroshi, To fix this on your own will take quite a bit of work. I give details below if you do want to go this route

RE: How to extract autoshape text in Excel 2007+

2013-07-22 Thread Allison, Timothy B.
This looks like an area for a new feature in both Tika and POI. I've only looked very briefly into the POI libraries, and I may have missed how to extract text from autoshapes. I'll open an issue in both projects. -Original Message- From: Hiroshi Tatsumi

RE: How to extract autoshape text in Excel 2007+

2013-07-22 Thread Allison, Timothy B.
To: user@tika.apache.org Subject: RE: How to extract autoshape text in Excel 2007+ This looks like an area for a new feature in both Tika and POI. I've only looked very briefly into the POI libraries, and I may have missed how to extract text from autoshapes. I'll open an issue in both projects

Re: How to extract autoshape text in Excel 2007+

2013-07-22 Thread Hiroshi Tatsumi
, 2013 10:27 PM To: user@tika.apache.org Subject: RE: How to extract autoshape text in Excel 2007+ This is one way to access the underlying CTShape that contains the text: XSSFWorkbook wb = new XSSFWorkbook(new FileInputStream(f)); XSSFSheet sheet = wb.getSheetAt(0); XSSFDrawing