System.Drawing.Bitmap.Bitmap C# (CSharp) Method

Bitmap() public method

Initializes a new instance of the System.Drawing.Bitmap class from the specified existing image..
public Bitmap ( Image image ) : AppKit
image Image Image.
return AppKit
        public Bitmap(Image image)
            : this(image, image.Width, image.Height)
        {
        }

Same methods

Bitmap::Bitmap ( Image original, Size newSize ) : AppKit
Bitmap::Bitmap ( Image original, int width, int height ) : AppKit
Bitmap::Bitmap ( Stream stream, bool useIcm ) : AppKit
Bitmap::Bitmap ( int width, int height ) : AppKit
Bitmap::Bitmap ( int width, int height, PixelFormat format ) : AppKit
Bitmap::Bitmap ( string filename ) : AppKit