Monday, November 30, 2015

Project 6: Animation

My animation project was based off of my cruise ship logo that I made earlier in the semester. This was a fun and fairly easy project to do. I really enjoy animation and want to go further into this particular field. I chose to do a fairly simple animation just to get a general feel for how the program worked. Since the company is called Shooting Stars Cruise Lines, I wanted to incorporate a shooting star somehow. I made the setting nighttime with the ship coming on screen from the left and the shooting star almost "hitting" the ship and putting the logo onto the side of it. This is a commercial animation for the cruise line and I think it really conveys the "shooting star" part of the company name. 


Thursday, November 5, 2015

Project 5: Lyrical Collage

The song lyric that I chose for this assignment is 
"Do you believe in magic?" 
I instantly thought of Harry Potter because of the magic they do. I really wanted to give this collage a "good" and an "evil" side to it. Obviously putting Harry Potter on one side with his friends Ron Weasley and Hermione Granger and Voldemort on the other side with his minions Draco Malfoy and Bellatrix Lestrange. I put the picture of Hogwarts being destroyed as the background because I think it's a strong and emotional picture. I enjoyed doing this piece because I really love Harry Potter as well so this was fun to make!


Tuesday, November 3, 2015

Project 4: Magazine Cover

I chose to do a Disney themed magazine! I titled it 
"Disney 101" to give the idea that it would have all kinds of different information about anything and everything Disney! I did my high school senior pictures at Magic Kingdom so I decided to use one of those picture for the cover and write a little blurb about that. I added my own pictures to the rest of the magazine to give it a unique look. I put in pictures of all four of the park icons with a little blurb about "taking a quiz to see which park you belong to" because almost any magazine has some sort of quiz or something of the sort. I also added in the picture of Mr. Gold's pawn shop because any Once Upon a Time fan (like myself) would appreciate seeing that in the Disney's Hollywood Studios! I wanted to use red and blue because they compliment each other really well I think. The bow on my ears is red, so I thought it would definitely match the rest of it pretty well. The part about the new updates coming to Walt Disney World is important too because there are SO MANY new things coming to WDW in the next few years, so of course a magazine filled with Disney information would have something about those updates. I put the pizza in the bottom corner to hint that there's articles about food and that Disney has good food, because they do. Overall, I'm really happy with the way my magazine cover turned out!





Monday, October 26, 2015

Self Insertion


These are the two pictures that I chose to merge together. As you've probably realized by now, I love Disney, so I wanted to put myself onto a parade float with Mickey Mouse! I even put on a Walt Disney World shirt and my ears just for the picture! This was pretty easy for the most part. I used the background eraser tool to help make it look like that I'm actually on the float with Mickey!




Tuesday, October 20, 2015

Just For Fun (Part 2)

Here are a few more projects I did in Illustrator in my free time! 

Grumpy from Snow White and the Seven Dwarfs (done from my own sketch) 
Jack Skellington from The Nightmare Before Christmas (done freehandedly)
Mike Wasowski from Disney's Pixar Monster's Inc. 
Figaro from Pinocchio (phone wallpaper requested by my cousin)
Disgust (my favorite) from Disney's Pixar Inside Out
Joy from Disney's Pixar Inside Out (phone wallpaper requested by my mom)
Sadness and Anger from Disney's Pixar Inside Out (phone wallpaper requested by a friend)

If you also can't tell, I really love Inside Out. :)

Project 3: HTML

I chose to do Minnie Mouse for my HTML5 project because if you haven't noticed already... I love everything Disney and I didn't think she would be just the right sort of challenge! Her bows are normally red, but I wanted to do pink to give it more of a "girly" vibe. I started out coding the head and ears because they are the farthest back in the picture. I used codes for circles for them. Then I moved onto the white part of her face, adding on all of the details (eyes, nose, mouth, etc.) afterwards. Lastly, I made the bow so that it would be on top of everything else in the picture. I had a lot of troubles with the nose at first because I wasn't sure how to make an oval and she looked really silly with just a circle for a nose, so I then used bezier curves to form an oval. Overall, I'm very happy with the way this turned out and didn't have too much trouble with the coding process! 


This was the image and the graph I used for a reference. I originally was going to do Mickey Mouse, but later changed it to Minnie Mouse to make it a little more "girly".


HTML5 Code:

<!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);
var grd = context.createRadialGradient(400, 300, 300, 400, 300, 400);
grd.addColorStop(0, 'pink');
grd.addColorStop(1, 'black');
context.fillStyle = grd;
context.lineWidth = 10;
context.fill();
context.stroke();

