Actually I have a problem, there's parts of the image that are transparent, rather than sections of the image. Like as an example I might have a blue ball, and the background for the blue ball image is transparent, but the blue ball is also semi-transparent so that when I place it in a web browser you can see behind the blue ball. This is unfortionetly the part that is not being transferred over is the partial transparency.
Main Topics
Browse All Topics





by: non_zeroPosted on 2009-10-28 at 08:26:05ID: 25684302
tr this
Dim myBitmap As New Bitmap("Grapes.gif")
' Draw myBitmap to the screen.
e.Graphics.DrawImage(myBit
myBitmap.Height)
' Make the default transparent color transparent for myBitmap.
myBitmap.MakeTransparent()
' Draw the transparent bitmap to the screen.
e.Graphics.DrawImage(myBit
myBitmap.Height)