Decreased quality when coding outside the Processing IDE

Hello @Grusat,

I also got this working (x1 scaling) on my W10 PC by passing these to command line in IntelliJ:

This required the following:

image

There is a reference to this in the GitHub resources I shared but I had to do some work on how to inject these into IntelliJ settings to add to command line.

:)

I found the solution to my problem :
Just add

System.setProperty("sun.java2d.uiScale", "1");
before the PApplet.runSketch()

It desactivates the auto scaling with Windows parameters.

Thank you all for your help !

5 Likes