Wednesday, May 7, 2014

Magazine


This is a travel magazine I came up with. I really enjoy traveling and have been to around 13 different countries. The ad I made as the back is about a fictional vineyard but the picture is one I took in Tuscany when I stayed and worked on a vineyard for a month. The front page is a picture of the Eiffel Tower with the south African Flag's colors that I took when I was in Paris last summer.

Rotoscoping

This is my rotoscoping project. It is called Perseverance, and it is about someone who gets frustrated about not being able to hit the ball, but then calms down, focuses, and hits a home run. This took me upwards of 25 hours to make and got very frustrating at times, but I continued to work and got it done. I think it came out pretty good and I'm pleased with the result.

Wednesday, April 9, 2014

Multiplicity


This assignment was to add ourselves into the same photograph in different positions/locations. It was pretty fun, especially taking the pictures since that is something I really enjoy. Climbing the tree was fun too. Except for the scratch on my leg, but that's the hazards of art. The multiplying of bodies was pretty easy, I just had to mess around with a few things to make everything look right. All in all, it was a pretty easy and fun project to do, with minimal injuries.

Wednesday, April 2, 2014

Photoshop Retouch


This is a retouch of an old family photograph containing my grandpa and great grandparents. I touched it up using the clone stamp tool, the spot healing tool, the patch tool, changing the levels, and a few other things.

Wednesday, March 19, 2014

Constructivist Propaganda


















This was a fun assignment. I did 2 posters because one was just a fun idea and the other was a serious controversial issue, but I like both of them. I believe medical marijuana should be legal in every state because it is a very useful medicine for many different ailments, which I showed in my poster. It helps almost any issue you can think of and it would be very beneficial for things like cancer and AIDS especially, since patients with these diseases often have trouble eating, which the marijuana helps with. I believe a major reason people are "afraid" of medical marijuana is because they are misinformed about what it can do. Also, lobbying by big pharmaceutical companies that don't want competition is part of the reason it isn't more prevalent as of right now.

As for the ostrich, I do have reasoning behind the poster and my hate for them. I was volunteering at a zoo and there was an ostrich in one of the enclosures next to one I was cleaning. When I was done cleaning my enclosure, I wanted to walk through where the ostrich was to get out, but it was blocking the gate. Any time I would move, it would follow me and prevent me from leaving. It would taunt me and just keep following me, not letting me get anywhere. I couldn't get out until the manager eventually came over and got the ostrich to leave me alone. It's a simple poster but it conveys how I feel about them in a way that I feel is adequate.

Wednesday, February 26, 2014

Logos

I enjoyed this project. It was fun coming up with the different companies and thinking of unique ways to show what they do in their logo. I struggled a little with certain parts of the project but was eventually able to figure everything out and get it all together.

Wednesday, February 12, 2014

Calligram

This is a calligram of a bicycle. I enjoy riding my bike and do it for exercise and a way to escape. The process of making this calligram was frustrating but it eventually came together. I originally planned on doing a train to signify my passion for traveling, but after hours and hours of work trying to make it look good, I couldn't get it right and decided to go in a different direction. I feel that this bike came out pretty good and I am satisfied with the result. Although it was a simple design, I think I made it interesting to the eye and feel that while it could always use improvement, it was an effective design.

Saturday, February 1, 2014

html canvas




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

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

// the radial gradient requires a shape, in this case a rectangle that fills the entire canvas
context.rect(0,0, canvas.width, canvas.height);

// inner circle
var circ1X = 60;
var circ1Y = 30;
var circ1Radius = 100;

// outer circle
var circ2X = 70;
var circ2Y = 25;
var circ2Radius = 200;
// create radial gradient
var grd = context.createRadialGradient(circ1X, circ1Y, circ1Radius, circ2X, circ2Y, circ2Radius);
// inner color
grd.addColorStop(0, "rgb(240,244,0)");

// you can add intermediate colors using N greater than 0 and smaller then 1
var N = 0.5;
grd.addColorStop(N, "rgb(120,80,255)");

