vote up 1 vote down star
1

Create a font is a lot of work, and using the right one a crucial part of application design. But I never understood why there are so many symbol fonts outthere, and more new coming everyday.

What are they for?

We have pictures in gif, svg and png for graphism, and you won't use symbols to write. But they must be usefull overwise nobody would create new anymore.

Please, enlight me.

flag

77% accept rate
2  
Not desirectly programming related indeed, but something every programmer should know, don't you think ? – e-satis Oct 11 at 9:09

closed as not programming related by Dario, divo, Adam Rosenfield, Lasse V. Karlsen, Brandon Oct 10 at 20:02

2 Answers

vote up 5 vote down check

They're a very simple way to render scalable symbols in a GUI, without needing to include an SVG rendering library or similar.

So for instance, in my product I have sort arrows in a custom-drawn listview header, and I render them using symbol characters:

alt text

Old versions of Windows used to paint its window buttons (minimize, maximize and suchlike) using a symbol font ("Marlett", if I recall correctly).

link|flag
1  
+1 Nice examples. – whatnick Oct 10 at 19:00
vote up 4 vote down

I think it's just easier to type one letter to get a symbol than it is to insert a graphic. Fonts are scalable, so you can change the point size, and the size of the symbol will change, and the resolution of the symbol will remain intact (i.e. no pixelation).

Symbol fonts are commonly used to express math equations, where cutting and pasting images would be excruciating.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.