标签:
Image Imageimage;
Imageimage = System.Drawing.Image.FromFile(@"C:\A.JPG");
Bitmap bitmap = new Bitmap(Imageimage);
bitmap.MakeTransparent(Color.White);
pictureBox1.Image = bitmap;
标签:
原文地址:http://www.cnblogs.com/elautoctrl/p/4871858.html