//Left Ear
context.beginPath();
context.arc(250, 125, 100, 0, 2 * Math.PI, false);
context.fillStyle = 'black';
context.fill();
context.stroke();

//Right Ear
context.beginPath();
context.arc(550, 125, 100, 0, 2 * Math.PI, false);
context.fillStyle = 'black';
context.fill();
context.stroke();

//Head
context.beginPath();
context.arc(400, 350, 175, 0, 2 * Math.PI, false);
context.fillStyle = 'black';
context.fill();
context.stroke();

//White part of head
context.beginPath();
context.moveTo(400, 225);
context.quadraticCurveTo(200, 150, 275, 375);
context.lineTo(275, 375);
context.quadraticCurveTo(150, 425, 300, 500);
context.lineTo(300, 500);
context.quadraticCurveTo(400, 550, 500, 500);
context.lineTo(500, 500);
context.quadraticCurveTo(650, 425, 525, 375);
context.lineTo(525, 375);
context.quadraticCurveTo(600, 150, 400, 225);
context.closePath();
context.fillStyle = 'rgb(255, 235, 225)';
context.lineWidth = 5;
context.fill();
context.stroke();

//Under eye
context.beginPath();
context.moveTo(350, 375);
context.quadraticCurveTo(400, 350, 450, 375);
context.lineWidth = 3;
context.lineCap = 'round';
context.stroke();

//Left eye (white)
context.beginPath();
context.moveTo(360, 370);
context.quadraticCurveTo(315, 285, 360, 280);
context.lineTo(360, 280);
context.quadraticCurveTo(400, 285, 380, 365);
context.stroke();

//Right eye (white)
context.beginPath();
context.moveTo(440, 370);
context.quadraticCurveTo(485, 285, 440, 280);
context.moveTo(440, 280);
context.quadraticCurveTo(400, 285, 420, 365);
context.stroke();

//Mouth
context.beginPath();
context.moveTo(270, 420);
context.quadraticCurveTo(400, 550, 530, 420);
context.stroke();

//Black of left eye
context.beginPath();
context.arc(370, 350, 12, 0, 2 * Math.PI, false);
context.fillStyle = 'black'
context.fill();
context.stroke();

//Black of right eye
context.beginPath();
context.arc(430, 350, 12, 0, 2 * Math.PI, false);
context.fillStyle = 'black'
context.fill();
context.stroke();

//Left dimple
context.beginPath();
context.moveTo(290, 410);
context.quadraticCurveTo(270, 410, 260, 440);
context.stroke();

//Right dimple
context.beginPath();
context.moveTo(510, 410);
context.quadraticCurveTo(530, 410, 540, 440);
context.stroke();

//Nose
context.beginPath();
context.moveTo(400, 375);
context.bezierCurveTo(350, 375, 350, 425, 400, 425);
context.bezierCurveTo(450, 425, 450, 375, 400, 375);
context.fill();
context.stroke();

//Bow
context.beginPath();
context.moveTo(360, 80);
context.quadraticCurveTo(325, 1, 250, 10);
context.quadraticCurveTo(165, 40, 270, 225);
context.quadraticCurveTo(360, 250, 375, 175);
context.quadraticCurveTo(400, 190, 425, 175);
context.quadraticCurveTo(430, 230, 530, 225);
context.quadraticCurveTo(650, 40, 550, 10);
context.quadraticCurveTo(465, 15, 430, 90);
context.quadraticCurveTo(400, 50, 360, 80);
context.closePath();
context.fillStyle = 'rgb(200, 0, 100)';
context.strokeStyle = 'black'
context.fill();
context.stroke();

//Bow details
context.beginPath();
context.moveTo(375, 175);
context.quadraticCurveTo(400, 100, 340, 70);
context.stroke();

//Bow details
context.beginPath();
context.moveTo(425, 175);
context.quadraticCurveTo(450, 120, 430, 90);
context.stroke();

//Bow details
context.beginPath();
context.moveTo(440, 123);
context.quadraticCurveTo(450, 100, 500, 125);
context.stroke();

//Middle eyelash (left eye)
context.beginPath();
context.moveTo(350, 280);
context.quadraticCurveTo(340, 265, 340, 240);
context.stroke();

//Left eyelash (left eye)
context.beginPath();
context.moveTo(340, 290);
context.quadraticCurveTo(325, 265, 330, 250);
context.stroke();

//Right eyelash (left eye)
context.beginPath();
context.moveTo(365, 280);
context.quadraticCurveTo(350, 260, 355, 245);
context.stroke();

//Middle eyelash (right eye)
context.beginPath();
context.moveTo(450, 280);
context.quadraticCurveTo(460, 265, 460, 240);
context.stroke();

