예제 #1
0
        public static PixelColor[,] GetPixels(this BitmapSource source)
        {
            if (source.Format != PixelFormats.Bgra32)
                source = new FormatConvertedBitmap(source, PixelFormats.Bgra32, null, 0);

            int width = source.PixelWidth;
            int height = source.PixelHeight;
            PixelColor[,] result = new PixelColor[width,height];

            // ReSharper disable RedundantNameQualifier
            // qualifier is NOT redudant, in fact if you don't have it we crash.
            PixelRetrievalExtensions.CopyPixels(source,result, width * 4, 0);
            // ReSharper restore RedundantNameQualifier
            return result;
        }
예제 #2
0
 public static void CopyPixels(this BitmapSource source, PixelColor[,] pixels, int stride, int offset)
 {
     var height = source.PixelHeight;
     var width = source.PixelWidth;
     var pixelBytes = new byte[height * width * 4];
     source.CopyPixels(pixelBytes, stride, 0);
     int y0 = offset / width;
     int x0 = offset - width * y0;
     for (int y = 0; y < height; y++)
         for (int x = 0; x < width; x++)
             pixels[x + x0, y + y0] = new PixelColor
             {
                 Blue = pixelBytes[(y * width + x) * 4 + 0],
                 Green = pixelBytes[(y * width + x) * 4 + 1],
                 Red = pixelBytes[(y * width + x) * 4 + 2],
                 Alpha = pixelBytes[(y * width + x) * 4 + 3],
             };
 }