vote up 4 vote down star
3

I've been trying to research a safer way to implement Cufón that would store the actual font data in a MySQL database that could be queried and returned when necessary, without having to store the converted .js file on the server (and break EULA).

Is this even possible? I'm still in the beginning stages of testing this out.

I've already implemented this solution for now, combining @font-face and Cufón. http://kilianvalkhof.com/2009/css-xhtml/combining-cufon-and-font-face/

flag

80% accept rate
Good technicality :) – Meep3D Jul 17 at 14:58

1 Answer

vote up 1 vote down

Cufón needs VML/Canvas points data about the fonts it'll render, and it gets that from a static JS file. This is essentially the definition of the font. Storing that data somewhere else (in a db, for example) and delivering it in another way (e.g. JSON) does not in fact "get around copyright"; you're still distributing the font data in a potentially unlicensed way.

Like this guy says (see "My thoughts on Cufón" on that page), I'd be careful about using Cufón with anything other quickie non-commercial sites, or even better, only with fonts I actually have rights to use.

link|flag
I agree that it does not avoid the copyright, but if you have a secured db where people can't just hit a hosted .js file the font itself should be much more secure from prying eyes. I'm still working on the code testing this out (hence no answer, but thanks). Also, in the particular case I'm working with here, the two font files being used are both completely free. – Jeff Wain Jul 19 at 14:48

Your Answer

Get an OpenID
or

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