-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.3.0
-
None
-
x86
-
windows_nt
Spurious lines appear when filling text outlines on win32.
This behavior was not seen in the beta release, and occurs only on win32.
The following program illustrates the problem.
import java.awt.*;
import java.awt.event.*;
import java.awt.font.*;
import java.awt.geom.*;
import java.applet.Applet;
public final class TestOutline extends Applet {
Shape outline;
public void paint(Graphics g) {
Graphics2D g2d = (Graphics2D) g;
if (outline == null) {
Font font = new Font("default", Font.PLAIN, 144);
GlyphVector gv = font.createGlyphVector(g2d.getFontRenderContext(), "OO");
gv.performDefaultLayout();
Point2D pt = gv.getGlyphPosition(1);
double delta = -pt.getX() / 2.0;
pt.setLocation(pt.getX() + delta, pt.getY());
gv.setGlyphPosition(1, pt);
pt = gv.getGlyphPosition(2);
pt.setLocation(pt.getX() + delta, pt.getY());
gv.setGlyphPosition(2, pt);
Rectangle2D bounds = gv.getLogicalBounds();
Rectangle d = getBounds();
float x = (float)((d.width - bounds.getWidth())/2 + bounds.getX());
float y = (float)((d.height - bounds.getHeight())/2 - bounds.getY());
System.out.println("loc: " + x + ", " + y);
outline = gv.getOutline(x, y);
}
g2d.setColor(Color.black);
g2d.fill(outline);
}
public static void main(String[] args) {
Frame f = new Frame("Test Outline");
f.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
Applet a = new TestOutline();
a.init();
f.add(a);
f.setSize(200, 250);
f.show();
}
}
This behavior was not seen in the beta release, and occurs only on win32.
The following program illustrates the problem.
import java.awt.*;
import java.awt.event.*;
import java.awt.font.*;
import java.awt.geom.*;
import java.applet.Applet;
public final class TestOutline extends Applet {
Shape outline;
public void paint(Graphics g) {
Graphics2D g2d = (Graphics2D) g;
if (outline == null) {
Font font = new Font("default", Font.PLAIN, 144);
GlyphVector gv = font.createGlyphVector(g2d.getFontRenderContext(), "OO");
gv.performDefaultLayout();
Point2D pt = gv.getGlyphPosition(1);
double delta = -pt.getX() / 2.0;
pt.setLocation(pt.getX() + delta, pt.getY());
gv.setGlyphPosition(1, pt);
pt = gv.getGlyphPosition(2);
pt.setLocation(pt.getX() + delta, pt.getY());
gv.setGlyphPosition(2, pt);
Rectangle2D bounds = gv.getLogicalBounds();
Rectangle d = getBounds();
float x = (float)((d.width - bounds.getWidth())/2 + bounds.getX());
float y = (float)((d.height - bounds.getHeight())/2 - bounds.getY());
System.out.println("loc: " + x + ", " + y);
outline = gv.getOutline(x, y);
}
g2d.setColor(Color.black);
g2d.fill(outline);
}
public static void main(String[] args) {
Frame f = new Frame("Test Outline");
f.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
Applet a = new TestOutline();
a.init();
f.add(a);
f.setSize(200, 250);
f.show();
}
}
- duplicates
-
JDK-4277201 win32: invoking fill on a brand new Graphics object may stroke as well
-
- Closed
-