EFileTahi-A
Well-known member
I can crop them easly but the minute I draw it back it becomes opaque
I really dont know how to make it working, I think when I load the image to the Bitmap object it simply looses its tranparency alpha channel, no?
Code:
Bitmap bitSize = new Bitmap(32, 32);
Image pic = Bitmap.FromFile(sCurrentFile,true);
Graphics g = Graphics.FromImage(bitSize);
g.DrawImage(pic, dstRectangle, srcRectangle, GraphicsUnit.Pixel) ;
I really dont know how to make it working, I think when I load the image to the Bitmap object it simply looses its tranparency alpha channel, no?