Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Looking for an @font-face generator that will convert my legally purchased and very expensive fonts for web use. I use to use Font Squirrel before they started blocking Adobe fonts. Is there a way around this or another online generator for converting fonts from OTF to TTF, EOT, WOFF, SVG, SVGZ?

share|improve this question

closed as not constructive by Will Jul 23 '12 at 12:15

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

8 Answers

http://fontface.codeandmore.com/ simple @font-face generator but works.

share|improve this answer
1  
This one worked like a charm, even on a font that crashed font2web. – nickb Oct 3 '11 at 8:55
2  
Ironic because font-squirrel provides methods to protect the original TTF files from the public, while this and others don't. I don't want to open these foundries' files up to the public, I just want to use the fonts I purchased on the web... – squarecandy Jan 23 '12 at 23:23
Awesome Tien, the simplest font-face generator I have seen so far. – Mohammed Arif Mar 9 '12 at 4:18
1  
Thanks Tien; fixed a big issue for me. – Steve Nov 11 '12 at 1:38
3  
Now a subscription service FYI, but only $1 per month. – luke Mar 21 at 2:14
show 3 more comments

This one does the job:

http://www.font2web.com/

share|improve this answer
Yeah, looks good. Didn't generate a WOFF when I tried it though, only SVG, EOT, TTF. Also doesn't output as good a @font-face syntax as Font Squirrel. – Simon Jul 14 '11 at 3:48
1  
Likewise; no WOFF file in the download. Otherwise it seems very good--had no problems with the @font-face embed. – markedup Oct 19 '11 at 10:11
This one made all the fonts, but the filesize is huge: 1.2Mb, double as onlinefontconverter.com. – machineaddict May 23 '12 at 7:07
this one did the job for me as well.. don't know what was wrong with fontsquirrel.. – nikolas Apr 30 at 13:28
up vote 13 down vote accepted

I used one of the many font converters online to convert the otf font into eot, svg, ttf, and woff. (I forget which one I used, there are a dozen or so.) Then I used the code below:

@font-face {
font-family: 'Helvetica';
src: url('helvetica.eot');
src: url('helvetica.eot?iefix') format('eot'),
     url('helvetica.woff') format('woff'),
     url('helvetica.ttf') format('truetype'),
     url('helvetica.svg#helvetica') format('svg');
font-weight: normal;
font-style: normal;
}

Message to the Hedgehogs

Thanks for your comments, but I'm skeptical of anyone who tells me to pay again for type I've already paid for. A flag goes up telling me you're involved in profiting from it in some way. My Adobe license clearly states that I can use and "distribute" the fonts "in any medium."

GRANT OF LICENSE. This document grants you the following rights: - Installation and Use. You may install and use an unlimited number of copies of the SOFTWARE PRODUCT. You may copy and distribute unlimited copies of the SOFTWARE PRODUCT, in any medium, provided that you publish on each copy an appropriate copyright notice.

*Included the license in the css, next to @font-face.

share|improve this answer
which site did u use ? – Harsha M V Apr 2 '11 at 20:33
It was a combo of two sites, because one of the sites didn't produce the .woff file properly. Search google for otf to woff, or online font converter. You'll need eof, ttf, woff, and svg. – Jeffrey Apr 2 '11 at 21:37
thanks you. i got the conversion but the rendering is not clean and crisp. – Harsha M V Apr 3 '11 at 5:20
3  
Another method I use is to convert to svg and then back to ttf using this tool: freefontconverter.com and upload the ttf into fontsquirrel – Aram Kocharyan Dec 30 '12 at 11:26
Actually, otf->.pfa->otf->font-squirrel seems to work better with IE 7. – Aram Kocharyan Jan 5 at 14:26
  1. Download this Microsoft app
  2. Strip out the info in the font file - replace font name with your own
  3. On the last page, remove the Vendor Name
  4. Then convert to OTF because it'll probably say corrupted. Use this
  5. Now upload to Font Squirrel and it'll let you use it without restrictions

Tested & works well on ITC, Adobe, LinoType, FF fonts

enter image description here

