Thursday, August 8, 2013

Autoscopy.




JPG 0%.

JPG 25%.

JPG 50%.

JPG 75%.

JPG 100%.

PNG-24.

GIF. 16 COLORS. 25 DITHERING.

GIF. 16 COLORS. 100 DITHERING.

GIF. 128 COLORS. 100 DITHERING.

GIF. 256 COLORS. 50 DITHERING.

GIF. 25 COLORS. 100 DITHERING.


Then & Now..

Photoshop Tutorial;



Using The Color Replacement Tool.

Photo Manupulation.


Comprehensive Guide to Working With Video in Photoshop.



Pietro Annigoni's Princess Margaret



i really had a hard time with this, specially since i was limited in time this week.
This painting is of Princess Margarent by Pietro Annigoni.




Did I tell you about that one time I was in Egypt...?

It was fun.





Thursday, August 1, 2013

My Vector Poster...



Heeere's my poster! Inspired by the Japanese Poster's that the professor posted up for us (not really the colors or content, but more about the way the Japanese had two main focuses, instead of three.) I'm not really sure how I got to the "Find Yourself" part, I guess it was because I was looking off into the distance and I felt like it had to be at least a little inspirational (there goes my logic for you.) Anyway, hope you enjoy.







Adobe Illustrator Tutorials..





I am actually a member of a website that is specifically for graphic design. In this website they show you step-by-step pictures or videos on how to achieve something you'd like to do. They have thousands and thousands of tutorials on here. It's by far my graphic design bible-- You guys should check it out! click here! Or just go to vector.tutsplus.com..





Let me tell you 'bout my naners..

This has got to be the most frustrating thing ever, i tell ya. Not only was it tough, but the end result was not what i wanted- at all. I deleted this thing so many times, and re-did it, and kept deleting, and re-doing that I kind of just got discouraged. aaannyway- here's my ugly beautiful banana.






I ate this banana afterwards out of revenge.

Thursday, July 25, 2013

Business Card and Logo - 5


Original Picture:


Onto Illustrator:


Onto Business Cards:


Business Card and Logo - 4


Original Picture:


Onto Illustrator:


Onto Business Cards:




Business Card and Logo - 3


Original:


Onto Illustrator:


Onto Business Cards:



Business Card and Logo - 2

Original Picture:

Onto Illustrator:

Onto Business Card:


Business Card & Logo - 1

Orignal Picture:
Onto Illustrator:
Onto Business Cards:

Calligram: "Brida"

My Calligram was based of off a book by my favorite author, Paulo Coelho. The words you see are all excerpts of his books, or quotes from him.


Saturday, July 13, 2013

My first HTML5 Canvas Drawing-- Finn, The Human

This is my first HTML5 Canvas drawing, featuring Finn, The Human from Adventure time!



Here is the step by step process I went through to achieve the final picture.




and here is a close up of my final drawing:




// BACKGROUND context.beginPath(); context.rect(0, 0, 800, 600); context.fillStyle = "rgb(69, 189, 237)"; context.fill(); context.lineWidth = 7; context.strokeStyle = "rgb(69, 189, 237)"; context.stroke(); context.closePath(); var grd = context.createRadialGradient(400, 50, 10, 300, 50, 300); // light blue grd.addColorStop(0, 'rgb(69, 189, 237)'); // dark blue grd.addColorStop(1, 'rgb(42, 160, 211)'); context.fillStyle = grd; context.fill(); //HEAD context.beginPath(); context.moveTo(90, 510); context.quadraticCurveTo(90, 510, 90, 144); context.quadraticCurveTo(100, -5, 180, 130); context.quadraticCurveTo(200, 200, 530, 150); context.quadraticCurveTo(600, -7, 625, 130); context.quadraticCurveTo(633, 150, 640, 510); context.quadraticCurveTo(650, 510, 85, 514); context.lineWidth = 10; context.fillStyle = 'white'; context.fill(); context.strokeStyle = 'black'; context.stroke(); context.closePath(); // FACE context.beginPath(); context.save(); context.translate(canvas.width / 2, canvas.height / 2); context.scale(2, 1.2); context.beginPath(); context.arc(-15,40, 110, 0, 6.75, false); context.restore(); context.fillStyle = 'rgb(252, 210, 192)'; context.fill(); context.lineWidth = 5; context.strokeStyle = 'black'; context.stroke(); context.closePath(); // LEFT BLUSH context.beginPath(); context.save(); context.translate(canvas.width / 2, canvas.height / 2); context.scale(2, 1); context.beginPath(); context.arc(-62, -20, 13, 0, 6.75, false); context.restore(); context.fillStyle = 'rgb(247, 173, 177)'; context.fill(); context.lineWidth = 1; context.strokeStyle = 'rgb(247, 173, 177)'; context.stroke(); context.closePath(); context.beginPath(); context.arc(260, 278, 6.5, 0, 6.75, false); context.fillStyle = 'white'; context.fill(); context.lineWidth = 0; context.strokeStyle = 'white)'; context.stroke(); context.closePath(); //BLUSH context.beginPath(); context.arc(297, 220, 70, 1.8, 2, false); context.lineWidth = 1.1; context.strokeStyle = 'black'; context.stroke(); context.closePath(); context.beginPath(); context.arc(305, 220, 70, 1.8, 2, false); context.lineWidth = 1; context.strokeStyle = 'black'; context.stroke(); context.closePath(); context.beginPath(); context.arc(316, 220, 70, 1.8, 2, false); context.lineWidth = .7; context.strokeStyle = 'black'; context.stroke(); context.closePath(); // LEFT EYE context.beginPath(); context.arc(280, 260, 10, 0, 6.75, false); context.fillStyle = 'black'; context.fill(); context.lineWidth = 5; context.strokeStyle = 'black'; context.stroke(); context.closePath(); //RIGHT BLUSH context.beginPath(); context.save(); context.translate(canvas.width / 2, canvas.height / 2); context.scale(2, 1); context.beginPath(); context.arc(30, -30, 13, 0, 6.75, false); context.restore(); context.fillStyle = 'rgb(247, 173, 177)'; context.fill(); context.lineWidth = 1; context.strokeStyle = 'rgb(247, 173, 177)'; context.stroke(); context.closePath(); context.beginPath(); context.arc(479, 266, 5, 0, 6.75, false); context.fillStyle = 'white'; context.fill(); context.lineWidth = 0; context.strokeStyle = 'white)'; context.stroke(); context.closePath(); // RIGHT EYE context.beginPath(); context.arc(450, 250, 10, 0, 6.75, false); context.fillStyle = 'black'; context.fill(); context.lineWidth = 5; context.strokeStyle = 'black'; context.stroke(); context.closePath(); //BLUSH context.beginPath(); context.arc(437, 235, 50, 1, 7, true); context.lineWidth = 1; context.strokeStyle = 'black'; context.stroke(); context.closePath(); context.beginPath(); context.arc(428, 237, 50, 1, 7, true); context.lineWidth = 1; context.strokeStyle = 'black'; context.stroke(); context.closePath(); context.beginPath(); context.arc(420, 239, 50, 1, 7, true); context.lineWidth = 1; context.strokeStyle = 'black'; context.stroke(); context.closePath(); //MOUTH context.beginPath(); context.arc(370, 210, 70, 1.8, 7.4, true); context.lineWidth = 4; context.strokeStyle = 'black'; context.stroke(); context.closePath();