//Left eyelash (right eye)
context.beginPath();
context.moveTo(460, 290);
context.quadraticCurveTo(470, 270, 470, 250);
context.stroke();

//Right eyelash (right eye);
context.beginPath();
context.moveTo(435, 280);
context.quadraticCurveTo(450, 260, 445, 245);
context.stroke();


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

};

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

Monday, October 12, 2015

Heart in HTML5

Here is the heart that I made in TextWrangler 
for the in class assignment!

The code for the image:

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

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


//Heart
context.beginPath();
context.moveTo(400, 200);
context.bezierCurveTo(300, 0, 50, 200, 250, 350);
context.lineTo(250, 350);
context.quadraticCurveTo(400, 450, 400, 500);
context.lineTo(400, 500);
context.quadraticCurveTo(400, 450, 550, 350);
context.lineTo(550, 350);
context.bezierCurveTo(700, 200, 500, 0, 400, 200);
context.strokeStyle = 'rgb(255, 0, 100)';
context.stroke();


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

};

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

Monday, October 5, 2015

Just For Fun

Here are a couple projects that I did just for fun in my free time! As you can tell, they are all Disney related. Anyone who knows me, knows that I'm Disney obsessed. :)

Cinderella's Castle during nighttime fireworks show Wishes

Bing Bong from Disney's Pixar Inside Out



Stitch from Disney's Lilo and Stitch

Project 2: Vector Illustration

I decided to do a vector illustration of a penguin because penguins are my favorite animal and they're adorable. For the most part, this was a fairly simple project, except for a few things. The coloring of orange/yellow around the penguin's head was the trickiest part I think. I used a gradient for the coloring, but at first it wasn't really blending into the rest of the penguin, it had very sharp edges. Then I discovered the Gaussian Blur tool and I believe that gave it the effect that it needed. Overall, I had a lot of fun doing this project!


Monday, September 28, 2015

Exquisite Corpse

This is my little alien I made for my exquisite corpse project. I wanted to use shades of blue and purple because I think they compliment each other really well. For example, I wanted to blend the colors in the body and these two colors blended very well together. I tried to reuse colors for different parts of her body as well, so that she didn't look like a giant rainbow. Also, I added some ponytails for her hair so that she looked a little more feminine. The background is her planet with the sunrise in the background to give it a nice color. 



Tuesday, September 22, 2015

Project 1: Logo

I chose to do a logo for a cruise line company. The name of the company is Shooting Stars Cruise Lines. I wanted to do a color scheme of blues and yellow because stars are yellow and the sky and water are blue. The audience is more family oriented, so I used fun colors and fun fonts to catch both sides of the spectrum. I decided to put the font on top of the star because I feel as though this will make it easier to resize. Overall, I think my logo will catch the attention of those who would want to take a cruise with Shooting Stars Cruise Lines. 

Monday, September 21, 2015

Sunday, September 13, 2015

Logo Critiques

1. Disney Cruise Line
I think their logo is really good. It has a good color combination and it is easy to recognize because of the Mickey silhouette.

2. Norwegian Cruise Line
I think their's is almost a little too complex. There is a lot of type and is too little to read.

3. Celebrity Cruises
It is pretty simple and easy to identify, but I don't understand what an "X" has to do with "celebrity". 

4. Royal Caribbean International
There is a lot going on in this logo. They use two different fonts for the name AND they use a symbol too.

5. Silversea
This one is pretty easy to read and has a simple symbol. They use a unique font and is recognizable. 

Sunday, September 6, 2015

5 Logo Ideas

1. Travel Agency - Journey
A logo involving different vacation locations. 

2. Cruise Line - Shooting Stars Cruise Line
A simple logo with maybe some waves or ocean type pictures involved.

3. Candy Store - Choco-love
A logo with the shape of some type of candy with name or initials on it.

4. Music Label - Rad Records
A logo with a unique styled letter (name of company) in the center of circle. 

5. Photography Company - Dream Day Photography 
This would be a wedding photography company, so something a little fancy for the logo.
  

Monday, August 31, 2015

About Me

My name is Mariah Miller and I grew up in a very small town in Missouri called Mexico, yes it is a real place. I am a freshman at the University of Tampa with a major in Digital Arts and a minor in Applied Dance. I have always been big into art and recently digital arts and I also have a huge obsession with anything Disney related. With loving art and Disney, I really wanted to combine the two for my career. My biggest goal would to become an animator for the Walt Disney Studios or even Pixar. What I really hope to get out of this class is to just mainly expand my knowledge of different programs from what I already know. I'm really excited for this class and to see how my skills grow. 

This is definitely my favorite piece that I created in high school.
It combines my love for art and my love for Disney into one.