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颜色不正确?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)