[C#]
Bitmap(int width, int height);
Bitmap(int width, int height, PixelFormat format);
Bitmap(Stream stream);
Bitmap(string filename);
Bitmap(Image image);
Bitmap(Image image, int width, int height);
Bitmap(Image image, Size size);
Bitmap(Size size);
[Visual Basic]
Sub New(width As Integer, height As Integer)
Sub New(width As Integer, height As Integer, format As PixelFormat)
Sub New(stream As Stream)
Sub New(filename As String)
Sub New(image As Image)
Sub New(image As Image, width As Integer, height As Integer)
Sub New(image As Image, size As Size)
Sub New(size As Size)
|