Invocation of Java2DRenderer.setRenderingHints() has no effect because the
underlying code incorrectly applies them.
In order to fix it, in org.xhtmlrenderer.swing.Java2DRenderer#getImage() the
following code:
newG.getRenderingHints().putAll(renderingHints);
should be replaced with:
newG.addRenderingHints(renderingHints);
because getRenderingHints() produces a disconnected clone.
Original issue reported on code.google.com by folde...@gmail.com on 14 Jun 2012 at 8:28
Original issue reported on code.google.com by
folde...@gmail.com
on 14 Jun 2012 at 8:28