I really enjoyed this projected it helped me learn more about formatting and become better skilled in indesign. I think my book is very cohesive and works well together and there is good balance throughput the book.
Thursday, December 10, 2015
Sunday, November 29, 2015
Tuesday, November 10, 2015
college
The lyric I picked was from the song “young god” by halsey and it
is "But do you feel like a young God? You know
the two of us are just young gods
And we'll be flying through the streets with the people underneath
And they're running, running, running"
And they're running, running, running"
The picture is with
two people up in the clouds who are looking down on the people below them
imaging they are gods above all the people. This embodies the theme of this
lyric and shows how people when their young and in love and dhow it can make
them feel like gods. The colors help support this as they are those of a sunset
which is the most romantic time of day. It also gives a dream like appearance with
the overlapping images.
Tuesday, November 3, 2015
Magazine
Artist Statement
I used pictures I had taken while abroad. The goal of the cover is to convey that the magazine is about traveling and specifically students travel. The title along with the 50 top countries for students to travel to are examples of how it does that. The over all color theme is blue and white which mimic the sky color that is in the background of the main picture. I wanted the over all feel to be fun which is what students traveling is so I used smiling pictures and easy going font to convey this feeling.
Assets
final product
Monday, October 26, 2015
Tuesday, October 20, 2015
HTML
I based my graphic off of this graphic of a sun set.
And this is is the graph I used
The final product is much more stylized then the original. I used lines to create depth and color changes. It has a tribal feel to the whole peice. The process of using html was very frustrating and i don't think it would be my choice for graphics in the future but it was good to gain some experience with it.
<!DOCTYPE HTML>
<html>
<head>
<script>
window.onload = function() {
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");
////////////////////////////////////// start below this line ˇˇˇˇˇˇˇˇˇˇ
context.beginPath();
context.rect(0, 0, 800, 600);
context.fillStyle = 'lightBlue';
context.fill();
context.lineWidth = 0;
context.stroke();
context.beginPath();
context.rect(0, 300, 800, 600);
context.fillStyle = 'darkBlue';
context.fill();
context.lineWidth = 0;
context.stroke();
context.beginPath();
context.moveTo(250, 300);
context.quadraticCurveTo(400, 90, 525, 300);
context.lineWidth = 8;
context.strokeStyle = 'yellow'
context.closePath();
// line color
context.stroke();
context.beginPath();
context.moveTo(225, 260);
context.lineTo(110, 260);
context.strokeStyle = 'yellow';
context.stroke();
context.beginPath();
context.moveTo(249, 215);
context.lineTo(135, 120);
context.strokeStyle = 'orange';
context.stroke();
context.beginPath();
context.moveTo(295, 170);
context.lineTo(225, 60);
context.strokeStyle = 'yellow';
context.stroke();
context.beginPath();
context.moveTo(390, 150);
context.lineTo(390, 10);
context.strokeStyle = 'orange';
context.stroke();
context.beginPath();
context.moveTo(490, 170);
context.lineTo(550, 50);
context.strokeStyle = 'yellow';
context.stroke();
context.beginPath();
context.moveTo(525, 225);
context.lineTo(650, 125);
context.strokeStyle = 'orange';
context.stroke();
context.beginPath();
context.moveTo(550, 260);
context.lineTo(675, 260);
context.strokeStyle = 'yellow';
context.stroke();
context.beginPath();
context.moveTo(350, 250);
context.lineTo(420, 250);
context.strokeStyle = 'yellow';
context.stroke();
context.beginPath();
context.moveTo(285, 280);
context.lineTo(495, 280);
context.strokeStyle = 'orange';
context.stroke();
context.beginPath();
context.moveTo(340, 220);
context.lineTo(440, 220);
context.strokeStyle = 'orange';
context.stroke();
context.beginPath();
context.moveTo(10, 400);
context.lineTo(440, 400);
context.strokeStyle = 'lightBlue';
context.stroke();
context.beginPath();
context.moveTo(400, 350);
context.lineTo(700, 350);
context.strokeStyle = 'lightBlue';
context.stroke();
context.beginPath();
context.moveTo(430, 500);
context.lineTo(760, 500);
context.strokeStyle = 'lightBlue';
context.stroke();
context.beginPath();
context.moveTo(100, 480);
context.lineTo(250, 480);
context.strokeStyle = 'Blue';
context.stroke()
context.beginPath();
context.moveTo(300, 450);
context.lineTo(550, 450);
context.strokeStyle = 'Blue';
context.stroke()
context.beginPath();
context.moveTo(470, 410);
context.lineTo(780, 410);
context.strokeStyle = 'Blue';
context.stroke()
context.beginPath();
context.moveTo(100, 320);
context.lineTo(300, 320);
context.strokeStyle = 'Blue';
context.stroke()
////////////////////////////////////// end above this line ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ
};
</script>
</head>
<body>
<canvas id="myCanvas" width="800" height="600"></canvas>
</body>
</html>
And this is is the graph I used
The final product is much more stylized then the original. I used lines to create depth and color changes. It has a tribal feel to the whole peice. The process of using html was very frustrating and i don't think it would be my choice for graphics in the future but it was good to gain some experience with it.
Code
<html>
<head>
<script>
window.onload = function() {
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");
////////////////////////////////////// start below this line ˇˇˇˇˇˇˇˇˇˇ
context.beginPath();
context.rect(0, 0, 800, 600);
context.fillStyle = 'lightBlue';
context.fill();
context.lineWidth = 0;
context.stroke();
context.beginPath();
context.rect(0, 300, 800, 600);
context.fillStyle = 'darkBlue';
context.fill();
context.lineWidth = 0;
context.stroke();
context.beginPath();
context.moveTo(250, 300);
context.quadraticCurveTo(400, 90, 525, 300);
context.lineWidth = 8;
context.strokeStyle = 'yellow'
context.closePath();
// line color
context.stroke();
context.beginPath();
context.moveTo(225, 260);
context.lineTo(110, 260);
context.strokeStyle = 'yellow';
context.stroke();
context.beginPath();
context.moveTo(249, 215);
context.lineTo(135, 120);
context.strokeStyle = 'orange';
context.stroke();
context.beginPath();
context.moveTo(295, 170);
context.lineTo(225, 60);
context.strokeStyle = 'yellow';
context.stroke();
context.beginPath();
context.moveTo(390, 150);
context.lineTo(390, 10);
context.strokeStyle = 'orange';
context.stroke();
context.beginPath();
context.moveTo(490, 170);
context.lineTo(550, 50);
context.strokeStyle = 'yellow';
context.stroke();
context.beginPath();
context.moveTo(525, 225);
context.lineTo(650, 125);
context.strokeStyle = 'orange';
context.stroke();
context.beginPath();
context.moveTo(550, 260);
context.lineTo(675, 260);
context.strokeStyle = 'yellow';
context.stroke();
context.beginPath();
context.moveTo(350, 250);
context.lineTo(420, 250);
context.strokeStyle = 'yellow';
context.stroke();
context.beginPath();
context.moveTo(285, 280);
context.lineTo(495, 280);
context.strokeStyle = 'orange';
context.stroke();
context.beginPath();
context.moveTo(340, 220);
context.lineTo(440, 220);
context.strokeStyle = 'orange';
context.stroke();
context.beginPath();
context.moveTo(10, 400);
context.lineTo(440, 400);
context.strokeStyle = 'lightBlue';
context.stroke();
context.beginPath();
context.moveTo(400, 350);
context.lineTo(700, 350);
context.strokeStyle = 'lightBlue';
context.stroke();
context.beginPath();
context.moveTo(430, 500);
context.lineTo(760, 500);
context.strokeStyle = 'lightBlue';
context.stroke();
context.beginPath();
context.moveTo(100, 480);
context.lineTo(250, 480);
context.strokeStyle = 'Blue';
context.stroke()
context.beginPath();
context.moveTo(300, 450);
context.lineTo(550, 450);
context.strokeStyle = 'Blue';
context.stroke()
context.beginPath();
context.moveTo(470, 410);
context.lineTo(780, 410);
context.strokeStyle = 'Blue';
context.stroke()
context.beginPath();
context.moveTo(100, 320);
context.lineTo(300, 320);
context.strokeStyle = 'Blue';
context.stroke()
////////////////////////////////////// end above this line ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ
};
</script>
</head>
<body>
<canvas id="myCanvas" width="800" height="600"></canvas>
</body>
</html>
Tuesday, October 6, 2015
vector picture
I used
vectors to copy a picture of a boy smoking a hookah pen. I then changed the
hookah pen into a blunt and had the smoke turn into a silhouette of a sexy
lady. I wanted the women to be very subtle so I made her the same color as the
smoke. To keep the focus on the figure I made a very soft and subdued back
round which while still gives a sense of space it doesn’t take away from the
rest of the piece. Over all I wanted this piece to be sexy but in a subtle way
just like the lady hiding in the smoke and I think him smoking a blunt and the
overall soft feel of the piece accomplishes that.
Tuesday, September 29, 2015
Tuesday, September 22, 2015
happy daze logo
My logo uses organic hand drawn text to show the relaxed feel of the medical marijuana clinic.
I used black text matched with the green of the marijuana leaves so that the green would stand out well against the text. The goal of this logo is to convey a relaxed non-clinical feel that would allow the clients to feel comfortable using the cannabis in that environment and the relaxed and cool colors of the logo create that feeling.
Saturday, September 19, 2015
Sunday, September 13, 2015
logo examples
Lacoste use just shapes to show a silhouette of a crocodile. This logo is cool colors as well as organic shapes. Its target audience is preppy young people who are somewhat athletic. It does a great job of staying fresh and new which having a somewhat timeless appeal through the type.
Gucci main audience is higher end shoppers, mainly women. They have a timeless logo that is mechanical in shape and has a very flawless and smooth look which helps the logo appeal to a upper class shopper audience.
The rolling stones logo is appealing to an edgier crowd which follows the rock and roll culture. This logo plays really well with that culture as the tongue out with some sexy lips is a common symbol in rock and roll. The organic shapes and no outlines helps keep the fun and almost cartoon like feel which also lends itself to the fun and sexy vibe of rock and roll and the viewers of rollin stone magazine.
Obey is a street artist as such his logo needs to be able to be very versatile on many different medias. Because of this it should be a very simple logo which it is. it using purely text in a stylist font that can be put on t shirts or walls or artwork which is the kind of versatility that a artists logo should have.
The under armor logo is a extremely successful logo. It uses basic shapes to create an iconic logo that everyone associates with athleticism. athletes and sport-swearers are their target audience and they are extremely successful in that field.
Tuesday, September 8, 2015
Ideas for my business
happy daze
This would be a medical marjaunn clinic that has a very relaxed atmosphere where you can hang out in big comfy chairs and enjoy the medical cannbis.
hippie hiatus
This will be a boutique clothing store that sells very hippie/hipster clothing that is comfy affordable and cute
Get buzzed
This will be a coffee shop where you can customize your drink with any combination of flavors that you want.
A+ school supplies
This will be a go to store for anything school related.
Snapshots
A photography company that does any event from weddings to birthday party's
Monday, August 31, 2015
What I expect
I have a great interest in art. I attended an Art high school where I specialized in digital art or what my school called multi media but it was basically digital art. There I learned how to vector in illustrator and manipulate photographs in Photoshop. I hope to expand my knowledge in these programs and I am excited to learn how to animate and code since these are two things I have never done before.
This is where I like to nap on a very unrelated note
Subscribe to:
Posts (Atom)