图片变灰

来源:互联网 发布:爱淘宝一元购物券 编辑:程序博客网 时间:2024/04/29 04:32

原先:处理后:  


代码:

            BitmapImage bitmapImage = new BitmapImage(new Uri(Directory.GetCurrentDirectory() + @"\奥克拉荷马生物医药园.png"));             newFormatedBitmapSource = new FormatConvertedBitmap();            newFormatedBitmapSource.BeginInit();            newFormatedBitmapSource.Source = bitmapImage;            newFormatedBitmapSource.DestinationFormat = PixelFormats.Gray8;            newFormatedBitmapSource.EndInit();            image.Source = newFormatedBitmapSource;


0 0