【Processing】真っ白な画像を作成する

画像のサイズと背景の色を設定して、save関数で画像を作成する。

size(1280,720);
background(255,255,255);
save("white.jpg");

今回は、以下のような画像が作成される。

white.jpg

参考

save() / Reference
Saves an image from the display window. Append a file extension to the name of the file, to indicate the file format to ...
タイトルとURLをコピーしました