[Bug 63818] PPT to image bug

2019-10-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63818 --- Comment #2 from 蒋勇兵 <253684...@qq.com> --- I used PPTX2PNG utility class to render my .ppt,this problem still exists,I'm sure this is a little bug due to carelessness.This is the console output: Processing F:\公司制度\入职培训.ppt Rendering slide 0

[Bug 63818] PPT to image bug

2019-10-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63818 Andreas Beeker changed: What|Removed |Added OS||All Status|NEW

[Bug 63818] New: PPT to image bug

2019-10-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63818 Bug ID: 63818 Summary: PPT to image bug Product: POI Version: 4.0.0-FINAL Hardware: PC Status: NEW Severity: normal Priority: P2 Component: HSLF

[Bug 45250] Text in ppt is not rendered properly in image

2019-10-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=45250 蒋勇兵 <253684...@qq.com> changed: What|Removed |Added CC||253684...@qq.com -- You are r

[Bug 63813] Special character (greater than equal) converts to '(' text in word documents

2019-10-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63813 --- Comment #6 from teresa@linguamatics.com --- (In reply to Dominik Stadler from comment #5) > Unfortunately this seems to be caused somewhere deep in the Microsoft DOC > binary format, the text-bytes that we read from the document-stream i

[Bug 63813] Special character (greater than equal) converts to '(' text in word documents

2019-10-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63813 --- Comment #5 from Dominik Stadler --- Unfortunately this seems to be caused somewhere deep in the Microsoft DOC binary format, the text-bytes that we read from the document-stream in class TextPiece already results in ") bad one", so there is

Re: Extract Rich Text Field from excel

2019-10-08 Thread savan raiyani
To reproduce excel data you can simply apply styling(bold,italic,hyperlink ,etc) to any cell data of excel I am using Cell.getStringCellValue() to get that styled data but unfortunately getting plain string. On 2019/10/08 12:55:34, Jörn Franke wrote: > Can you provide a code snippet on how you

Re: Extract Rich Text Field from excel

2019-10-08 Thread Axel Howind
Hi, you have to use [Cell.getRichStringCellValue()](https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/Cell.html#getRichStringCellValue--). But I think questions like this rather belong in the [POI user list](https://lists.apache.org/list.html?u...@poi.apache.org). Axel On 2019/10

Re: Extract Rich Text Field from excel

2019-10-08 Thread Jörn Franke
Can you provide a code snippet on how you get the RichtextString? Maybe also a link (not attachment) to a formatted Excel to reproduce the problem? It will facilitate troubleshooting significantly. > Am 08.10.2019 um 21:06 schrieb savan raiyani : > > Hi, > > I am trying to fetch Rich text data

[Bug 63813] Special character (greater than equal) converts to '(' text in word documents

2019-10-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63813 --- Comment #4 from teresa@linguamatics.com --- (In reply to Axel Howind from comment #3) Thanks for looking into this issue. > > - > > Extracting the file on the command line yields: > > axel@xiaolong tmp % unzip ../symbol_test.doc

Extract Rich Text Field from excel

2019-10-08 Thread savan raiyani
Hi, I am trying to fetch Rich text data from excel(data with applied styling like bold,italic,hyperlink etc.) and storing it as a RichTextString object but I am getting plain String object. Do we have any way to keep and store styling of data and send it upfront? If I enter data with HTML tag

[Bug 63813] Special character (greater than equal) converts to '(' text in word documents

2019-10-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63813 --- Comment #3 from Axel Howind --- When reading the word file, text pieces are read by converting `byte[]` to String in `buildInitSB()`. I investigated the raw data passed to that method: - so according to the unicode table, the "greater or e

[Bug 63813] Special character (greater than equal) converts to '(' text in word documents

2019-10-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63813 Axel Howind changed: What|Removed |Added OS||All --- Comment #2 from Axel Howind ---