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

--- Comment #2 from [email protected] ---
Unless I am missing something obvious, that doesn't seem to change the
behaviour.

                // default rendering options
                graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_ON);
                graphics.setRenderingHint(RenderingHints.KEY_RENDERING,
RenderingHints.VALUE_RENDER_QUALITY);
                graphics.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
RenderingHints.VALUE_INTERPOLATION_BICUBIC);
                graphics.setRenderingHint(RenderingHints.KEY_FRACTIONALMETRICS,
RenderingHints.VALUE_FRACTIONALMETRICS_ON);
                graphics.setRenderingHint(XSLFRenderingHint.GROUP_TRANSFORM
,graphics.getTransform());
                graphics.setColor(Color.BLUE);
                graphics.clearRect(0, 0, width, height);    
                graphics.scale(scale, scale);
                pdp.draw(graphics);

Appreciate the mention of the graphics.getTransform().setToIdentity(); line. I
was just trying to print/modify various attributes to see what perhaps the NPE
was referencing.

-- 
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