https://issues.apache.org/bugzilla/show_bug.cgi?id=47082
--- Comment #1 from Muhammed <[email protected]> 2009-04-23 08:46:37 PST --- Exact reason is POI uses TextLayout to find the width, for which, layout.getBounds().getWidth() return same value for "A", " A", "A ". layout = new TextLayout("A", font, frc); "A" width = 0.26875 layout = new TextLayout(" A", font, frc); " A" width = 0.26875 layout = new TextLayout("A ", font, frc); "A " width = 0.26875 layout = new TextLayout("AA", font, frc); "AA" width = 0.535546875 -- 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: [email protected] For additional commands, e-mail: [email protected]
