I noticed recently that the method explained by Andrew Moore here isn't working anymore:
How to decode base64-encoded font information?
What I want to do is decode the base64-encoded string to a .bin file, then convert that .bin to .otf/.ttf.
I was able to do that successfully by follwoing Mr. Moore's example, but something changed in the encription (maybe) and I would like some help.
@font-face {
font-family: "Family";
font-style: normal;
font-weight: normal;
src: url("data:font/opentype;base64,T1RUTwAN....AHMAdgB0");
unicode-range: U+0-10FFFF;
}
I believe the addition of "unicode-range" in the CSS may have something to do with it. Can someone please help me decode these files again? Thanks.