Change Font Family, Rename Font

5

1

How can I change a font's Family? I have 4 fonts belonging to the same family and I wish to separate them.

Also, I would also want to rename the Font itself.

A simple file name change is NOT enough.

I'm looking for a free tool to do this, but came out empty handed after Googling a bit. All Font "studios" demand money.

I should specify that I need to do this in the Operating System itself, so I need to modify the TTF/OTF/actual font file.

Axonn

Posted 2012-09-09T20:46:40.073

Reputation: 314

What does this have to do with programming...? – BoltClock – 2012-09-09T21:26:39.127

I need this for a Flash-player related issue. Besides, programmers know tools ::- ). Anyway, I realized that I might have posted this on SuperUser or somewhere else, but I just didn't know if that's a better place for this question. You decide. – Axonn – 2012-09-09T21:27:59.310

Answers

13

Any special reason for changing the font details? (just curious...)

anyway i found this little tool: http://fontforge.org/ (Which is cross platform and open source!)

hope it helps :)

Ddorda

Posted 2012-09-09T20:46:40.073

Reputation:

It's a long story :D. There are some issues regarding the way Adobe Flash returns me the Font Name so I need to rename them in order to achieve a certain task. – Axonn – 2012-09-09T21:26:15.333

5

TTFedit did the job for me. It has a much smaller footprint and was easier to use for me.

Just start ttfedit.jar, open a .ttf, select the "name" tab on the left side, edit the family names, subfamily names, etc. and save as a new .ttf.

In my case, I had to wipe Photoshop's font cache before my changed font got recognized.

supdolan

Posted 2012-09-09T20:46:40.073

Reputation: 51

That was a nice tool – Anwar – 2018-09-06T13:43:55.857

1

I know that is a bit older, but I found a method for .otf files:

  1. Download FontForge
  2. Edit the three names (>Element,>Fontinfo) and export it as a .ttf file.
  3. Then grab this old Windows program: https://www.microsoft.com/typography/property/fpedit.htm
  4. Open the created .ttf with fpedit and skip the steps (just click next till the program is ready)
  5. Click on "Save as"
  6. Be happy

Marvin

Posted 2012-09-09T20:46:40.073

Reputation: 11

1

If you upload the font's file (with the new name) to the server you can use it after defining it as a font. For example: If I want Arial to be called Ari, I can just change the file's name and upload it to my server. Then I will just write the following line in the css file:

@font-face{font-family:Ari; src:url('Ari.ttf');}

font-family is the name of the new font.

src is the file's address.

To use the new font write something like: H1{font-family:'Ari';}


As to the first part of your question, I don't understand what you mean. Please clarify.

Shahar

Posted 2012-09-09T20:46:40.073

Reputation:

I maybe should have specified that I need to do this with some fonts in my Windows installation. – Axonn – 2012-09-09T21:24:17.407