Skip to content

Instantly share code, notes, and snippets.

@drart
Created November 7, 2011 04:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drart/1344171 to your computer and use it in GitHub Desktop.
Save drart/1344171 to your computer and use it in GitHub Desktop.
Favicon made with Processing.org
size(32, 32);
smooth();
background(0);
strokeWeight(2);
stroke(255);
line(width/2, height/2, width*.75, height);
line(width/2, height/2, width*0.25, height);
noFill();
ellipse(width/2, height/2, width*0.6, height*0.6);
save("favicon.png");
// %> mv favicon.png favicon.ico
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment