如何在iOS SDK中使用UIBezierPath
从角色获取Glyph
。
我经历了this,但它显示了双线,我只想要一条线..
因为我是这项研究的新手。请帮助我解决这个问题..我不想要任何代码,但想得到你的参考..
实际上我想让UIBezierPath
描述每个字母字母的形状..
提前致谢..
答案 0 :(得分:4)
对于我正在处理的项目,我碰巧不得不这样做,我发现此参考非常有用:Low-level text rendering。
我用来从字形创建路径的核心代码(根据您的情况调整):
CGGlyph glyph = ...;
CTFontRef font = CTFontCreateWithName((__bridge CFStringRef)@"Helvetica", 25, NULL);
CGAffineTransform transform = CGAffineTransformIdentity;
CGPathRef path = CTFontCreatePathForGlyph(font, glyph, &transform);
UIBezierPath *bezier = [UIBezierPath bezierPathWithCGPath:path];
CGPathRelease(path);
CFRelease(font);