Click on the piece with your mouse!
When coming up with an idea for this project, I wanted some kind of dynamic or interactive image; I feel like a static portrait can’t portray me. The final product ended up being a face made out of typed letters positioned in a way to create an image with animated and random glitches in the background. I also put the entire thing in a computer frame as if I’m trapped in a confined space. Every time the user clicks on the mouse within the canvas, a glitch effect happens where my portrait duplicates in strange ways, as if I’m malfunctioning. This represents my sensitivity to external stimuli. I guess the portrait is conveying that deep down, behind my exterior (behind the screen), there’s a mess boiling up, especially if I’m exposed to overwhelming experiences.
I used the mouseClicked() built-in function to get the interactivity to work:
// when user clicks on mouse, glitch effect with portrait
function mouseClicked() {
// random offset and color for the portrait 4 at a time to create glitchy effect
var newColor = color(random(255), random(255), random(255));
portrait(newColor, random(-40,40));
// when user clicks on mouse, glitch effect with portrait
function mouseClicked() {
// random offset and color for the portrait 4 at a time to create glitchy effect
for (i=0; i<4; i++) {
var newColor = color(random(255), random(255), random(255));
portrait(newColor, random(-40,40));
}
}
// when user clicks on mouse, glitch effect with portrait
function mouseClicked() {
// random offset and color for the portrait 4 at a time to create glitchy effect
for (i=0; i<4; i++) {
var newColor = color(random(255), random(255), random(255));
portrait(newColor, random(-40,40));
}
}
I also defined my own function to be called throughout the project called portrait() that draws the overall shape of my portrait and takes 2 arguments, textColor and xOffset. Even though the overall shape of the portrait stays the same, the color and position can change because of these arguments.
function portrait(textColor,xOffset) {
// trapezoid part of hair
text("hihihihihi", 150+xOffset,100);
text("hihihihihihihi", 130+xOffset,120);
text("hihihihihihihihihi", 110+xOffset,140);
// start of the two sides of hair
text("hihihihi", 100+xOffset, 160);
text("hihihihi", 230+xOffset, 160);
// two sides of hair looped over and over to create length
for (let i=0; i<8; i++) {
text("hihihi", 100+xOffset,180+20*i);
for (let i=0; i<8; i++) {
text("hihihi", 250+xOffset,180+20*i);
text("O", 180+xOffset, 200);
text("O", 220+xOffset, 200);
text("3", 200+xOffset, 230);
function portrait(textColor,xOffset) {
// styling of the text
fill(textColor);
textSize(25);
textStyle(BOLD);
// trapezoid part of hair
text("hihihihihi", 150+xOffset,100);
text("hihihihihihihi", 130+xOffset,120);
text("hihihihihihihihihi", 110+xOffset,140);
// start of the two sides of hair
text("hihihihi", 100+xOffset, 160);
text("hihihihi", 230+xOffset, 160);
// two sides of hair looped over and over to create length
for (let i=0; i<8; i++) {
text("hihihi", 100+xOffset,180+20*i);
}
for (let i=0; i<8; i++) {
text("hihihi", 250+xOffset,180+20*i);
}
// face
text("O", 180+xOffset, 200);
text("O", 220+xOffset, 200);
text("3", 200+xOffset, 230);
}
function portrait(textColor,xOffset) {
// styling of the text
fill(textColor);
textSize(25);
textStyle(BOLD);
// trapezoid part of hair
text("hihihihihi", 150+xOffset,100);
text("hihihihihihihi", 130+xOffset,120);
text("hihihihihihihihihi", 110+xOffset,140);
// start of the two sides of hair
text("hihihihi", 100+xOffset, 160);
text("hihihihi", 230+xOffset, 160);
// two sides of hair looped over and over to create length
for (let i=0; i<8; i++) {
text("hihihi", 100+xOffset,180+20*i);
}
for (let i=0; i<8; i++) {
text("hihihi", 250+xOffset,180+20*i);
}
// face
text("O", 180+xOffset, 200);
text("O", 220+xOffset, 200);
text("3", 200+xOffset, 230);
}
I had some more ambitious ideas that came to mind (that can be applied in the future); I wanted to make the portrait be typed out over time instead of being shown all at once (since the portrait is made out of text, it’d be cool if everything was typed out in a progression). Or, even when the mouse clicking happens, I can generate random letters to populate the portrait instead of just one type of image with the same letters. I think the potential use of random and animations interest me the most for future iterations of this project. In a way, I also want the visual imagery to evoke more of an eerie feeling as well. Having your entire self reside in the digital world and be made up of text feels a little dystopian and out of touch with reality.
Brainstorming/brain dump throughout couple of days (every time I had an idea, I’d write it down):
- Click on it and the eyes go everywhere, mouth blah blah
- Interaction inspired the idea
- Sensitive nature, external stimuli will cause me to internally explode
- Using text to create drawings and animations
- Density of characters to shade
- Use glitchy random background
- Tv – glitchy colors – glitchy animations