Is there a way to increase the default font size for Java GUI applications?

11

5

Is there a way to increase the default font size for Java GUI applications?

I am using someone else’s custom Java tool (no, I do not have the source) to perform text annotation for a research project.

The text within the application is painfully small.

For most Windows applications, changing the system font size settings in the control panel will also change the font size in that application.

However, after increasing the default text size (on Windows 7), the text in this Java application remains excruciatingly small.

skeryl

Posted 2013-10-01T02:29:44.937

Reputation: 213

This is a problem with high resolution displays. Programs like eclipse, blender and mendeley are difficult to use (all with java GUIs). This is a problem also with windows 8. I am adding a bounty. – Juha – 2014-05-31T21:56:03.687

correction to previous: blender is actually not java... although it has similar problem, (font) scaling is not inherited from operating system – Juha – 2014-05-31T22:14:13.967

If the app uses Swing, then it should inherit larger font settings. Anyway it would be great to know (or at least make a guess) which GUI framework uses the app in question. Can you post the screenshot? – Alexey Ivanov – 2014-06-04T06:29:58.047

Answers

3

For what it's worth, I have seen command-line switches that relate to specific packages.

Swing

java -Dswing.aatext=true -Dswing.plaf.metal.controlFont=Tahoma -Dswing.plaf.metal.userFont=Tahoma

Plastic

java -DWindows.controlFont=Tahoma-plain-11 -DWindows.menuFont=Tahoma-plain-12 -DPlastic.controlFont=Tahoma-plain-11 -DPlastic.menuFont=Tahoma-bold-11

harrymc

Posted 2013-10-01T02:29:44.937

Reputation: 306 093

How do I set these parameters? Should I run the application with a different way? What if I don't know if the application is written in Swing ? What if I don't know if the application is written in Plastic ? – thanos.a – 2017-03-31T09:24:39.367

@thanos.a: These are separate questions that you could put up in a new post. – harrymc – 2017-03-31T09:33:23.133

3

Under Windows 10, this could be easily done:

  • select jawaw.exe (or jawaws.exe for jnlp files), it is usually under c:\Program Files (x86)\Java\jre1.8.0_171\bin\
  • Right-click and select Properties.
  • Click the Compatibility tab. Under "Settings," check the Override high DPI scaling behavior option.
  • Under "Scaling performed by" drop-down menu, select System (Enhanced).

You have to repeat this after updates or create a shortcut. (source:windowscentral.com)

hoppy

Posted 2013-10-01T02:29:44.937

Reputation: 81