Is there any way to tell when an @font-face rule is applied? I'm creating @font-face rules that use data: URIs from a font file requested with an synchronous XMLHttpRequest in JavaScript and then write text to a canvas element using the font right away. The thing is that it doesn't actually use the font when drawing the text for the first few milliseconds. My current solution is to block execution for a few milliseconds by sending a synchronous XMLHttpRequest, which is a terrible solution.

I cannot make this asynchronous as it is for implementing Processing's loadFont() function, which is synchronous, in Processing.js.

I would prefer that the solution not check the dimensions of character as there's no guarantee that the font has a certain character and that its dimensions are different from the same character of the current font.

link|improve this question

feedback

1 Answer

Even though you don't prefer a dimension check, that is how the Modernizr @font-face feature detection works and may be the best way:

Modernizr embeds a tiny font glyph using a data: URI. In this, the single "." character is created; it is then applied to a temporary element whose innerHTML is set to '........' and whose width is measured, first with a basic serif font and then with the custom font applied. If the width is different, we know the browser rendered the new font data we supplied.

link|improve this answer
Sorry, but that can't be used for loadFont(), as it's not testing for @font-face support, but actually loading any arbitrary font, of which I cannot know the dimensions beforehand. – Eli Grey Dec 7 '10 at 3:11
feedback

Your Answer

 
or
required, but never shown

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