Tuesday, February 19, 2013

Logo Analysis




 



The Express Clothing logo is a very unique and well-crafted logo as it defines the type of personality of the person who wears their brand. Their main symbol, the lion, signifies strength, pride and power, which is exactly the type of statement people try to make when wearing this brand.





The Nike logo has been around for decades and has single handedly become one of the most influential brands in the world of sport. The logo is very simple which makes it a very effective and powerful logo. Their trademark “Nike Swoosh” is usually the first image that comes to mind when a person thinks about Nike. The genius behind this logo is that no matter the size, a person can still relate this image to the company.





"Arm and Hammer" is a company which first started out as a baking soda company and branched through out the years to areas like toothpaste, detergent and cleaning products. One of the interesting facts about this company's logo is that it is a visual representation to the company name as it is literally an arm holding a hammer.

 

Kentucky Fried Chicken, abbreviated as KFC is a world wide franchise who has made a significant impact in the fast food industry. KFC is able to manipulate the market by having a great company logo. The logo of the "Cornel" gives a personal touch to the brand and leaves a sense of culture and history upon the company.




The Polo Ralph Lauren brand is an upper class brand that can be depicted in their choice of logo. By simply putting their logo as a man playing the sport of polo “Ralph Lauren” is able to pin point their target market without saying a word. Through out the years there have been many duplicates by companies who create a logo that is very similar, however, they are easy to spot and “Ralph Lauren’s” quality clothing is very hard to match.


Sketches for "Squash It"

This sketch has a squash ball followed by a colored swoosh and will be designed with
the national colors of Trinidad and Tobago

This sketch is designed to depict a squash ball made human, hitting a ball over the name
of the company and making the ball the dot of the "i" in "it"

This sketch has the "i" in it super imposed on the "S" in Squash

This sketch has a literal meaning to the company's name by having the large
"Squash" squishing the "it"

This sketch is suppose to depict a coat of arms affect to the logo

Sunday, February 17, 2013

Companies

1. Pete's Pizza - A chain of pizzerias in the Caribbean

2. SydGlo Investments - My grandparents investment company

3. BayneCo. Financial Group - A financial agency

4. WatchMe. - A modern and stylish time piece distribution company

5. SewWhat! - A small sewing company

6. Squash-It - Squash store and 4 court complex

Monday, February 11, 2013

Project 1




During class four, when professor Corrigan showed us some examples of past student's projects, I would have to admit that I was pretty overwhelmed. For the first few classes we were simply creating single shapes and learning about gradients, I thought to myself "how on earth would I be able to create a picture based on shapes, without it ending up looking like a five year old did it?" However, when i got past my initial fear I began to brainstorm and thought that I would create a graphic which portrays something which I enjoy. After much thought I decided to create a graphic to depict music and by music I mean "reggae music". Reggae is something which I listen to when I need to relax and settle my mind and the first thing which comes to mind when I think about reggae is an acoustic guitar.

I began creating this graphic by first adding a background with the symbolic reggae colors of "red, gold, green and black" followed by the body of the guitar. I created the body by making two interconnected circles of different sizes and filling them with the same brown as the strokestyle. I then created two more circles with a darker shade of brown to give the effect of the inside of the guitar. After this came the neck, the strings and the bar, which comprised of one horizontal rectangle, two more interconnected circles, six lines and a vertical rectangle. I then added a radial gradient at the bottom conner of the body of the guitar to symbolize light reflecting off the wood of the guitar.

To end this graphic I decided to add a powerful quote by one of the most influential singers in reggae music, Bob Marley. This project, though stressful, turned out to be a lot of fun and I am glad I was able to make a meaningful piece.


CODE:


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

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

var x = 0;
var y = 0;
var width = 800;
var height = 600;

var startX = 400;
var startY = 0;
var endX = 800;
var endY = 600;


context.beginPath();
context.rect(x, y, width, height);
context.lineWidth = 10;
var grd = context.createLinearGradient(startX, startY, endX, endY);
grd.addColorStop(0, 'rgb(255, 25, 25)');
grd.addColorStop(0.30, 'rgb(255, 255, 0)');
grd.addColorStop(0.65, 'rgb(51, 160, 0)');
grd.addColorStop(0.90,'rgb(0, 0, 0)');
context.fillStyle = grd;
context.fill();
context.strokeStyle = 'rgb(0, 0, 0)';
context.stroke();

//body
context.beginPath();
context.arc(200, 350, 125, 0 , 2 * Math.PI, false);
context.lineWidth = 4;

context.strokeStyle = 'rgb(102,51,0)';
var grd=context.createRadialGradient(135, 450, 20, 125, 450, 60);
grd.addColorStop(1, 'rgb(102,51,0)');
grd.addColorStop(0, 'rgb(160,160,160)');
context.fillStyle = grd;
context.fill();
context.stroke();

//body
context.beginPath();
context.arc(375,350, 100, 0 , 2 * Math.PI, false);
context.fillStyle = 'rgb(102,51,0)';
context.strokeStyle = 'rgb(102,51,0)';
context.fill();
context.stroke();

//center
context.beginPath();
context.arc(355,350, 40, 0 , 2 * Math.PI, false);
context.fillStyle = 'rgb(51,8,0)';
context.strokeStyle = 'rgb(51,8,0)';
context.fill();
context.stroke();

