Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4179223

Font("Arial", Font.PLAIN, 32).deriveFont(Font.ITALIC) renders plain text

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.3.0
    • 1.1, 1.2.0, 1.3.0
    • client-libs
    • 2d
    • 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"

            pkejriwasunw Parry Kejriwal (Inactive)
            blichtensunw Brian Lichtenwalter (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: