C# 把背景为白色的图片变成透明图片

Image Imageimage;
Imageimage = System.Drawing.Image.FromFile(@"C:\A.JPG");
Bitmap bitmap = new Bitmap(Imageimage);
bitmap.MakeTransparent(Color.White);
pictureBox1.Image = bitmap;

posted @ 2015-10-12 15:40  elautoctrl  阅读(2606)  评论(0编辑  收藏  举报