[HSLF] Bug 40143 - Font size

2006-12-19 Thread Tales Paiva Nogueira
and even font.color. This is really annoying. Thanks! -- Tales Paiva - To unsubscribe, e-mail: [EMAIL PROTECTED] Mailing List: http://jakarta.apache.org/site/mail2.html#poi The Apache Jakarta Poi Project: http

Re: PPT Unicode

2006-12-07 Thread Tales Paiva Nogueira
, without styles. Thanks a lot, -- Tales Paiva Nick Burch wrote: On Tue, 5 Dec 2006, Tales Paiva Nogueira wrote: When PowerPoint stores text in Unicode a unknown char (byte value = 0) is placed between every normal char making the text 2 times longer than it really is. TextCharsAtoms, and other

Unsupported features

2006-10-24 Thread Tales Paiva
, Tales Paiva - To unsubscribe, e-mail: [EMAIL PROTECTED] Mailing List: http://jakarta.apache.org/site/mail2.html#poi The Apache Jakarta Poi Project: http://jakarta.apache.org/poi/

Unsupported features

2006-10-24 Thread Tales Paiva
, Tales Paiva - To unsubscribe, e-mail: [EMAIL PROTECTED] Mailing List: http://jakarta.apache.org/site/mail2.html#poi The Apache Jakarta Poi Project: http://jakarta.apache.org/poi/

Re: Numbering formats of lines of text in PPT files

2006-10-09 Thread Tales Paiva
Hi List, I'm experiencing a problem when I try to differ numbered lists from bulleted lists. The paragraph flags should indicate the difference, shouldn't it? thanks in advance, Tales Paiva Erez Eisenstein wrote: Thanks, I'll try that :) -Original Message- From: Yegor Kozlov

[HSLF] Indentation level identification

2006-08-17 Thread Tales Paiva Nogueira
this information is text.offset, is it? When I call it from my main class, it returns -1. I know this is because the RichTextRun inherits the property from the Master. Is there any other way to identify the indentation level for a given RichTextRun? Thanks a lot, Tales Paiva

RE: TextBox bug

2006-07-13 Thread Tales Paiva Nogueira
Hi, I noticed this problem few days ago, I made a little change in the code, and it worked properly for my needs. The change I made was add an test to ensure that the _txtrun isn't null. Below is the code for the setSheet(Sheet sheet) in the TextBox class: public void setSheet(Sheet

RE: TextBox bug

2006-07-13 Thread Tales Paiva Nogueira
[] rt; if (_txtrun == null) rt = new RichTextRun[0]; else rt = _txtrun.getRichTextRuns(); Thanks -Original Message- From: Tales Paiva Nogueira [mailto:[EMAIL PROTECTED] Sent: Thursday, July 13, 2006 3:15 PM To: POI Users List Subject: RE: TextBox bug Hi, I noticed

PPT Pictures

2006-06-30 Thread Tales Paiva Nogueira
Hi, I'm having trouble extracting images from PPT files. When I have the same image more than once, the API identifies only one image even if the size differs from one to another. I use the readPictures method in the HSLFSlideShow class which puts the image streams in the a pictstream vector.