xxxxxxxxxx
PImage p;
void setup(){
size(400,400);
p = loadImage("pumpkin.jpg");
}
void draw(){
image(p,0,0);
crop(p,100,100,300,300);
noLoop();
}
void crop(PImage p, int ws, int hs, int we, int he){
for(int i=ws;i<we;i++)
for(int j=hs;j<he;j++)
set(i-ws,j-hs,p.get(i,j));
}