// outer color
grd.addColorStop(1, "rgb(125,50,80)");

context.fillStyle = grd;
context.fill();

context.beginPath();
context.rect(300,300,300,300);
context.fillStyle = 'blue';
context.fill();
context.lineWidth = 300;
context.strokeStyle = 'blue';
context.stroke();

context.beginPath();
context.lineWidth = 10; // declare the width in pixels of the line
context.moveTo(50,100); // move to starting coordinates
context.lineTo(125,200); // draw line to following point coordinates
context.lineTo(80,100); // draw line to following point coordinates
context.strokeStyle = 'red'; // or "#FF0000" // declare the line color in rgb or hexadecimal values
context.stroke();

// starting point coordinates
var startX = 0;
var startY = canvas.height/2;

// control point coordinates ( magnet )
var cpointX = canvas.width / 2;
var cpointY = canvas.height / 2 + 200;

// ending point coordinates
var endX = canvas.width;
var endY = canvas.height/2;

context.beginPath();
context.moveTo(startX, startY);
context.quadraticCurveTo(cpointX, cpointY, endX, endY);

context.lineWidth = 5;
context.strokeStyle = 'green';
context.stroke();

var startX = 0;
var startY = canvas.height/2;

// control point 1 coordinates ( magnet )
var cpointX1 = canvas.width / 4;
var cpointY1 = canvas.height / 2 + 200;

// control point 2 coordinates ( magnet )
var cpointX2 = canvas.width * 3/4;
var cpointY2 = canvas.height / 2 - 200;

// ending point coordinates
var endX = canvas.width;
var endY = canvas.height/2;

context.beginPath();
context.moveTo(startX, startY);
context.bezierCurveTo(cpointX1, cpointY1, cpointX2, cpointY2, endX, endY);

context.lineWidth = 5;
context.strokeStyle = 'black';
context.stroke();

context.beginPath();
context.moveTo(600, 700);
context.quadraticCurveTo(canvas.width*1/5, canvas.height/5, 500, 540);
context.quadraticCurveTo(canvas.width*4/5, canvas.height/5, 100, 500);
context.closePath();
context.fillStyle = "rgb(100,255,150)";
context.fill();

var centerX = 700;
var centerY = 150;
var radius = 70;

context.beginPath();
context.arc(centerX, centerY, radius, 0, 2 * Math.PI, false);
context.fillStyle = "yellow";
context.fill();
context.lineWidth = 5;
context.strokeStyle = "black";
context.stroke();

var centerX = 375;
var centerY = 200;
var radius = 70;

var startAngle = 1.1 * Math.PI;
var endAngle = 1.7 * Math.PI;

context.beginPath();
context.arc(centerX, centerY, radius, 1.1, .8 * Math.PI, false);
context.lineWidth = 5;
context.strokeStyle = "purple";
context.stroke();

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

};

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

Friday, January 31, 2014

Intro

For my first class in Beginning Digital Arts, it was a little intimidating to be honest. I switched in late to the class, so I missed the first class meeting. Everyone had already worked on an html project and I had no experience with html, so I was a little worried about the class. I read up on the project and was then confident about getting it done and catching up. We then worked in Adobe Illustrator which I am already familiar with, so I got less worried and more excited to hone my digital arts skills.
I'm currently a Junior at the University of Tampa and I am studying Sport Management. I have a big interest in photography, and Photoshop and Illustrator are great complements to it as a hobby. I thoroughly enjoy traveling and have taken around 10,000 photos in almost 15 different countries. I'd like to study abroad and further my understanding and experience of other cultures.
I expect to learn a lot in this course that I will be mostly using as a hobby. I likely won't continue in this field professionally, but I feel that it is something I will continue to do on the side for my whole life. Since that is the case, this class will definitely be of use to me. I'd absolutely be open to continue traveling and contribute to travel blogs or find some way to monetize my hobby, while still enjoying it and all of the other things I enjoy like sports.