c#-使用MonoTouch创建自定义图像滤镜
作者:互联网
我正在使用Xamarin for iOS即时创建合成图像.我有两张图像,一幅是基本图像(黑白),另一幅是用于滤色镜的alpha蒙版“贴图”.然后,在运行时提供RGB值,这样我就可以使合成图像成为应具有的颜色.
我已经找到了许多用于更改整个图像的解决方案,但是我很难找到一个很好的解决方案来创建仅对蒙版贴图中包含的区域(使用alpha值)进行着色的滤色器:
基本图片:
产生的图像(如果我告诉我要红色):
在MonoDroid中,我能够创建一个自定义ImageView并重写OnDraw方法,然后使用ColorMatrixColorFilter,其工作方式像一个超级按钮,但不知道如何在MonoTouch中完成相同的任务.
这是我为MonoDroid做的事情:
protected override void OnDraw(Canvas canvas)
{
if (_alphaMask == null)
_alphaMask = BitmapFactory.DecodeResource(Resources, GetDrawable("star_mask"));
if(_image == null)
_image = BitmapFactory.DecodeResource(Resources, GetDrawable("star"));
AdjustColor(_color, canvas, _alphaMask, _image);
}
private static void AdjustColor(Color color, Canvas c, Bitmap alphaMask, Bitmap image)
{
float R = color.R;
float G = color.G;
float B = color.B;
var maskPaint = new Paint();
var mat = new[]
{
0, 0, 0, 0, R, //red
0, 0, 0, 0, G, //green
0, 0, 0, 0, B, //blue
0, 0, 0, 1, 0 //alpha
};
ColorMatrix cm = new ColorMatrix(mat);
maskPaint.SetColorFilter(new ColorMatrixColorFilter(cm));
c.DrawBitmap(image, 0, 0, null);
c.DrawBitmap(alphaMask, 0, 0, maskPaint);
}
解决方法:
好像您在寻找什么(CIFilter).
标签:xamarin,xamarin-ios,image-processing,ios,c 来源: https://codeday.me/bug/20191122/2058619.html