User-1372641848 posted
System.Drawing.Image is an abstract base class that provides functionality for the System.Drawing.Bitmap, Most of the properties and method of Bitmap object are inherited from Image you might be able
to perform same things to Image.
for example for Drawing text on Image
Graphics g = Graphics.FromImage(yourImageObj);
g.DrawString("test", new Font("Verdana", 2.00), Brushes.Black, new Point(10, 10)) ;
Or If you need your own copy of image out of original then.
Bitmap myCopyofImage = new Bitmap(yourImageObj);