WebCentric Toronto logos

by Chris F.A. Johnson

All the GIFs on this page were generated from one PostScript file, webcentric1.eps, which is viewable here as text. A GIF image is created from the file using ImageMagick's convert utility. The command I used for all of them, changing only the filename for the resulting GIF, is:

convert webcentric1.eps xxx.gif

This creates a GIF file 336 x 336 pixels. Different sizes can be generated using convert's -resize command, but better results are obtained by changing the scaling in the PostScript file. (It can be edited in any text editor.) For example, to cut the dimensions in half, change the BoundingBox comment at the top of the file to:

%%BoundingBox: 0 0 168 168

...and add a scale instruction on a line after %%EndProlog:

.5 dup scale

The webcentric1.eps file in an emacs text editor window. The file is rendered in a gv window that automatically updates the display when a change is saved.

Modifying the logo

The file is mostly a prolog which defines various values and procedures. The different logos displayed on this page were made by adding instructions after the end of the prolog. The examples below are all accompanied by the code necessary to create them.

I have put together a file of colours in PostScript format: rgb.ps, (here as text). Any lines can be copied from this file into webcentric1.eps, and the names used to replace the colours in the examples below.


Examples


%% wcl1.gif
black background
white webcentric

draw
 blue panel
 green panel
 red panel

%% wcl-tos.gif
black background
white webcentric

draw
 blue panel
 green panel
 red panel

white torontoslant

%% wcl2.gif
black background
white webcentric

draw
 red panel
 green panel
 blue panel

white outlines
      

%% wcl2.gif
black background
white webcentric

draw
 red panel
 green panel
 blue panel

black toronto

%% wcl-ch.gif
black background
white webcentric

draw
 blue panel
 green panel
 red panel
black cityhall

%% wcl-toc.gif
black background
white webcentric

draw
 blue panel
 green panel
 red panel

white toronto.on.ca

%% wcl-chtoc.gif
black background
white webcentric

draw
 blue panel
 green panel
 red panel

black cityhall
white toronto.on.ca

%% wcl-chess.gif
black background
white webcentric

draw
 blue panel
 green panel
 red panel

black cityhall
white edshaso

%% wcl-clr1.gif
% Color examples: rgb.ps
/cream  { 1 1 .8 setrgbcolor } def
/brown  { .5 0 0 setrgbcolor } def

brown background
cream webcentric

draw
 cream panel panel panel

brown cityhall
cream torontoslant

%% wcl-clr2.gif
/cream  { 1 1 .8 setrgbcolor } def

grey30 background
cream webcentric

draw
   cream panel panel panel

grey30 cityhall
cream torontoslant

%% wcl-ytoc.gif
yellow background
black webcentric toronto.on.ca

draw
 black panel panel panel

yellow cityhall
black toronto.on.ca

%% wcl-clr4.gif
/papayawhip  { 1.000 0.937 0.835 setrgbcolor } def
/maroon      { 0.690 0.188 0.376 setrgbcolor } def
/maroon1     { 1.000 0.204 0.702 setrgbcolor } def
/maroon2     { 0.933 0.188 0.655 setrgbcolor } def
/maroon3     { 0.804 0.161 0.565 setrgbcolor } def
/maroon4     { 0.545 0.110 0.384 setrgbcolor } def

papayawhip background
maroon4 webcentric

draw
 maroon2 panel
 maroon3 panel
 maroon4 panel

papayawhip toronto cityhall
maroon4 edshaso

%% wcl-anim3.gif
% Don't do this!

 black background
 white webcentric
 draw
   blue panel
   green panel
   red panel
 showpage

 black background
 white webcentric
 draw
   red panel
   blue panel
   green panel
 showpage

 black background
 white webcentric
 draw
   green panel
   red panel
   blue panel
 showpage

Here are all the "layers" of the various logos as frames in an animated GIF:

%% wcl-anim2.gif
black background
white webcentric showpage

draw
   blue panel
   green panel
   red panel
showpage

black cityhall showpage
black toronto showpage

black background white outlines showpage
black background white toronto.on.ca showpage
black background white torontoslant showpage
black background white edshaso showpage

The file, webcentric.ps (plain text) from which I created the logos I originally submitted, was thrown together on the spur of the moment and is rather convoluted.

Copying

This page and the WebCentric logo by Chris F.A. Johnson is licensed under a Creative Commons Attribution-Share Alike 2.5 Canada License. You may copy it, modify it, and redistribute it so long as the attribution remains and the license remains the same.

For uses not covered by the CC license, please contact webcentric@cfajohnson.com.