// Ankitha Vasudev
// ankithav@andrew.cmu.edu
// Section B
// Project 09
var portrait;
// load image of friend
function preload() {
var ImageURL = "https://i.imgur.com/vtBUV2J.jpg";
portrait = loadImage(ImageURL);
}
function setup() {
createCanvas(450, 437);
background(0);
frameRate(1000);
portrait.loadPixels();
}
function draw() {
var x = random(width);
var y = random(height);
var px = constrain(floor(x), 0, width);
var py = constrain(floor(y), 0, height);
var size = random(1, 30);
var colorxy = portrait.get(px, py);
var colmouse = portrait.get(mouseX, mouseY);
//circles controlled by mouse
fill(colmouse);
ellipse(mouseX, mouseY, 10);
//text "J" to fill canvas
noStroke();
fill(colorxy);
textSize(size);
textFont('Arial');
text("J", x, y);
}
This project was fun to do because I liked playing with different shapes and text and watching the pixels create the image. I chose a picture that I took of my friend a few months ago. I like this image because of how colorful it is. The images below show different stages of progress during this project.