Loading...
Processing Forum
Recent Topics
All Forums
Screen name:
chris2012
chris2012's Profile
3
Posts
0
Responses
0
Followers
Activity Trend
Last 30 days
Last 30 days
Date Interval
From Date :
To Date :
Go
Loading Chart...
Posts
Responses
PM
Show:
All
Discussions
Questions
Expanded view
List view
Private Message
(NEW) How to save a frame once key is pressed?
[2 Replies]
07-Dec-2010 09:34 AM
Forum:
Programming Questions
im trying to save a frame once a key is pressed?
(NEW) trying to have a programme that loads the next picture once ive clicked on it. why is my code not working!!
[2 Replies]
07-Dec-2010 06:34 AM
Forum:
Programming Questions
int N = 5;
int Current = 0;
PImage[] Pics;
int W,
H;
void Setup_ArrayPic() {
Pics = new PImage[N];
int i;
Pics = new PImage[N];
for(i = 0; i < N; i++) {
Pics[i] = loadImage("T" + (i + 1) +".jpg");
}
W = Pics[0].width;
H = Pics[0].height;
frameRate(0.5);
}
void mousePressed() {
Setup_ArrayPic();
}
void draw() {
size(W, H);
image(Pics[Current], 0, 0);
Current = (Current + 1)%N;
}
(New) can anyone help me and tell me how to load imaages into processing and when i click it changes to the next picture
[1 Reply]
06-Dec-2010 06:00 PM
Forum:
Programming Questions
thank you not so good at processing yet
«Prev
Next »
Moderate user : chris2012
Forum