[2005] Chroma Keyer for a picturebox control?
I am trying to make a pictures blue background transparent like a Chroma Keyer
heres the test image
http://img407.imageshack.us/img407/6439/testhb1.png
I would like to make the blue part transparent ;[
i've tried
Code:
SetStyle(ControlStyles.SupportsTransparentBackColor, True)
Me.PictureBox1.BackColor = Color.Transparent
but we know it won't work anyway.
any ideas?
Re: [2005] Chroma Keyer for a picturebox control?
You can set the TransparencyKey of the form to be that color, the form will then have a transparent hole in it.
Me.TransparencyKey = Color.Blue 'or whatever the color is
Re: [2005] Chroma Keyer for a picturebox control?
okay cool thanks that worked