1. 首页
  2. 数据库
  3. 其它
  4. C# Bitmap 复制的小例子

C# Bitmap 复制的小例子

上传者: 2020-12-31 16:54:48上传 PDF文件 30.29KB 热度 13次
代码如下:public Bitmap CopyBitmap(Bitmap source){ int depth = Bitmap.GetPixelFormatSize(source.PixelFormat); if (depth != 8 && depth != 24 && depth != 32) { return null; } Bitmap destination = new Bitmap(source.Width, source.Height, source.PixelFormat); BitmapData source_bitm
用户评论