我正在尝试使用MapOverlayVIEw显示文本
[text drawAtPoint:CGPointMake(0,30) withFont:[UIFont FontWithname:@"Helvetica-Bold" size:(3 * MKRoaDWIDthAtZoomScale(zoomScale))]
它工作正常,除了我需要文本显示轮廓.
解决方法 是的,您可以借助CGContextSetDrawingMode(CGContextRef,CGTextDrawingMode)显示轮廓文本,尽管您可能需要调整一些数字和颜色以使其看起来很好.使用kCGTextFillstroke似乎合乎逻辑,但这可能会使笔划压倒填充.如果你抚摸,然后填充,如下面的块中,你会得到可读文本背后的可见轮廓.
CGContextRef context = UIGraphicsGetCurrentContext();CGPoint point = CGPointMake(0,30);CGfloat FontSize = (3 * MKRoaDWIDthAtZoomScale(zoomScale));UIFont *Font = [UIFont FontWithname:@"Helvetica-Bold" size:FontSize];// Draw outlined text.CGContextSetTextDrawingMode(context,kCGTextstroke);// Make the thickness of the outline a function of the Font size in use.CGContextSetlinewidth(context,FontSize/18);CGContextSetstrokecolorWithcolor(context,[[UIcolor redcolor] CGcolor]);[text drawAtPoint:point withFont:Font];// Draw filled text. This will make sure it's clearly readable,while leaving some outline behind it.CGContextSetTextDrawingMode(context,kCGTextFill);CGContextSetFillcolorWithcolor(context,[[UIcolor bluecolor] CGcolor]);[text drawAtPoint:point withFont:Font];总结
以上是内存溢出为你收集整理的ios – 我怎么能概述文字字体?全部内容,希望文章能够帮你解决ios – 我怎么能概述文字字体?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)