//Shipra Gupta //Processing, Image4 //Load an image and alter it with filter(). size(320, 240); PImage boots; boots = loadImage("boots3.jpg"); boots.filter(INVERT); boots.filter(BLUR, 6); image(boots, 0, 0, 640/2, 480/2);