https://issues.apache.org/bugzilla/show_bug.cgi?id=54433
Yegor Kozlov <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX OS| |All --- Comment #1 from Yegor Kozlov <[email protected]> --- try to add the following line before drawing: graphics.setRenderingHint(XSLFRenderingHint.GROUP_TRANSFORM, new AffineTransform()); P.S. graphics.getTransform() returns a copy of the current transform and graphics.getTransform().setToIdentity() has no effect in your code. The correct code is to get, modify and set: AffineTransform at = graphics.getTransform(); at.setToIdentity(); graphics.setTransform(at); -- 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]
