The following applet demonstrates that under win95, the metrics
associated with the "Dialog 12" font don't match the displayed font.
The code displays a string in each of the supported fonts at several
point sizes. It uses the metrics to compute the string length in pixels and
uses the result to place the following string and a vertical line marking
the perceived end of the string. When run under Solaris, it formats
reasonably (though some of the selected fonts are pretty ugly :-). Under
win95, there is a noticeable problem in the formatting of Dialog 12.
This problem was originally reported by Applix, who has been having problems
laying out dialogs boxes because of the discrepancy. --bruce
import java.awt.*;
import java.awt.Font;
import java.awt.FontMetrics;
import java.applet.*;
import java.*;
import java.io.*;
import java.util.*;
import java.lang.*;
//
// Test program to demonstrate incorrect font display
//
public class FontTest extends Applet {
public void paint(Graphics g) {
String[] fontNames = {"Helvetica", "TimesRoman", "Dialog",
"DialogInput", "Courier"};
Font font;
FontMetrics metrics;
for (int pt = 8; pt <= 16; pt += 2) {
int x = 10;
int y = 20 * (pt - 6);
for (int f = 0; f < 5; ++f) {
String str = "[this is " + fontNames[f] + " " + pt + "pt]";
font = new Font(fontNames[f], Font.PLAIN, pt);
metrics = getFontMetrics(font);
g.setFont(font);
g.drawString(str, x, y);
x += metrics.stringWidth(str);
g.drawLine(x, y-10, x, y+10);
}
}
}
// only when stand alone
public static void main(String args[]) {
Frame f = new Frame("Font test");
FontTest view = new FontTest();
view.init();
view.start();
f.add("Center", view);
f.show();
}
}
associated with the "Dialog 12" font don't match the displayed font.
The code displays a string in each of the supported fonts at several
point sizes. It uses the metrics to compute the string length in pixels and
uses the result to place the following string and a vertical line marking
the perceived end of the string. When run under Solaris, it formats
reasonably (though some of the selected fonts are pretty ugly :-). Under
win95, there is a noticeable problem in the formatting of Dialog 12.
This problem was originally reported by Applix, who has been having problems
laying out dialogs boxes because of the discrepancy. --bruce
import java.awt.*;
import java.awt.Font;
import java.awt.FontMetrics;
import java.applet.*;
import java.*;
import java.io.*;
import java.util.*;
import java.lang.*;
//
// Test program to demonstrate incorrect font display
//
public class FontTest extends Applet {
public void paint(Graphics g) {
String[] fontNames = {"Helvetica", "TimesRoman", "Dialog",
"DialogInput", "Courier"};
Font font;
FontMetrics metrics;
for (int pt = 8; pt <= 16; pt += 2) {
int x = 10;
int y = 20 * (pt - 6);
for (int f = 0; f < 5; ++f) {
String str = "[this is " + fontNames[f] + " " + pt + "pt]";
font = new Font(fontNames[f], Font.PLAIN, pt);
metrics = getFontMetrics(font);
g.setFont(font);
g.drawString(str, x, y);
x += metrics.stringWidth(str);
g.drawLine(x, y-10, x, y+10);
}
}
}
// only when stand alone
public static void main(String args[]) {
Frame f = new Frame("Font test");
FontTest view = new FontTest();
view.init();
view.start();
f.add("Center", view);
f.show();
}
}