iOS - 调整 UIImage 的色调
是否可以调整 UIImage/CGContextRef 的色调? 我尝试将上下文与颜色和色调混合模式混合,但结果是错误的。
我应该将 RGB 转换为 HSB,调整 HSB 然后再转换回来吗?
Is it possible to adjust Hue of the UIImage/CGContextRef?
I have tried to blend Context with Color and Hue blend mode but result was wrong.
Should I convert RGB to HSB, adjust HSB and convert back?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 iOS 5,您可以使用核心图像滤镜名称 CIHueAdjust。
CIHue调整滤镜
For iOS 5, you can use core image filter name CIHueAdjust.
CIHueAdjust filter
我已经找到解决方案。我只是将每个像素的颜色转换为 HSB,调整色调并转换回 RBG:
这不是最快的解决方案,但很简单
I have found solution. I have simply converted color of each pixel to HSB, adjusted hue and converted back to RBG:
It is not fastest solution but it is simple