Hello everybody I am a new user and I have some problem...I hope any of you can help me.
This is part of the code
-----------------------------------------------------------------------------------------------
PImage b;
PImage t;
b = loadImage("piatto.jpg");
t=loadImage("tavolo.jpg");
background(t);
imageMode(CENTER);
image(b, 0, 0, i, i);
-------------------------------------------------------------------------------------------------
and this is is the error:
-------------------------------------------------------------------------------------------
background image must be same size as your application
---------------------------------------------------------------------------------------------
It is possible the window of the application as big as the background image?
Now my window application is little how I can do it bigger?
Tnx
Bye
This is part of the code
-----------------------------------------------------------------------------------------------
PImage b;
PImage t;
b = loadImage("piatto.jpg");
t=loadImage("tavolo.jpg");
background(t);
imageMode(CENTER);
image(b, 0, 0, i, i);
-------------------------------------------------------------------------------------------------
and this is is the error:
-------------------------------------------------------------------------------------------
background image must be same size as your application
---------------------------------------------------------------------------------------------
It is possible the window of the application as big as the background image?
Now my window application is little how I can do it bigger?
Tnx
Bye
1