Wednesday, March 23, 2016

Magazine Cover


I  edited this photo of me using only the spot healing brush tool to remove small blemishes on my skin. I thought the lighting and color of this image was good as it is. I chose to make this a Us Weekly magazine however I changed the text from overlapping bubble letters to slim bold letters. The images I used for my magazine are 1.) the image of me, 2.) the barcode, 3.) a photo of Kendall Jenner, 4.) a photo of Gigi Hadid and 5.) the "Darling the art of being a woman" text was actually the title font for another magazine but I made it like it was an article in the magazine. Some of the words are a little hard to read because they overlap my body and the print on my cover up is very busy but overall I really like how this project turned out.

Monday, March 21, 2016

Me in a photoshopped photo



For our first photoshop assignment, I combined this picture of myself into this photo of Mulder and Scully from The X Files. The X Files is my favorite television show so I was very excited to do this assignment. I also worked with Photoshop a little bit in high school so this program was more familiar to me than Illustrator. Here is the finished product:


I attempted to add a bit more light to my face to make it stand out like Mulder and Scully's and adjusted the black and white color on it. To crop this image out, I used the magnetic lasso tool and the lasso tool to crop any excess pieces of the background image that were still attached to the figure. I blurred the edges of my body just a little bit to make my body look a little less like a cut out. I am happy with the way this image turned out and I like how it looks like I am walking out of the smoke from the background.

Sunday, March 20, 2016

HTML Project


For my first HTML project I made a cartoon bear. This project was definitely the most challenging project I have done this semester because I have never attempted to do coding on Text Wrangler before. To make this bear, I eyed a chart to find the x and y values but I didn't actually draw this image on the chart first and then find the numbers. I did a lot of guessing on the numbers and found that to be easier for me than doing the math to get  the numbers. Here is the complete code I used to make this bear:

<!DOCTYPE HTML>
<html>
<head>
<script>
window.onload = function() {
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");

////////////////////////////////////// start below this line ˇˇˇˇˇˇˇˇˇˇ


//background
context.beginPath();
context.rect(0, 0, 800, 600);
context.fillStyle = '#FFCCFF';
context.fill();


//head
context.beginPath();
context.arc(400, 275, 150, 0, 2*Math.PI, false);
context.fillStyle = '#663300';
context.fill();


//nose
context.beginPath();
context.arc(400, 285, 50, 0, 2*Math.PI, false);
context.fillStyle = '#996600';
context.fill();


//ears
context.beginPath();
context.arc(300, 115, 40, 0, 2*Math.PI, false);
context.fillStyle = '#996600';
context.fill();
context.beginPath();
context.arc(500, 115, 40, 0, 2*Math.PI, false);
context.fillStyle = '#996600';
context.fill();


//nostrils
context.beginPath();
context.arc(380, 290, 15, 0, 2*Math.PI, false);
context.fillStyle = 'black';
context.fill();
context.beginPath();
context.arc(420, 290, 15, 0, 2*Math.PI, false);
context.fillStyle = 'black';
context.fill();


//mouth
context.beginPath();
context.moveTo(300, 325)
context.quadraticCurveTo(400, 475, 500, 325);
context.lineWidth = 6;
context.lineCap = 'round'
context.stroke();


//eyes
context.beginPath();
context.arc(350, 205, 20, 0, 2*Math.PI, false);
context.fillStyle = 'white';
context.fill();
context.beginPath();
context.arc(460, 205, 20, 0, 2*Math.PI, false);
context.fillStyle = 'white';
context.fill();


//pupils
context.beginPath();
context.arc(350, 205, 12, 0, 2*Math.PI, false);
context.fillStyle = 'black';
context.fill();
context.beginPath();
context.arc(460, 205, 12, 0, 2*Math.PI, false);
context.fillStyle = 'black';
context.fill();



////////////////////////////////////// end above this line ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ

};

</script>
</head>
<body>
<canvas id="myCanvas" width="800" height="600"></canvas>
</body>
</html>