You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by bu...@apache.org on 2006/04/19 12:47:03 UTC

DO NOT REPLY [Bug 39347] New: - Create TextBox failed when define the font bold or italic

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=39347>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39347

           Summary: Create TextBox failed when define the font bold or
                    italic
           Product: POI
           Version: 3.0-dev
          Platform: Other
        OS/Version: other
            Status: NEW
          Severity: normal
          Priority: P2
         Component: HSLF
        AssignedTo: poi-dev@jakarta.apache.org
        ReportedBy: icespace@gmail.com


When you create a ppt, create a slide and add a textbox, define the font bold 
or italic, the font size will trun to 1. It's too small to seen.
Check the below code:
   public static void test1() {
      try{
         File ppt = new File("D:/temp/a.ppt");
         //HSLFSlideShow hshow = new HSLFSlideShow(new FileInputStream(ppt));
         HSLFSlideShow hshow = new HSLFSlideShow();
         SlideShow show = new SlideShow(hshow);

         Slide slide = show.createSlide();
         
         TextBox box = new TextBox();
//       set box content
//         box.setItalic(true);
         box.setText("Text Box!!");
         // set the box's size
         Rectangle rec = new Rectangle(100,100,100,100);
         box.setAnchor(rec);
         // set text box's color
         //box.setFillColor(Color.BLACK);
         box.setBackgroundColor(Color.BLUE);
         // set text box's font
         box.setFontName("Arial", show);
         box.setFontSize(20);
         box.setBold(true); 
         
         box.setFillColor(Color.BLUE);
         slide.addShape(box);
         
         // line shape
         Line line = new Line();
         line.setAnchor(new java.awt.Rectangle(50, 50, 100, 20));
         line.setLineColor(new Color(0, 128, 0));
         line.setLineStyle(Line.LineDashDotSys);
         slide.addShape(line);
                 
         // write the file
         hshow.write(new FileOutputStream(ppt));
         Trace("Export successful!  " + ppt.getAbsolutePath());
      }catch(Exception e) {
         e.printStackTrace();
      }
   }

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: poi-dev-unsubscribe@jakarta.apache.org
Mailing List:    http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/


DO NOT REPLY [Bug 39347] - Create TextBox failed when define the font bold or italic

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=39347>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39347





------- Additional Comments From yegor@dinom.ru  2006-04-20 12:46 -------
It seems another example of Bug 39324. When it is fixed this issue should be
resolved. 

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: poi-dev-unsubscribe@jakarta.apache.org
Mailing List:    http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/


DO NOT REPLY [Bug 39347] - Create TextBox failed when define the font bold or italic

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=39347>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39347


nick@torchbox.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Additional Comments From nick@torchbox.com  2006-07-02 16:10 -------
As we haven't heard anything to say it doesn't now work, marking as closed.

Please re-open if the problem still exists.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: poi-dev-unsubscribe@jakarta.apache.org
Mailing List:    http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/


DO NOT REPLY [Bug 39347] - Create TextBox failed when define the font bold or italic

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=39347>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39347





------- Additional Comments From nick@torchbox.com  2006-04-21 13:48 -------
A fix for bug 39324 has been committed. Could you please re-try with the latest SVN?

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: poi-dev-unsubscribe@jakarta.apache.org
Mailing List:    http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/