iOS - 调整 UIImage 的色调

发布于 2024-12-20 22:36:44 字数 110 浏览 4 评论 0原文

是否可以调整 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

左秋 2024-12-27 22:36:45

对于 iOS 5,您可以使用核心图像滤镜名称 CIHueAdjust。

CIHue调整滤镜

For iOS 5, you can use core image filter name CIHueAdjust.

CIHueAdjust filter

无敌元气妹 2024-12-27 22:36:45

我已经找到解决方案。我只是将每个像素的颜色转换为 HSB,调整色调并转换回 RBG:

//convert to HSB
CGFloat h, s, l, a;
UIColor *color = [UIColor colorWithRed:r green:g blue:b alpha:1.0f];  
[color getHue:&h saturation:&s brightness:&l alpha:&a];

//adjust hue
h *= amount;

//convert back to RGB
color = [UIColor colorWithHue:h saturation:s brightness:l alpha:1.0f];
[color getRed:&r green:&g blue:&b alpha:&a];

这不是最快的解决方案,但很简单

I have found solution. I have simply converted color of each pixel to HSB, adjusted hue and converted back to RBG:

//convert to HSB
CGFloat h, s, l, a;
UIColor *color = [UIColor colorWithRed:r green:g blue:b alpha:1.0f];  
[color getHue:&h saturation:&s brightness:&l alpha:&a];

//adjust hue
h *= amount;

//convert back to RGB
color = [UIColor colorWithHue:h saturation:s brightness:l alpha:1.0f];
[color getRed:&r green:&g blue:&b alpha:&a];

It is not fastest solution but it is simple

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文