glv
July 29, 2025, 7:36pm
2
Hello,
It looked good with P2D renderer!
Do you have scaling set in Windows?
I have scaling set to 125% and often see this issue with the default renderer which is JAVA2D if it is not added to size()
.
Try another renderer (JAVA2D is default, FX2D or P2D):
Hi there!
I have been using processing again after sometime and I don’t understand why images are so pixelated. I am using processing 4.4.4 in Java mode in my pc and all the sketches are really pixelated, it doesn’t matter if a have 2 code lines or 200. How can I get clear images, please?
size (500,500);
background(255);
triangle(250,100, 100,400, 400,400);
save("image.png");
[prueba]
This shows differences:
Hello folks!
My exploration of a launcher for PApplets with different renderers.
This was used primarily for testing Windows scaling on my W10 system and how it affects the sketch window.
Code:
/**
* Launcher for Multi-Renderer PApplets
*
* Author: glv
* Date: 2025-07-07
*
* Description:
* Launches four separate Processing sketches (PApplets) using different renderers:
* - JAVA2D
* - P2D
* - P3D
* - FX2D
*
* Each renderer runs in its own thread, with readiness flags for commu…
Search for this in the forum:
pixelDensity(1)
It appears to solve a lot of issues.
Reference:
:)