drawing alpha-blended images

  • Thread starter Thread starter David
  • Start date Start date
D

David

Hello...

i want to draw on my form PNG file with alpha-blended transparency.
so i use this code:

Graphics canvas = e.Graphics;

Image Image = Image.FromFile(@".\Dragon.png");

canvas.DrawImage(Image, 0, 0, Image.Size.Width, Image.Size.Height);



the problem is, what alpha-blending do not work, and i can't find any useful
examples...

..net 2.0, C#



thanx)
 
Back
Top