-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
11.0.8
-
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
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
- relates to
-
JDK-8252213 BOLD style text has different width in Java 11 and Java 8
-
- Closed
-