Note that there are some explanatory texts on larger screens.

plurals
  1. POMake Adobe fonts work with CSS3 @font-face in IE9
    primarykey
    data
    text
    <p>I'm in the process of building a small intranet application and try, with no luck, to use <strong>Adobe font</strong> I purchased lately. As I was informed, in our case it's not a license violation.</p> <p><strong>I converted the .ttf/.otf versions of font to .woff, .eot and .svg, so to target all major browsers.</strong> The @font-face syntax I used is basically the bulletproof one from <a href="http://www.fontspring.com/blog/the-new-bulletproof-font-face-syntax" rel="noreferrer">Font Spring</a>:</p> <pre><code>@font-face { font-family: 'MyFontFamily'; src: url('myfont-webfont.eot'); src: url('myfont-webfont.eot?#iehack') format('eot'), url('myfont-webfont.woff') format('woff'), url('myfont-webfont.ttf') format('truetype'), url('myfont-webfont.svg#svgFontName') format('svg'); } </code></pre> <p>I modified the HTTP headers (added Access-Control-Allow-Origin = "*") to allow cross-domain references. <strong>In FF and Chrome it works perfectly, but in IE9 I get:</strong></p> <pre><code>CSS3111: @font-face encountered unknown error. myfont-webfont.woff CSS3114: @font-face failed OpenType embedding permission check. Permission must be Installable. myfont-webfont.ttf </code></pre> <p>I noticed that when converting font from .ttf/.otf to .woff I also get an <strong>.afm</strong> file, but I don't have a clue whether it's important or not...</p> <p>Any ideas how to work it out?</p> <p>[Edit] - I host my websites (fonts too, but under separate directory and subdomain for static content) under <strong>IIS 7.5</strong></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload