iPhone – iOS RGB颜色不正确?

iPhone – iOS RGB颜色不正确?,第1张

概述UIGraphicsBeginImageContext(self.view.frame.size); [drawImage.image drawInRect:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)]; CGContextSetLineCap(UIGraphicsGetCurr
UIGraphicsBeginImageContext(self.vIEw.frame.size);    [drawImage.image drawInRect:CGRectMake(0,self.vIEw.frame.size.wIDth,self.vIEw.frame.size.height)];    CGContextSetlineCap(UIGraphicsGetCurrentContext(),kCGlineCapRound);    CGContextSetlinewidth(UIGraphicsGetCurrentContext(),8.0);    CGContextSetRGBstrokecolor(UIGraphicsGetCurrentContext(),135.0,213.0,0.0,1.0);    CGContextBeginPath(UIGraphicsGetCurrentContext());    CGContextMovetoPoint(UIGraphicsGetCurrentContext(),currentPoint.x,currentPoint.y);    CGContextAddlinetoPoint(UIGraphicsGetCurrentContext(),currentPoint.y);    CGContextstrokePath(UIGraphicsGetCurrentContext());    drawImage.image = UIGraphicsGetimageFromCurrentimageContext();    UIGraphicsEndImageContext();

我画线使用RGB(135,213,0),RGB(135,0)应该是green.但iOS显示黄线!!为什么?

解决方法 您需要具有[0,1]范围内的值.因此,您需要将每个值除以255.

CGContextSetRGBstrokecolor(UIGraphicsGetCurrentContext(),135.0/255.0,213.0/255.0,1.0);
总结

以上是内存溢出为你收集整理的iPhone – iOS RGB颜色不正确?全部内容,希望文章能够帮你解决iPhone – iOS RGB颜色不正确?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1079102.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存