3

我想缓存给定字体类型和字体大小的字符的一些纹理,但我无法确定最大字符在整个 unicode 字符集中可能采用的最大大小。

我如何计算这个尺寸?

4

2 回答 2

-1

您正在寻找的是字体边界框(或 BBox)。在 iOS 中,你需要一个 CGFontRef 然后可以使用这个函数:

CGRect CGFontGetFontBBox (
   CGFontRef font
);

这将返回字体边界框,它是字体中所有字形边界框的并集​​。它以字形单位返回值。

于 2012-12-19T08:53:19.693 回答
-1

好吧,你可以使用 sizeWithFont:

并检查最大的(或最高或最大的区域)

它适用于宽度和面积,但似乎所有字符都有相同的高度,甚至点“。”

无论如何,我想这样的事情应该回答你的问题:

UIFont* aFont = [UIFont fontWithName:@"HelveticaNeue" size:15];
NSString* charsToTest = @"abcdf...xyz, ABCD...XYZ, 0123...";
float maxArea = 0;
float maxWidth = 0;
float maxHeight = 0;
NSString* largerChar;
NSString* tallerChar;
NSString* biggerChar;
for (int i = 0; i<charsToTest.length; i++) {
    NSRange currentRange;
    currentRange.length = 1;
    currentRange.location = i;
    NSString* currentCharToTest = [charsToTest substringWithRange:currentRange];
    CGSize currentSize = [currentCharToTest sizeWithFont:aFont];
    if (currentSize.width > maxWidth) {
        maxWidth = currentSize.width;
        largerChar = currentCharToTest;
        NSLog(@"char:%@, new record width: %f", largerChar, maxWidth);
    }
    if (currentSize.height > maxHeight) {
        maxHeight = currentSize.height;
        tallerChar = currentCharToTest;
        NSLog(@"char:%@, new record height:%f", tallerChar, maxHeight);
    }
    float currentArea = currentSize.height * currentSize.width;
    if ( currentArea > maxArea) {
        maxArea = currentArea;
        biggerChar = currentCharToTest;
        NSLog(@"char:%@, new area record: %f", biggerChar, maxArea);
    }
}
// final resut:
NSLog(@"\n\n");
NSLog(@"char:%@ --> MAX WIDTH IS: %f", largerChar, maxWidth);
NSLog(@"char:%@ --> MAX HEIGHT IS: %f", tallerChar, maxHeight);
NSLog(@"char:%@ --> MAX AREA IS: %f\n\n", biggerChar, maxArea);
于 2012-12-19T09:41:50.780 回答