vote up 26 vote down star
27

I would like to have an app include a custom font for rendering text, load it, and then use it with standard UIKit elements like UILabel. Is this possible?

I found these links:

but these would require me to render each glyph myself, which is a bit too much like hard work, especially for multi-line text.

I've also found posts that say straight out that it's not possible, but without justification, so I'm looking for a definitive answer.


EDIT - failed -[UIFont fontWithName:size:] experiment

I downloaded Harrowprint.tff (downloaded from here) and added it to my Resources directory and to the project. I then tried this code:

UIFont* font = [UIFont fontWithName:@"Harrowprint" size:20];

which resulted in an exception being thrown. Looking at the TTF file in Finder confirmed that the font name was Harrowprint.


EDIT - there have been a number of replies so far which tell me to read the documentation on X or Y. I've experimented extensively with all of these, and got nowhere. In one case, X turned out to be relevant only on OS X, not on iPhone. Consequently I am setting a bounty for this question, and I will award the bounty to the first person who provides an answer (using only documented APIs) who responds with sufficient information to get this working on the device. Working on the simulator too would be a bonus.


EDIT - it appears that the bounty auto-awards to the answer with the highest nunber of votes. Interesting. No one actually provided an answer that solved the question as asked - the solution that involves coding your own UILabel subclass doesn't support word-wrap, which is an essential feature for me - though I guess I could extend it to do so.

flag

71% accept rate
In one of CS193p (iPhone Application Development) lectures in Stanford, Evan noted that installing your own font on a device is “lots of work”, which at least means it’s possible :-) – Ilya Birman Apr 24 at 11:17

9 Answers

vote up 17 vote down check

I created a simple module that extends UILabel and handles loading .ttf files. I released it opensource under the Apache license and put it on github here: git://github.com/zynga/FontLabel.git

The important files are FontLabel.h and FontLabel.m.

It uses some of the code from Genericrich's answer above.

Browse the source here: http://github.com/zynga/FontLabel/tree/master

link|flag
1  
I've tried using your code but it crashes quite often depending on the font. For example, try using the African or Tiki fonts from here fontspace.com/category/tiki. – 4thSpace Jun 14 at 19:06
This library works great. I need help with the vertical spacing though. Can't figure out how to do it. So I have this message.numberOfLines = 3; How do I control the vertical spacing between line 1, and line 2 and line 3? Thank you, Tee – teepusink Nov 15 at 9:09
vote up 5 vote down

Yes, you can include custom fonts. Refer to the documentation on UIFont, specifically, the fontWithName:size: method.

1) Make sure you include the font in your resources folder.

2) The "name" of the font is not necessarily the filename.

3) Make sure you have the legal right to use that font. By including it in your app, you're also distributing it, and you need to have the right to do that.

link|flag
Have you actually done this successfull? I can't make it work, and googling finds only other people who have tried it and failed. – Airsource Ltd Dec 12 '08 at 2:12
Yes. I have. Again, make sure you're using the proper font name. – August Dec 12 '08 at 4:15
When you say "The "name" of the font is not necessarily the filename" ... how do find the correct name? – Keith Fitzgerald Feb 19 at 15:27
vote up 3 vote down

I have done this like this:

Load the font:

- (void)loadFont{
  // Get the path to our custom font and create a data provider.
  NSString *fontPath = [[NSBundle mainBundle] pathForResource:@"mycustomfont" ofType:@"ttf"]; 
  CGDataProviderRef fontDataProvider = CGDataProviderCreateWithFilename([fontPath UTF8String]);

  // Create the font with the data provider, then release the data provider.
  customFont = CGFontCreateWithDataProvider(fontDataProvider);
  CGDataProviderRelease(fontDataProvider); 
}

Now, in your drawRect:, do something like this:

-(void)drawRect:(CGRect)rect{
    [super drawRect:rect];
    // Get the context.
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextClearRect(context, rect);
    // Set the customFont to be the font used to draw.
    CGContextSetFont(context, customFont);

    // Set how the context draws the font, what color, how big.
    CGContextSetTextDrawingMode(context, kCGTextFillStroke);
    CGContextSetFillColorWithColor(context, self.fontColor.CGColor);
    UIColor * strokeColor = [UIColor blackColor];
    CGContextSetStrokeColorWithColor(context, strokeColor.CGColor);
    CGContextSetFontSize(context, 48.0f);

    // Create an array of Glyph's the size of text that will be drawn.
    CGGlyph textToPrint[[self.theText length]];

    // Loop through the entire length of the text.
    for (int i = 0; i < [self.theText length]; ++i) {
        // Store each letter in a Glyph and subtract the MagicNumber to get appropriate value.
        textToPrint[i] = [[self.theText uppercaseString] characterAtIndex:i] + 3 - 32;
    }
    CGAffineTransform textTransform = CGAffineTransformMake(1.0, 0.0, 0.0, -1.0, 0.0, 0.0);
    CGContextSetTextMatrix(context, textTransform);
    CGContextShowGlyphsAtPoint(context, 20, 50, textToPrint, [self.theText length]);
}

