https://issues.apache.org/bugzilla/show_bug.cgi?id=52516

yangseungsoo <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|3.8-dev                     |3.10

--- Comment #4 from yangseungsoo <[email protected]> ---
hi i'm have to same problem 

SlideShow ppt = new SlideShow();
        Slide slide = ppt.createSlide();

        TextBox shape = new TextBox();
        RichTextRun rt = shape.getTextRun().getRichTextRuns()[0];
        shape.setHorizontalAlignment(TextBox.AlignLeft);
        rt.setFontName("맑은 고딕");
        shape.setText("test테스트123");
        rt.setFontSize(16);
        shape.setAnchor(new java.awt.Rectangle(495, 375, 210, 115));
        slide.addShape(shape);

        FileOutputStream out = new FileOutputStream("52516.ppt");
        ppt.write(out);
        out.close();

"test" and "123" is in the font 맑은 고딕  but the String "테스트" is "굴림"

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to