vote up 8 vote down star
3

With browser support / licensing issues of @font-face (a feature of CSS3), which intermediate option do you prefer?
Cufon,Typeface.js, or SIFR?

Cufon is new but has been getting a lot of praise from the web design community, how does it differ from Typeface.js ?

flag

6 Answers

vote up 10 vote down check

I personally preffer Typeface. It's easy to use and works well. It's created using JavaScript, not both JavaScript AND Flash like sIFR, or JavaScript AND PHP like FLIR.

Typeface.js

Advantages:

  • User doesn’t have to have Flash plugin installed on their browser
  • Easier to create with just a few lines of Javascript
  • For page loading it just needs to load the Javascript

Disadvantages:

  • Text is not selectable because it outputs it like an image. I looked at some examples, right clicked on a word and had to view as an image. Every single word had this behaviour. Big thumbs down.
  • Usage for body copy will slow down loading time, so it is recommended to use only for headlines.
  • Cannot be read by screen readers
  • Visual looks blurry
  • Not all browser compliant and still has a lot of development left to be done

sIFR

Advantages:

  • Can be read by screen readers as a normal headline because it is a behaviour layer on top of the markup and styling.
  • Text is selectable
  • SEO friendly
  • Displays text as is like any other web font. Crisp and not blurry!
  • Has addons like jQuery sIFR Plugin!

Disadvantages:

  • Requires Javascript to be enabled
  • Flash plugin must be installed in the browser
  • Need Adobe Flash Studio to create it BUT there is a pretty nifty sIFR generator that creates the file for you!
  • For page loading, it has to request for Flash, Javascript and CSS files attached to it, which can potentially get bogged down if you are using sIFR in too many places.
  • Cannot display on an iPhone. Yet…

Cufón (similar to Typeface.js)

Enter Cufón, the Javascript-based font replacement solution which makes heavy use of canvas and VML. This offers a great alternative to other solutions out there - no Flash or images required.

There are some issues with using Cufón on a live site, the most notable being the inability to highlight and copy/paste text, which is really the biggest issue for your site's users.

Combine that with the EULA issues, which prevent you from being able to legally embed fonts in Javascript files for most fonts on the market today.

The other issue is knowing what fonts can be used with Cufón. For sIFR, most fonts are fair game, since the font is embedded in a Flash movie, which is typically an approved usage by most font foundries for most fonts. With Cufón, the Javascript files used for the font can be easily "stolen" and either used on another website or reverse engineered.

link|flag
1  
What you prefer is irrelevant if you don't say why. – Adam Asham Mar 28 at 16:34
@Adam, OK, I've just explained why. – Koistya Navin Mar 28 at 16:45
Good! I inverted my down vote. :-) – Adam Asham Mar 28 at 16:50
How do the EULA issues differ between Cufon and the others? Surely it's not legal to embed any font in a Flash file either? – bzlm Mar 28 at 20:56
"With Cufón, the Javascript files used for the font can be easily 'stolen'" - it can only be stolen for use with Cufon, just like sIFR fonts can be stolen for use with sIFR. What's the difference? – bzlm Mar 29 at 17:49
show 3 more comments
vote up 0 vote down

Personally I think they all produce ugly output, the rendering/anti-aliasing is noticeably worse than what is produced by the browser. Typeface.js is the worst, the text looks uber blurry, SIFR is the best, it's almost as good, but still missing the subpixel antialiasing. Cufon is somewhere in-between in terms of quality.

Check out this quick comparison I made, comparing the rendering of the three methods versus native browser rendering of the same text. Notice how blurry they are, due to both lacking subpixel rendering, and also I think they are lacking in hinting as well (But not 100% sure on this, I'm not font pro)

link|flag
Can you provide an example? – Abi Noda Apr 15 at 0:15
sure, check out: davr.org/pics/font_comparison.png – davr Apr 15 at 17:46
vote up 3 vote down

I did a bit of a review on the three of these and found Cufon to be the best for my needs. I am more of a JavaScript based developer so my views may be slightly biased, Typeface was pretty good but had a few problems with my custom font type.

Check it out the full article here

Text replacement comparison

link|flag
Good link for the comparison +1 – Shadi Almosri Jun 9 at 14:34
vote up 0 vote down

I'd roll my own - mainly just to get ClearType*esque* support

link|flag
I agree, but writing a subpixel antialising font rendering engine seems like a huge undertaking, hence why all three solutions lack that feature. (Strangely, I believe this is available in flash, I'm not sure why SIFR doesn't take advantage of it) – davr Apr 15 at 17:48
No it doesn't. I implemented it in under an hour for Silverlight: nesteruk.org/projects/textsvc – Dmitri Nesteruk Apr 16 at 8:35
vote up 2 vote down

I tested all for cross browser compatibility and found sIFR but is the only Accessible, Selectable and most important Cross Browser Compatible.

link|flag
vote up 1 vote down

The SVG/VML canvas drawing method (used by Cufon and Typeface.js) has issues with text selection in some browsers, but has very good browser support generally. It doesn't support all text properties that CSS does. Cufon currently has support for more font types and browsers than Typeface.js does; otherwise they're functionally identical.

sIFR has some issues with flickering and relies on Adobe Flash being installed and activated, but has support for all the advanced rendering options, kerning etc, that Flash has.

Which is preferable usually has to do with how the rest of the page works.

link|flag

Your Answer

Get an OpenID
or

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