これは私に結果を与えていません。コードの何が問題になっていますか? ところで、以下のコードは画像をぼかします。
var ImgFile = await Windows.Storage.StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///Assets/search.png"));
var wb = new WriteableBitmap(1, 1);
using (var strm = await ImgFile.OpenReadAsync())
{
wb.SetSource(strm);
}
var wb2 = new WriteableBitmap(wb.PixelWidth,wb.PixelHeight);
var wb3 = WriteableBitmapExtensions.Convolute(wb2, WriteableBitmapExtensions.KernelGaussianBlur5x5);
PageBackground.Source = wb3;