Image Imageimage;
Imageimage = System.Drawing.Image.FromFile(@"C:\A.JPG");
Bitmap bitmap = new Bitmap(Imageimage);
bitmap.MakeTransparent(Color.White);
pictureBox1.Image = bitmap;
时间: 2025-01-07 00:18:35