Hi All,
The below code snippet will help you to convert an Icon to Bitmap.
public static Bitmap ConvertFromIconToBitmap(Icon ic,Size sz)
{
Bitmap bmp = new Bitmap(sz.Width, sz.Height);
using(Graphics gp = Graphics.FromImage(bmp))
{
gp.Clear(Color.Transparent);
gp.DrawIcon(ic, new Rectangle(0,0,sz.Width,sz.Height));
}
return bmp;
}