C#将图片白色背景设置为透明
摘要:
Image image = System.Drawing.Image.FromFile(@"C:\A.JPG");Bitmap pbitmap = new Bitmap(image);pbitmap.MakeTransparent(Color.White);pictureBox1.Image = pbitmap; 阅读全文
posted @ 2010-05-01 21:27 kisstome88 阅读(1901) 评论(2) 推荐(0)