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

Applying BOLD style on text does not increase the width in Java 11

XMLWordPrintable

    • x86_64
    • windows_10

      A DESCRIPTION OF THE PROBLEM :
      In Java 8, when BOLD style is applied on a text, width of the font increases.
      But since Java 11, the width of the BOLD font remains same as that of the PLAIN style.

      REGRESSION : Last worked in version 8

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      A sample program (attached) to draw some text in JPanel, using any font and applying BOLD style, can reproduce the issue.

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      The width of the text should be increased (as similar to Oracle Java 8)
      ACTUAL -
      The width of the text does not increase, when BOLD style is applied

      ---------- BEGIN SOURCE ----------
      import javax.swing .*;
      import java.awt .*;

      public class ReproduceBoldIssue extends JPanel {
      static final String line1 = "THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG";
      static final String line2 = "the quick brown fox jumps over the lazy dog";
      static final String line3 = "0123456789";

      @Override
      public void paint(Graphics g) {
      Graphics2D g2 = (Graphics2D) g;

      g2.setFont(new Font("Arial Black", Font.PLAIN, 22));
      g2.setColor(Color.RED);
      g2.drawString(line1, 10, 100);
      g2.drawString(line2, 10, 120);
      g2.drawString(line3, 10, 140);
      }

      public static void main(String[] args) {
      JFrame frame = new JFrame();
      frame.setTitle("Bold Text Demo");
      frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
      frame.add(new ReproduceBoldIssue());
      frame.pack();
      frame.setSize(720, 350);
      frame.setVisible(true);
      }
      }
      ---------- END SOURCE ----------

      FREQUENCY : always


            pnarayanaswa Praveen Narayanaswamy
            webbuggrp Webbug Group
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: