将模糊效果应用于控制台应用程序c#中的位图

时间:2016-10-31 15:09:22

标签: c# bitmap

我有位图

Bitmap shadow = (Bitmap)finalImage.Clone();

我试图模糊这个位图。在网上搜索后我找到了这个dll

using System.Windows.Media.Effects;

我现在有这个功能

BlurBitmapEffect myBlurEffect = new BlurBitmapEffect();
myBlurEffect.Radius = 10;
myBlurEffect.KernelType = KernelType.Box;

任何人都知道如何模糊图像?

0 个答案:

没有答案