码迷,mamicode.com
首页 > Windows程序 > 详细

C# Bitmap GetPixel 效率太低,太慢的替代方法

时间:2018-07-07 20:54:59      阅读:320      评论:0      收藏:0      [点我收藏+]

标签:window   oar   ppa   orm   ppp   bitmap   object   set   code   

新建类 

    public class DirectBitmap : IDisposable
    {
        public Bitmap Bitmap { get; private set; }
        int[] Bits = null;
        public int Height { get; private set; }
        public int Width { get; private set; }

        protected GCHandle BitsHandle { get; private set; }

        public DirectBitmap(int width, int height)
        {
            Width = width;
            Height = height;
            Bits = new int[width * height];
            BitsHandle = GCHandle.Alloc(Bits, GCHandleType.Pinned);
            Bitmap = new Bitmap(width, height, width * 4, PixelFormat.Format32bppPArgb, BitsHandle.AddrOfPinnedObject());
        }

        public void SetPixel(int x, int y, Color colour)
        {
            SetPixelRGB(x, y, colour.ToArgb());
        }

        public void SetPixelRGB(int x, int y, int colour)
        {
            Bits[x + (y * Width)] = colour;
        }

        public Color GetPixel(int x, int y)
        {
            return Color.FromArgb(GetPixelRGB(x, y));
        }

        public int GetPixelRGB(int x, int y)
        {
            return Bits[x + (y * Width)];
        }

        private bool Disposed = false;

        public void Dispose()
        {
            if (Disposed)
                return;
            Disposed = true;
            Bitmap.Dispose();
            BitsHandle.Free();
        }
    }

 

使用时:

声明DirectBitmap实例,访问DirectBitmap的Bitmap即可。 使用DirectBitmap的GetPixel方法来获取颜色 

 

            DirectBitmap image = new DirectBitmap(rc.Right - rc.Left, rc.Bottom - rc.Top);
            using (Graphics gp = Graphics.FromImage(image.Bitmap))
            {
                IntPtr dc = gp.GetHdc();
                FormHelper.PrintWindow(handle, dc, 0);
                gp.ReleaseHdc();
            }

 

C# Bitmap GetPixel 效率太低,太慢的替代方法

标签:window   oar   ppa   orm   ppp   bitmap   object   set   code   

原文地址:https://www.cnblogs.com/xyz0835/p/9277582.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!