Skip to main content

Self-Portrait

Dear Blog, 

The last project for this section is a self-portrait using the gradient mesh tool in illustrator in a creative way sooooo... here it is! I feel like I got the hang of the gradient mesh tool a little better than when I first started but there is definitely still room for improvement!

Comments

Popular posts from this blog

Gradient Mesh

Dear Blog,  The next task at hand was a gradient mesh of an object of our choice so here is what I put together. It is sort of a rough copy, since I am still getting the hang of it and struggled a little with it but here it is!                    

Assignment 1: Canvas Object experiment

Dear Blog,  My first assignment was to experiment with coding canvas shapes on dreamweaver (super cool and confusing program) and this was my result... Lets just call it abstract art.  context.beginPath(); //this tells dw the starting point of a shape context.moveTo(100,100); //termination of the first line context.lineTo(300,300); //creates a second line context.lineTo(500, 100); //draws the closed shape (this is all about drawing by numbers) context.closePath(); //use your color picker again here from http://bit.ly/2xoDfM0 or http://www.color-hex.com/ context.fillStyle = "rgba(500, 150, 250, 1)"; context.fill();   //use the decimal in the aplha here (0.5) context.strokeStyle = "rgba(0, 0, 0, 1)"; // the "a" stands for aplpha chanel which is the transparency of the line or object /  0 = invisible - 1 = solid color - use decimals to fade between //creates the stroke context.stroke() //creates a stroke along the a...