void MakeBackgroundAlphaZero(Bitmap img)
{
Color pixel = img.GetPixel(0, img.Height - 1);
img.MakeTransparent();
Color color = Color.FromArgb(0, pixel);
img.SetPixel(0, img.Height - 1, color);
}