https://issues.apache.org/bugzilla/show_bug.cgi?id=52516
Yegor Kozlov <ye...@dinom.ru> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO --- Comment #2 from Yegor Kozlov <ye...@dinom.ru> 2012-02-22 12:09:55 UTC --- I can't reproduce it. Here is my program based on your code snippet and I see "öäå" in the output, see attached. SlideShow ppt = new SlideShow(); Slide slide = ppt.createSlide(); TextBox shape = new TextBox(); RichTextRun rt = shape.getTextRun().getRichTextRuns()[0]; shape.setHorizontalAlignment(TextBox.AlignLeft); rt.setFontName("Times New Roman"); shape.setText("testingöäåendtesting"); 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(); Please post full Java code that generates problematic output. Yegor -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org For additional commands, e-mail: dev-h...@poi.apache.org