Transparent Bitmaps

vidiware

Active member
Joined
Dec 3, 2002
Messages
39
Is there a way to use masks in VB.NET??
I have a picture that needs the color white to be transparent.
Can you help me? (Gifs are not an option)
 
Once you have your bitmap object, you can turn a colour in to a transparent section by calling the MakeTransparent method:

Code:
b.MakeTransparent(Color.White)
 
Back
Top