2013年10月17日
摘要: 以后再详述,先上代码。 1 public bool CopyBitmap(Bitmap source, Bitmap destination) 2 { 3 if ((source.Width != destination.Width) || (source.Height != destination.Height) || (source.PixelFormat != destination.PixelFormat)) 4 { 5 return false; 6 } 7 8 int bitdepth_per_pixel = Bitmap.GetP... 阅读全文
posted @ 2013-10-17 13:26 盗艹人 阅读(3585) 评论(0) 推荐(0) 编辑