I want to remove the white background color in a bitmap
Bitmap capcha = new Bitmap("C:/image.jpg");
pictureBox1.Image = capcha;
but I want to display in my pictureBox1 just the image without white that exists in the background
I want to remove the white background color in a bitmap
Bitmap capcha = new Bitmap("C:/image.jpg");
pictureBox1.Image = capcha;
but I want to display in my pictureBox1 just the image without white that exists in the background
try to set transparency in capcha like this:
I hope it is what u need.