context.beginPath();
context.arc(355,350, 50, 0 , 2 * Math.PI, false);
context.fillStyle = 'rgb(51,8,0)';
context.strokeStyle = 'rgb(20,0,0)';
context.fill();
context.stroke();

//neck
context.beginPath();
context.rect(398, 330, 300, 35);
context.fillStyle = 'rgb(25,0,0)';
context.strokeStyle = 'rgb(25,0,0)';
context.fill();
context.stroke();

//top
context.beginPath();
context.arc(708,350, 30, 0 , 2 * Math.PI, false);
context.fillStyle = 'rgb(25,0,0)';
context.fill();
context.stroke();

context.beginPath();
context.arc(745,350, 35, 0 , 2 * Math.PI, false);
context.fillStyle = 'rgb(25,0,0)';
context.fill();
context.stroke();

//bar
context.beginPath();
context.rect(200, 310, 20, 80);
context.fillStyle = 'rgb(25,0,0)';
context.fill();
context.stroke();


//1 Strings
context.beginPath();
context.moveTo(755,335);
context.lineTo(200,335);
context.strokeStyle = 'rgb(255,255,255)';
context.lineWidth = 1;
context.stroke();

//2
context.beginPath();
context.moveTo(735,340);
context.lineTo(200,340);
context.strokeStyle = 'rgb(255,255,255)';
context.lineWidth = 1;
context.stroke();

//3
context.beginPath();
context.moveTo(715,345);
context.lineTo(200,345);
context.strokeStyle = 'rgb(255,255,255)';
context.lineWidth = 1;
context.stroke();

//4
context.beginPath();
context.moveTo(715,350);
context.lineTo(200,350);
context.strokeStyle = 'rgb(255,255,255)';
context.lineWidth = 1;
context.stroke();

//5
context.beginPath();
context.moveTo(735,355);
context.lineTo(200,355);
context.strokeStyle = 'rgb(255,255,255)';
context.lineWidth = 1;
context.stroke();

//6
context.beginPath();
context.moveTo(755,360);
context.lineTo(200,360);
context.strokeStyle = 'rgb(255,255,255)';
context.lineWidth = 1;
context.stroke();


context.font = 'italic 15pt Calibri';
context.fillText('Dont gain the world and ', 50, 520);

context.font = 'italic 15pt Calibri';
context.fillText('lose your soul, wisdom', 50, 550);

context.font = 'italic 15pt Calibri';
context.fillText('is better than silver or gold.', 50, 580);

context.font = 'italic 10pt Calibri';
context.fillText('- Bob Marley', 275, 590);


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

};

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

Wednesday, February 6, 2013

Class 5






 Third week of classes. The confusing numbers and codes are now starting to make some sense to me. Learning something new and interesting everyday and class seems to be quite exciting to go to.

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

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

var x = 450;
var y = 150;
var controlX1 = 350;
var controlY1 = 15;
var controlX2 = 155;
var controlY2 = 160;
var endX = 350;
var endY = 325;

//Quadratic Curve Variables
var controlX3 = 425;
var controlY3 = 385;
var endX3 = 450;
var endY3 = 480;

var controlX4 = 475;
var controlY4 = 375;
var endX4 = 550;
var endY4 = 325;

//Bezier curve

var controlX5 = 755;
var controlY5 = 180;
var controlX6 = 550;
var controlY6 = 15;
var endX5 = x;
var endY5 = y;



context.beginPath();
context.rect(0, 0, 800, 600);
context.fillStyle = 'rgb(100,100,200)';
var grd = context.createLinearGradient(0, 0, 800, 600);
grd.addColorStop(0, 'rgb(0,100,200)');
grd.addColorStop(1, 'rgb(255,255,255)');
context.fillStyle = grd;
context.lineWidth = 8;
context.fill();
context.strokeStyle = 'rgb(0,0,0)';
context.stroke();

context.beginPath();
context.moveTo(x,y);
context.bezierCurveTo(controlX1, controlY1, controlX2, controlY2, endX, endY);
context.quadraticCurveTo(controlX3, controlY3, endX3, endY3);
context.quadraticCurveTo(controlX4, controlY4, endX4, endY4);
context.bezierCurveTo(controlX5, controlY5, controlX6, controlY6, endX5, endY5);
context.closePath();
context.lineWidth = 8;
context.fillStyle ='rgb(255,10,10)';
context.fill();
context.strokeStyle ='rgb(150,0,0)';
context.stroke();





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

};

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

Sunday, February 3, 2013


Hi,
My name is Ryan Bayne, I am a second year  Sophomore at the University of Tampa (UT). I am from Trinidad and Tobago, and for those of you who do not know where the is, its in the Caribbean. I am a business major and I am taking this class to have a broader sense of skills which will benefit me in my future endeavors. So far the class has been very interesting and I really enjoy the hands on approach.

Before i arrived at UT I represented my country on the Junior National Squash team every year in a caribbean tournament called CASA. Through this experience i have met many life long friends who bring something different to my life.

I also have a brother who attends UT as well as many other Trinidadian friends who i have went to high school with. I am very happy to be at UT and I hope that this semester proves too be a great one.