Windows 8ストアアプリケーションのXAMLのUI要素(aStackPanel
やaなど)にぼかし効果をどのように追加しますか?Rectangle
ここに示されているように、私はBlurEffect
WPFのようなものを考えています。どのソリューションもアニメーションに適しているか、少なくとも1秒間に複数回更新される必要があります。
Windows 8ストアアプリケーションのXAMLのUI要素(aStackPanel
やaなど)にぼかし効果をどのように追加しますか?Rectangle
ここに示されているように、私はBlurEffect
WPFのようなものを考えています。どのソリューションもアニメーションに適しているか、少なくとも1秒間に複数回更新される必要があります。
このライブラリを使用して、画像をぼかしたり書き込んだりすることができます。
おそらく次のようになります。
// Blit a bitmap using the additive blend mode at P1(10, 10)
writeableBmp.Blit(new Point(10, 10), bitmap, sourceRect, Colors.White, WriteableBitmapExtensions.BlendMode.Additive);
または、次のような独自のコードを作成する(または他の誰かが作成したコードを使用する)こともできます。
private static Bitmap Blur(Bitmap image, Rectangle rectangle, Int32 blurSize)
{
Bitmap blurred = new Bitmap(image.Width, image.Height);
// make an exact copy of the bitmap provided
using(Graphics graphics = Graphics.FromImage(blurred))
graphics.DrawImage(image, new Rectangle(0, 0, image.Width, image.Height),
new Rectangle(0, 0, image.Width, image.Height), GraphicsUnit.Pixel);
// look at every pixel in the blur rectangle
for (Int32 xx = rectangle.X; xx < rectangle.X + rectangle.Width; xx++)
{
for (Int32 yy = rectangle.Y; yy < rectangle.Y + rectangle.Height; yy++)
{
Int32 avgR = 0, avgG = 0, avgB = 0;
Int32 blurPixelCount = 0;
// average the color of the red, green and blue for each pixel in the
// blur size while making sure you don't go outside the image bounds
for (Int32 x = xx; (x < xx + blurSize && x < image.Width); x++)
{
for (Int32 y = yy; (y < yy + blurSize && y < image.Height); y++)
{
Color pixel = blurred.GetPixel(x, y);
avgR += pixel.R;
avgG += pixel.G;
avgB += pixel.B;
blurPixelCount++;
}
}
avgR = avgR / blurPixelCount;
avgG = avgG / blurPixelCount;
avgB = avgB / blurPixelCount;
// now that we know the average for the blur size, set each pixel to that color
for (Int32 x = xx; x < xx + blurSize && x < image.Width && x < rectangle.Width; x++)
for (Int32 y = yy; y < yy + blurSize && y < image.Height && y < rectangle.Height; y++)
blurred.SetPixel(x, y, Color.FromArgb(avgR, avgG, avgB));
}
}
return blurred;
}
2番目の方法の個々のピクセルを取得するには、次を参照してください。
BitmapImage iSrc
var array = new int[iSrc.PixelWidth * iSrc.PixelHeight]
var rect = new Int32Rect(0, 0, iSrc.PixelWidth, iSrc.PixelHeight)
iSrc.CopyPixels(rect, array, iSrc.PixelWidth * 4, 0)