xxxxxxxxxx
26
/*
This example does not contain json but it is a useful example because this is how you will handle json objects that have a value for an image address.
*/
let picture; //variable for picture
//the setup function runs one time
function setup() {
createCanvas(400, 400) // create the canvas space
noLoop();
}
//this draw function will only draw once because I have noLoop() in the setup function
function draw() {
background('white') //canvas background color
fill('gold')
rect(100,50,210,310) //picture frame area
textSize(20);
textWrap(WORD);
textFont('Georgia');
fill('black')
//using createImg for urls
picture = createImg("https://picsum.photos/200/300?grayscale")
picture.position(105,55)
}