-
Bug
-
Resolution: Fixed
-
P3
-
1.1, 1.2.0, 1.3.0
-
kestrel
-
generic, x86, sparc
-
generic, solaris_2.5, solaris_2.6, windows_95, windows_98, windows_nt
The source below renders plain text. I'm expecting the text to be ITALIC.
import java.awt.*;
public class test extends Canvas {
public test() {
setBackground(Color.white);
}
public void paint(Graphics g) {
g.setFont(new Font("Arial", Font.PLAIN, 32).deriveFont(Font.ITALIC));
g.drawString("Arial Italic", 10, 150);
}
public static void main(String s[]) {
Frame f = new Frame("test");
f.add("Center", new test());
f.pack();
f.setSize(new Dimension(400,300));
f.show();
}
}
java full version "JDK-1.2fcs-M"
import java.awt.*;
public class test extends Canvas {
public test() {
setBackground(Color.white);
}
public void paint(Graphics g) {
g.setFont(new Font("Arial", Font.PLAIN, 32).deriveFont(Font.ITALIC));
g.drawString("Arial Italic", 10, 150);
}
public static void main(String s[]) {
Frame f = new Frame("test");
f.add("Center", new test());
f.pack();
f.setSize(new Dimension(400,300));
f.show();
}
}
java full version "JDK-1.2fcs-M"
- duplicates
-
JDK-4281230 Styled font selection still not working.
-
- Closed
-
-
JDK-4176870 Lucida Sans Typewriter displays unknown glyph for \u05b6 - <Hebrew point SEGOL>
-
- Closed
-
-
JDK-4203717 Unable to use Font names ending in Bold, Italic, or BoldItalic
-
- Closed
-
-
JDK-4212045 style in setFont() works in Netscape/IE4 but not Windows runtime VM
-
- Closed
-
- relates to
-
JDK-4292477 On Canvas, Cannot Change Font Style without changing font size
-
- Resolved
-