share|improve this answer
Thanks for sharing. Great solution. – BasTaller May 16 '12 at 19:24
1  
Doesn't work it says: Unable to edit font from vendor Linotype – simo Jun 30 '12 at 18:44
1  
@simo Change its vendor name. It's usually a 3-letter index on the last page; removing it completely usually does the trick. – GRIGORE-TURBODISEL Jun 30 '12 at 21:45
No, I can't even open the font file. This message appears on start up when I try to browse for and open the font file. – simo Jul 1 '12 at 12:59
3  
use fontforge for edit VENDOR name – adil Oct 17 '12 at 15:15
show 1 more comment

found this and it worked for a font that wouldn't convert at fontsquirrel, but the file size from this didn't go down at all from the original, so likely too large to use (~700-800k per file), which isn't this converter's fault, just a warning that there's no shrinkage: http://onlinefontconverter.com/

share|improve this answer

The reason Font Squirrel would block those fonts is because it is illegal to use them in such a way. Even if you have purchased them yourself legally, their EULAs state that you are not allowed to distribute them to others. Uploading the font on your server for @font-face use allows others to access and download the font--a breach of the EULA. While the EULA's from many big font foundries are outdated and need to be updated to included the possibility of web use, as of now it is copyright infringement. (Although it seems some of them are taking the initiative to change them. You should check the foundry and the license for you specific font.)

I would search font squirrel or the web for a similar font that allows for web use (there are many good free ones out there.) If you are set on using this specific font, use images instead of @font-face. This is a legal use of the font you purchased.

share|improve this answer
13  
It's not illegal. I looked at my Adobe license and it says... "GRANT OF LICENSE. This document grants you the following rights: - Installation and Use. You may install and use an unlimited number of copies of the SOFTWARE PRODUCT. You may copy and distribute unlimited copies of the SOFTWARE PRODUCT, in any medium, provided that you publish on each copy an appropriate copyright notice." – Jeffrey Mar 31 '11 at 18:55
Fair enough, guess it depends on the font. Most Adobe fonts aren't under such an open license as far as I know. – Rich Bradshaw Mar 31 '11 at 19:08
Adobe seems to disagree. Sure, I think foundries should revise their EULAs to include web use, but that doesn't mean it isn't copyright infringement. I don't see Adobe on this list – jlego Mar 31 '11 at 19:58
3  
Sounds like some foundries, Adobe included, are changing their policies after they already sold products under a different policy. That is infringement of the buyer's rights. The fonts I bought five years ago may be valid, while the same fonts that are being bought today aren't. It's stupid. Considering if you hosted your site in Russia, Sweden, etc.. it wouldn't matter because those countries don't support US copyright law. It's a losing battle for type foundries if they are thinking in the mindset of containment... they need to start swimming with the current. Corporations are slow to learn. – Jeffrey Apr 1 '11 at 3:03
That they are. When it comes down to it, its your decision. You can do anything you like, but if Adobe decides they don't like it (which I doubt they will take action), then you get to face the consequences. – jlego Apr 1 '11 at 4:41

If you don't have a license to redistribute the fonts, then this is illegal. Anyone can download the font if you do that, so it's no different to just putting the TTF on your webpage for free download!

Typekit allows you to embed some of the Adobe fonts for a fee, but what you want to do is copyright infringement.

share|improve this answer
typekit, no thank you. i found another way :) – Jeffrey Mar 29 '11 at 22:17
Please share your solution. Thanks. – eddflrs Mar 29 '11 at 23:51
@Jeffery: I am also interested in hearing how you resolved this, can you share? That's the point of this website AFAIK. – Wesley Murch Mar 30 '11 at 22:19
My guess is cufon but locking it to a domain. – Ian Devlin Mar 31 '11 at 13:06

Just Google Search Online Font Converter and click any result such as: http://onlinefontconverter.com/

Of course, making sure you have the legal right to do so before hand.

share|improve this answer
I tried this one and it just add your font to a conversion queue. After 5 minutes nothing happened and my font was still at the same number in queue. – Adrian Ber Dec 12 '12 at 22:29

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