需求:实现类似QQ离线时头像变灰的功能
方法:
FormatConvertedBitmap bitmap = new FormatConvertedBitmap();
bitmap.BeginInit();
bitmap.Source = (BitmapSource)source;
bitmap.DestinationFormat = PixelFormats.Gray32Float;
bitmap.EndInit();
return bitmap;