I want to run Processing sketches from the terminal, and not have a display window show up.
Currently, I can run processing from the terminal using the processing-java command and save my files where I’d like to.
However, I’d like to run multiple such commands back to back without having to close the display window after every command, as it is the only thing that is keeping me from automating my workflow.
I have looked at this link, but it only works for Linux operating systems.
Is there way around this?
Worst case scenario that I can see is to import all the processing functionality into Java and then run the java files from the terminal? If this is the case, I would appreciate any useful links/tutorials that you guys might have links to, as I would be doing something like this for the first time. I am an inexperienced Java programmer.
Would the PApplet work without a settings() function?
Would it be possible to use Processing as a Java library and the save the output to a PGraphics file?
I didn’t express what I meant regarding the PGraphics file well. Anyways, it doesn’t matter.
Interestingly, I found the solution I needed in the PDF Export Library for Processing. They have an option to save to PDF without opening the display window!
Sir, no shame. I just tested your tutorial, yeah in 2025, 7 years later. And it does still work. It took me 15min to do what I wanted to do, youre a hero. Wherever you are I wish you good luck
Also, whenever someones search “Run Processing sketch without window” or “Run processing in the terminal” or something similar this forum entry its one of the top 3, so yeah, youve helpep a lot of people despite probably no one told you
If you use the sketch format in the reference and a copy of 'core.jar’ is placed in the sketch folder, the command line code (in Terminal) can be reduced to a one-liner: java -cp "core.jar" MySketch.java, obviating the need for the ‘javac’ line of code. As also noted in the reference, core.jar is found in the Processing.app bundle at Contents/Java/core/library. On a Mac, bundle contents are shown by selecting the Processing.app and then right clicking and selecting ‘Show Package Contents’ from the popup menu. This method was not tested on other platforms.
Source code in your favorite editor:
import processing.core.PApplet;
public class MySketch extends PApplet{
public void settings(){
size(500, 500);
}
public void setup(){
surface.setTitle("Click on rectangle to change color.");
}
public void draw(){
background(209);
rect(mouseX -20, mouseY - 20, 40, 40);
}
public void mousePressed(){
println("mouse pressed.");
fill(random(255),random(255),random(255));
}
public static void main(String[] args){
String[] processingArgs = {"MySketch"};
MySketch mySketch = new MySketch();
PApplet.runSketch(processingArgs, mySketch);
}
}
println() output is shown in Terminal and may be used for limited debugging. Hitting the up arrow will re-enter the last command so that you do not have to re-type it: java -cp "core.jar" MySketch.java
It does work perfect. The link above has the same information (same method) and its 7 years old. However it doesnt answer the question of using all processing functionality and everything but without creating a window (We can clearly see a window being created here on settings). Why we want this? Maybe we’re using another type of window, maybe for OpenGL, or we’re only not using a window at all, just a terminal, but we want all processing power and utility (Like PGraphics, PImage, JSONObject, PVector, etc etc etc). There are plenty of reasons