[]
Represents the gid bitmap.
public sealed class Bitmap : GdiObject, IDisposable, ICloneable
| Name | Description |
|---|---|
| Bitmap(Graphics, int, int) | Intializes a new instance of the Bitmap class with the specified Graphics object and size. |
| Bitmap(Bitmap) | Initializes a new instance of the Bitmap class. |
| Bitmap(Bitmap, Color) | Initializes a new instance of the Bitmap class. |
| Bitmap(int, int) | Initializes a new instance of the Bitmap class with the specified size. |
| Bitmap(int, int, BitsPerPixel) | Intializes a new instance of the Bitmap class with the specified size color format (color planes and bits-per-pixel). |
| Bitmap(int, int, int, BitsPerPixel, byte[]) | Intializes a new instance of the Bitmap class with the specified size color format (color planes and bits-per-pixel). |
| Name | Description |
|---|---|
| BitsPerPixel | Gets the bits-per-pixel of the bitmap. |
| Height | Gets the height of this Bitmap object. |
| Planes | Gets the planes of the Bitmap. The value is always 1. |
| Size | Gets the width and height of this Bitmap object. |
| Width | Gets the width of this Bitmap object. |
| Name | Description |
|---|---|
| Clone() | Creates an exact copy of this Bitmap object. |
| GetData() | Gets the data of the bitmap. |
| ToGdiplusBitmap(Bitmap) | Creates a GDI+ Bitmap from a handle to a GDI bitmap. |