loadFont(path);
Load a font face
Arguments
path
The font path on the local systemReturns
font
The image referencefunction setup()
createWindow(600, 600);
font = loadFont('/path/to/myfont.ttf');
end
function draw()
background(51);
textFont(font);
text('Hello from lu5!', 30, 50);
end
loadImage(path);
Load a png or jpeg image
Arguments
path
The local image pathReturns
img
The image referencefunction setup()
createWindow(600, 600);
img = loadImage('/path/to/mypic.png');
end
function draw()
background(51);
image(img, 0, 0);
end