作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 iOS7 上使用文本描边时遇到问题...在 iOS4 iOS5 和 iOS6 上一切正常,但自从我为 iOS7 更新了我的设备后,我看不到描边颜色。有人知道这怎么可能吗?
这是我的代码:
UIGraphicsBeginImageContext(CGSizeMake(scale(line.position.width), scale(line.position.height)));
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth (context, scale(4.0)); //4.0
CGContextSetLineJoin(context, kCGLineJoinRound);
CGContextSetBlendMode(context, kCGBlendModeScreen);
CGContextSetTextDrawingMode(context, kCGTextFillStroke);
CGContextSetRGBFillColor(context, 1.0, 1.0, 1.0, 1.0);
CGContextSetRGBStrokeColor(context, 0.0, 0.0, 0.0, 1.0);
[label.text drawInRect:label.frame withFont:label.font];
self.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
最佳答案
我刚遇到这个。在 iOS 7 上,似乎使用 CGContextSetRGBFillColor 代替 CGContextSetRGBStrokeColor 来设置描边颜色。看起来像一个错误。这意味着没有办法使用 CGContextSetTextDrawingMode(context, kCGTextFillStroke);因为描边颜色将与填充颜色相同。
我通过添加第二个 drawInRect 调用修改了您的代码。这个解决方案也是向后兼容的,因为它只是重新敲击了额外的时间,如果他们修复了这个错误,它也应该是向前兼容的:
UIGraphicsBeginImageContext(CGSizeMake(scale(line.position.width), scale(line.position.height)));
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth (context, scale(4.0)); //4.0
CGContextSetLineJoin(context, kCGLineJoinRound);
CGContextSetBlendMode(context, kCGBlendModeScreen);
CGContextSetTextDrawingMode(context, kCGTextFillStroke);
CGContextSetRGBFillColor(context, 1.0, 1.0, 1.0, 1.0);
CGContextSetRGBStrokeColor(context, 0.0, 0.0, 0.0, 1.0);
[label.text drawInRect:label.frame withFont:label.font];
//New Code Start
CGContextSetTextDrawingMode(context, kCGTextStroke);
CGContextSetRGBFillColor(context, 0.0, 0.0, 0.0, 1.0);
[label.text drawInRect:label.frame withFont:label.font];
//New Code End
self.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
关于text - 为什么 CGContextSetRGBStrokeColor 不适用于 ios7?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18894907/
我是一名优秀的程序员,十分优秀!