image from bitmap code example
Example 1: c# convert bitmap to image
Bitmap inherits from System.Drawing.Image
Example 2: c# bitmap to Image
var codeBitmap = new Bitmap(your_info);
Image image = (Image)codeBitmap;
Bitmap inherits from System.Drawing.Image
var codeBitmap = new Bitmap(your_info);
Image image = (Image)codeBitmap;