WPF设置图片变灰

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

你可能感兴趣的:(职场,WPF,设置,休闲)