gpt4 book ai didi

text - 为什么 CGContextSetRGBStrokeColor 不适用于 ios7?

转载 作者:行者123 更新时间:2023-12-01 11:42:14 24 4
gpt4 key购买 nike

我在 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com