Basically you have to do some brute force looping through the text and futzing about with the magic number to find your offset (here, see me using 29) in the font, but it works.

Also, you have to make sure the font is legally embeddable. Most aren't and there are lawyers who specialize in this sort of thing, so be warned.

link|flag
Genericrich - this is certainly useful information, but it is basically a duplicate of BNicholson's post in my first link. It also requires rendering every Glyph - which is exactly what I don't want to do. – Airsource Ltd Dec 16 '08 at 2:14
What I get for answering in a hurry! I've found it works pretty well. YMMV. – Genericrich Dec 16 '08 at 2:23
I'm sure it does work well, but I (really really) don't want to write my own layout engine to handle everything UILabel and UITextView currently do for me - particularly word wrapping, positioning, and editing. – Airsource Ltd Dec 16 '08 at 3:55
vote up 0 vote down

Look up ATSApplicationFontsPath

A simple plist entry that allows you to include the font file(s) in your app resources folder and they "just work" in your app.

link|flag
Have you tried this on device? I had no joy, and googling suggests that this plist entry isn't supported on iPhone, even though it's documented for iPhone OS. – Airsource Ltd Apr 9 at 13:53
1  
Sorry, I am only using it in an OS X app at the moment. – matt Apr 9 at 15:48
vote up 0 vote down

It's not out yet, but the next version of cocos2d (2d game framework) will support variable length bitmap fonts as character maps.

http://code.google.com/p/cocos2d-iphone/issues/detail?id=317

The author doesn't have a nailed down release date for this version, but I did see a posting that indicated it would be in the next month or two.

link|flag
vote up 8 vote down

The only way I've been able to successfully load custom UIFonts is via the private GraphicsServices framework.

The following will load all the .ttf fonts in the application's main bundle:

BOOL GSFontAddFromFile(const char * path);
NSUInteger loadFonts()
{
	NSUInteger newFontCount = 0;
	for (NSString *fontFile in [[NSBundle mainBundle] pathsForResourcesOfType:@"ttf" inDirectory:nil])
		newFontCount += GSFontAddFromFile([fontFile UTF8String]);
	return newFontCount;
}

Once fonts are loaded, they can be used just like the Apple-provided fonts:

NSLog(@"Available Font Families: %@", [UIFont familyNames]);
[label setFont:[UIFont fontWithName:@"Consolas" size:20.0f]];

GraphicsServices can even be loaded at runtime in case the API disappears in the future:

#import <dlfcn.h>
NSUInteger loadFonts()
{
	NSUInteger newFontCount = 0;
	NSBundle *frameworkBundle = [NSBundle bundleWithIdentifier:@"com.apple.GraphicsServices"];
	const char *frameworkPath = [[frameworkBundle executablePath] UTF8String];
	if (frameworkPath) {
		void *graphicsServices = dlopen(frameworkPath, RTLD_NOLOAD | RTLD_LAZY);
		if (graphicsServices) {
			BOOL (*GSFontAddFromFile)(const char *) = dlsym(graphicsServices, "GSFontAddFromFile");
			if (GSFontAddFromFile)
				for (NSString *fontFile in [[NSBundle mainBundle] pathsForResourcesOfType:@"ttf" inDirectory:nil])
					newFontCount += GSFontAddFromFile([fontFile UTF8String]);
		}
	}
	return newFontCount;
}
link|flag
note to those wondering, this does work, but you'll need to call loadFonts right before using the font -- they don't seem to stay loaded throughout the application – pixel Jul 14 at 17:31
In OS 3.0 you definitely need to use the second second example, don't forget the import. Worked pretty well for me. – Jasconius Nov 12 at 19:30
vote up 0 vote down

Maybe the author forgot to give the font a Mac FOND name?

  1. Open the font in FontForge then go to Element>Font Info
  2. There is a "Mac" Option where you can set the FOND name.
  3. Under File>Export Font you can create a new ttf

You could also give the "Apple" option in the export dialog a try.

DISCLAIMER: I'm not a IPhone developer!

link|flag
vote up 0 vote down

If you can't find a way it's not too hard to raster-reduce a font and embed an image that you blit from.

Then again, this is a bad approach if any better approach can be found.

link|flag
vote up 0 vote down

I have been trying out the various suggestions on this page on Iphone OS 3.1.2 and these are my conclusions:

Simply using [UIFont fontWithName:size:] with the fonts in the Resources directory will not work, even if the FOND name is set using FontForge.

[UIFont fontWithName:size:] will work if the fonts are loaded first using GSFontAddFromFile. But GSFontAddFromFile is not part of Iphone OS 3.1.2 so it has to be dynamically loaded as described by rpetrich.

link|flag

Your Answer

Get an OpenID
or

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