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.
...@comet.ocn.ne.jp] Sent: Sunday, July 21, 2013 10:16 AM To: user@tika.apache.org Subject: How to extract autoshape text in Excel 2007+ Hi, I am using Tika 1.3 and Solr 4.3.1. I'd like to extract autoshape text in Excel 2007+(.xlsx), but I can't. I tried to extract from some MS office files. The results

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

How to extract autoshape text in Excel 2007+

2013-07-21 Thread Hiroshi Tatsumi
extract autoshape text.) - Excel 2007+(.xlsx) Is this a bug? If you know, could you tell me how to extract autoshape text in Excel 2007+? Thanks, Hiro.