请问各位,在Silverlight中,有什么好的方法对图片进行“灰化”处理,类似Photoshop一样的处理,谢谢,各位大牛
参考Fade image to grayscale in silverlight:
Couple ways to do it.
1) pre-compute gray-scale image; place it on top of the color image; animate opacity of the gray scale image from 0 to 1 to get the desired effect.
2) use pixel shader. wpf shader library might have one.