How to Make Tea – Graphical Instructions

The last practical project from last term was to design graphical instructions, for specific tasks. I chose to design for tea, using a strong style of airline emergency safety cards to illustrate the process. The result was an A4 card, printed both sides. The first version had text, but by the second, I chose to remove the text, and let the illustrations speak for themselves. They were drawn and created in Adobe Illustrator.

Posted in Art, Reading | Tagged , , , , | Leave a comment

New Font

A font – started a while ago, finished today. Constructivist, Soviet-esque, fixed width, strong grid system used throughout. Oblique version too.

Posted in Art | Tagged , , , | Leave a comment

Colours.

I had an idea, and I made it. Using creative coding (code that makes stuff), in the form of Javascript and PHP, I made piefoundry.com/colours. It generates a 500px square of pixels, made up of blocks, with each block a random colour. The default size is a 10px block, but can be changed to anything that fits in the 500px frame. Below are some of the results, including an animated .gif file.

 

Posted in Art, Blog, General | Tagged , , , , , | Leave a comment

A Series of Ideas

A self initiated project, I aim to publish a series of posters, illustrating the ideas I write down but never make, keeping them separate from my main, professional work. Will see how this goes. First images posted here. Past and present works now here

Posted in Art, Blog, General | Tagged , , , | Leave a comment

Pictogram Design Project

With the end of term fast approaching, I have just completed another project in series design, specifically pictograms. I chose to look into the life of Rosalind Franklin, a chemist and biologist who did a lot of research into the structure of DNA and the structure of carbon molecules. From this, I decided to design a series of three pictograms, one of a coal molecule, one of a DNA double helix, and one representing X-ray crystallography (the process used to image DNA). I wanted to create stylised, sleek and geometric symbols, so a lot of circles, straight lines and sharp edges were used.

Posted in Art, Blog, Reading | Tagged , , , , | Leave a comment

Contortions of the Letter A

Having looked into some of Wolfgang Weingart’s work, a fantastic graphic designer and leader of the Swiss-Punk typography movement, I used some of his projects as inspiration for this self-directed typographical project. I use a bold Helvetica ‘A’, and used Adobe Illustrator to manipulate it as a vector, exploring different ways of distorting it and combining it with other versions of itself, to create interesting and dynamic shapes. The final result was a distorted mass of edges, hardly hinting at its typographic origins.

Posted in Art, Blog, General | Tagged , , , | Leave a comment

Full Metal Jacket Film Poster

The latest project was to develop and design a poster for a film. I chose to design a poster for Stanley Kubrick’s 1987 film, Full Metal Jacket. Through research in other film and movie posters, and looking into the work of Abram Games, as well as some constructivist influences, I produced a geometric, angular and dynamic piece. Using a screenshot and Adobe Illustrator, I recreated Joker’s face, including helmet, glasses, piece sign and bullets. For the colours, I wanted to show both a reddy-orange of fire (like Napalmed forest) and the green of the uniforms and other jungle colours. By putting colours on opposing sides of the image, I was able to symbolise the conflicting moralities, ironies and themes raised in the film. The font used was Compacta Bold, designed in 1963 by Fred Lambert.

Posted in Art, Reading | Tagged , , , , , | Leave a comment

Javascript Countdown – New Year and Christmas Countdown

I have been experimenting with Javascript – a programming language that is executed in the user’s browser, rather than on the server as with PHP. This enables codes to be run with in the page, without having to reload a new page, and respond quickly to the user’s input (e.g. mouse and keyboard movement). I created a Christmas countdown and a New Year countdown, which automatically update themselves for the next year.
Here is the Javascript to make a countdown clock for Christmas


//change the text below to reflect your own,
var before="Christmas!";
var current="Merry Christmas!";
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");

function countdown(yr,m,d){
theyear=yr;
themonth=m;
theday=d;
var today=new Date();

var todayyear=today.getYear();
if (todayyear < 1000)
	todayyear+=1900;

var todaym=today.getUTCMonth(); //increase accuracy by using Universal (UTC) time
var todayd=today.getUTCDate();
var todayh=today.getUTCHours();
var todaymin=today.getUTCMinutes();
var todaysec=today.getUTCSeconds();
var todaystring=montharray[todaym]+" "+todayd+", "+todayyear+" "+todayh+":"+todaymin+":"+todaysec;
futurestring=montharray[m-1]+" "+d+", "+yr;
dd=Date.parse(futurestring)-Date.parse(todaystring);
dday=Math.floor(dd/(60*60*1000*24)*1); //set time into correct format
dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1);
dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1);
dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1);

if(todayd==25&&todaym==11){ // checks if today is Christmas day
document.getElementById("time").innerHTML=current;
return;
}

else {
//use this following line if you don't want the parts of the countdown to appear in separate div tags
//document.getElementById("time").innerHTML=dday+"d " + dhour+"h "+ " " + dmin + "m " + dsec + "s ";
document.getElementById("days").innerHTML=dday+"d ";
document.getElementById("hours").innerHTML=dhour+"h ";
document.getElementById("minutes").innerHTML=dmin + "m ";
document.getElementById("seconds").innerHTML=dsec + "s ";

setTimeout("countdown(theyear,themonth,theday)",1000); //update every second
}

}

//enter the count down date using the format year/month/day
var next = new Date();
var theday=next.getUTCDate();
var themonth=next.getUTCMonth();
nexty=next.getUTCFullYear();
if (theday>=26&&theday<=31&&themonth==11) //if it is after Xmas, and before new year, make it count down to next year
//remove this if statement if the countdown is for new year
	{
		nexty++;
	}
countdown(nexty,12,25); //set the year, month and day you are counting down to

Here is the HTML to make the countdown appear – style it as you wish

<div id="time">
	<div id="days" class="block"></div>
	<div id="hours" class="block"></div>
	<div id="minutes" class="block"></div>
	<div id="seconds" class="block"></div>
</div>
Posted in General, Tutorials | Tagged , , , , | Leave a comment

Reading Film Theatre Cinema Flyer Project

We have just finished another project for university, based on creating a couple of flyer designs for Reading Film Theatre, using cinema show times. The emphasis of the project was information design, getting the hierarchy of the information needed on the flyer perfect, to make the flyer as understandable and easy to read as possible. I used many different variations of font, using bold, italic light and font size to differentiate between different levels and different types of information. The fonts used were combinations of DIN, Futura and Helvetica.

Posted in Art, Reading | Tagged , , , , , , | Leave a comment

Watt are you looking at?

Quick science joke illustration. In other news, had the most traffic ever today on Pie Foundry – over 100 hits and counting, in one day. Fantastic stuff.

Posted in Art, Blog | Tagged , , , , | Leave a comment