Converting and rendering web fonts to base64
I want to defer font loading on my site inspired by deferred font loading logic for Smashing Magazine.
Main part of this is converting fonts to base64 and preparing your CSS file with that. My steps so far:
CSS snippet for Open Sans Bold:
@font-face {
font-family: 'Open Sans';
src: url(data:application/x-font-woff;charset=utf-8;base64,<base64_encoded>) format('woff');
font-weight: 700;
font-style: normal;
}
The problem is , that converted fonts looks a lot different . Eg here Open Sans Bold:
Especially notice accents way off and absolutely horrible letter 'a'. Other font families and variants looks very noticeably different too (size and shape distortions, etc.).
So the question is: How do you properly encode TTF files from Google Web Fonts (or any other source) to base64 format and use it so the result is identical to the original file?
In the Font Squirrel Expert options, make sure to set the 'TrueType Hinting' option to 'Keep Existing'. Either of the other options will cause the TrueType instructions (hints) to be modified, which will in turn affect the rendering of the font.
Alternatively , if you're happy with the rendering of the font directly from GWF, you can just take that file and do the base64 encoding yourself. In OS X or Linux, use the built-in base64 command in Terminal/shell:
$ base64 myfont.ttf > fontbase64.txt
For Windows, you'll need to download a program to encode in base64 (there are several free/Open Source tools available). Copy the contents of that file, then use in your CSS as:
@font-face {
font-family: 'myfont';
src: url(data:font/truetype;charset=utf-8;base64,<<copied base64 string>>) format('truetype');
font-weight: normal;
font-style: normal;
}
(Note that you may need to make some adjustments to the various @font-face info to match your particular font data; this is just an example template)
链接地址: http://www.djcxy.com/p/65060.html上一篇: 没有客户端的Backbone.js
下一篇: 将网页字体转换为base64