gpt4 book ai didi

ios - Monotouch : Changing the Hue of an image, 不仅仅是饱和度

转载 作者:行者123 更新时间:2023-11-29 11:10:38 29 4
gpt4 key购买 nike

我有以下 MonoTouch 代码可以更改 Saturation ,但我也试图更改 Hue

float hue = 0;
float saturation = 1;

if (colorCtrls == null)
colorCtrls = new CIColorControls() {
Image = CIImage.FromCGImage (originalImage.CGImage) };
else
colorCtrls.Image = CIImage.FromCGImage(originalImage.CGImage);

colorCtrls.Saturation = saturation;

var output = colorCtrls.OutputImage;
var context = CIContext.FromOptions(null);
var result = context.CreateCGImage(output, output.Extent);

return UIImage.FromImage(result);

最佳答案

它是不同过滤器的一部分,因此您需要使用 CIHueAdjust代替 CIColorControls 来控制色调。

关于ios - Monotouch : Changing the Hue of an image, 不仅仅是饱和度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11753381/

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