Hi thx for reply.
I tested today your suggestion, but the prob is still there.

Thats the snippet of the Java2dRenderer.java in FOP in
public BufferedImage getPageImage(PageViewport pageViewport)
-snip-
Graphics2D graphics = currentPageImage.createGraphics();
graphics.setRenderingHint(RenderingHints.KEY_FRACTIONALMETRICS,
RenderingHints.VALUE_FRACTIONALMETRICS_ON);
graphics.setRenderingHint(RenderingHints.KEY_STROKE_CONTROL,
RenderingHints.VALUE_STROKE_PURE);
if (antialiasing)
{
graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_ON);
graphics.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING,
RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
}
if (qualityRendering)
{
graphics.setRenderingHin
(RenderingHints.KEY_RENDERING,RenderingHints.VALUE_RENDER_QUALITY);
}
-snip-

Jeremias from fop-board said it could be perhaps this Bug
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4109583 as i mentioned.

So i gave it a try...
I tried to paint directly to panel instead of painting a bufferedimage and
then painting to the panel, but nothing changed, same prob still there.

Anyone here for other suggestions?

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA2D-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to