Can I embed a custom font in an iPhone application? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T22:28:33Zhttp://stackoverflow.com/feeds/question/360751http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application26Can I embed a custom font in an iPhone application?Airsource Ltd2008-12-11T20:21:11Z2009-10-28T14:22:02Z
<p>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?</p>
<p>I found these links:</p>
<ul>
<li><a href="http://discussions.apple.com/thread.jspa?messageID=8304744" rel="nofollow">http://discussions.apple.com/thread.jspa?messageID=8304744</a></li>
<li><a href="http://forums.macrumors.com/showthread.php?t=569311" rel="nofollow">http://forums.macrumors.com/showthread.php?t=569311</a></li>
</ul>
<p>but these would require me to render each glyph myself, which is a bit too much like hard work, especially for multi-line text.</p>
<p>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.</p>
<p><hr /></p>
<p>EDIT - failed <code>-[UIFont fontWithName:size:]</code> experiment</p>
<p>I downloaded Harrowprint.tff (downloaded from <a href="http://www.dafont.com/harrowprint.font" rel="nofollow">here</a>) and added it to my Resources directory and to the project. I then tried this code:</p>
<pre><code>UIFont* font = [UIFont fontWithName:@"Harrowprint" size:20];
</code></pre>
<p>which resulted in an exception being thrown. Looking at the TTF file in Finder confirmed that the font name was Harrowprint. </p>
<p><hr /></p>
<p>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. </p>
<p><hr /></p>
<p>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. </p>
http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application/361613#3616135Answer by August for Can I embed a custom font in an iPhone application?August2008-12-12T01:18:13Z2008-12-12T01:18:13Z<p>Yes, you can include custom fonts. Refer to the documentation on UIFont, specifically, the <code>fontWithName:size:</code> method.</p>
<p>1) Make sure you include the font in your resources folder.</p>
<p>2) The "name" of the font is not necessarily the filename.</p>
<p>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.</p>
http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application/370257#3702573Answer by Genericrich for Can I embed a custom font in an iPhone application?Genericrich2008-12-16T01:28:57Z2009-03-07T21:34:27Z<p>I have done this like this:</p>
<p>Load the font:</p>
<pre><code>- (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);
}
</code></pre>
<p>Now, in your <code>drawRect:</code>, do something like this:</p>
<pre><code>-(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]);
}
</code></pre>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application/733907#7339070Answer by matt for Can I embed a custom font in an iPhone application?matt2009-04-09T11:59:46Z2009-04-09T11:59:46Z<p>Look up <code>ATSApplicationFontsPath</code></p>
<p>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.</p>
http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application/795617#7956170Answer by John for Can I embed a custom font in an iPhone application?John2009-04-27T22:56:36Z2009-04-27T22:56:36Z<p>It's not out yet, but the next version of cocos2d (2d game framework) will support variable length bitmap fonts as character maps. </p>
<p><a href="http://code.google.com/p/cocos2d-iphone/issues/detail?id=317" rel="nofollow">http://code.google.com/p/cocos2d-iphone/issues/detail?id=317</a></p>
<p>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.</p>
http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application/809307#80930717Answer by commanda for Can I embed a custom font in an iPhone application?commanda2009-04-30T21:57:27Z2009-05-01T06:50:43Z<p>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</p>
<p>The important files are FontLabel.h and FontLabel.m.</p>
<p>It uses some of the code from Genericrich's answer above.</p>
<p>Browse the source here: <a href="http://github.com/zynga/FontLabel/tree/master" rel="nofollow">http://github.com/zynga/FontLabel/tree/master</a></p>
http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application/809568#8095688Answer by rpetrich for Can I embed a custom font in an iPhone application?rpetrich2009-04-30T23:25:43Z2009-05-01T00:49:48Z<p>The only way I've been able to successfully load custom <code>UIFont</code>s is via the private GraphicsServices framework.</p>
<p>The following will load all the <code>.ttf</code> fonts in the application's main bundle:</p>
<pre><code>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;
}
</code></pre>
<p>Once fonts are loaded, they can be used just like the Apple-provided fonts:</p>
<pre><code>NSLog(@"Available Font Families: %@", [UIFont familyNames]);
[label setFont:[UIFont fontWithName:@"Consolas" size:20.0f]];
</code></pre>
<p>GraphicsServices can even be loaded at runtime in case the API disappears in the future:</p>
<pre><code>#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;
}
</code></pre>
http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application/809816#8098160Answer by ByteNirvana for Can I embed a custom font in an iPhone application?ByteNirvana2009-05-01T01:04:44Z2009-05-01T01:19:38Z<p>Maybe the author forgot to give the font a <a href="http://www.asy.com/glossary.htm#FOND" rel="nofollow">Mac FOND name</a>?</p>
<ol>
<li>Open the font in <a href="http://fontforge.sourceforge.net/" rel="nofollow">FontForge</a> then go to Element>Font Info</li>
<li>There is a "Mac" Option where you can set the FOND name.</li>
<li>Under File>Export Font you can create a new ttf</li>
</ol>
<p>You could also give the "Apple" option in the export dialog a try.</p>
<p><strong>DISCLAIMER</strong>: I'm not a IPhone developer!</p>
http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application/809867#8098670Answer by Joshua for Can I embed a custom font in an iPhone application?Joshua2009-05-01T01:25:01Z2009-05-01T01:25:01Z<p>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.</p>
<p>Then again, this is a bad approach if any better approach can be found.</p>
http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application/1637559#16375590Answer by Jacob Wallström for Can I embed a custom font in an iPhone application?Jacob Wallström2009-10-28T14:22:02Z2009-10-28T14:22:02Z<p>I have been trying out the various suggestions on this page on Iphone OS 3.1.2 and these are my conclusions:</p>
<p>Simply using [UIFont fontWithName:size:] with the fonts in the Resources directory will not work, even if the FOND name is set using FontForge.</p>
<p>[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.</p>