摘要: 1 Bitmap bmp = new Bitmap(pictureBox1.Image, pictureBox1.Image.Size); 2 BitmapData data = bmp.LockBits(new Rectangle(0, 0, bmp.Width, bmp.Height), ImageLockMode.ReadWrite, bmp.PixelFormat); 3 int length = data.Stride * data.Height; 4 IntPtr ptr = data... 阅读全文
posted @ 2013-03-25 18:51 ®Geovin Du Dream Park™ 阅读(868) 评论(0) 推荐(0) 编辑