Bitmap Class

A bitmap or raster image.
Hierarchy
SystemObject
  WebSupergoo.WordGlue4.RenderingBitmap

 

Namespace:  WebSupergoo.WordGlue4.Rendering
Assembly:  WordGlue4 (in WordGlue4.dll) Version: 4.1.0.0 (4.1.0.0)
Syntax
public sealed class Bitmap : IDisposable, 
        ICloneable

The Bitmap type exposes the following members.

Constructors
  Name Description
Public method Bitmap
Create a new Bitmap.
Top
Properties
  Name Description
Public property BitmapSource
Gets this bitmap as a System.Windows.Media.Imaging BitmapSource.
Public property DrawingBitmap
Gets or sets this bitmap as a System.Drawing Bitmap.
Public property Format
The pixel format for this Bitmap.
Public property Height
The height of the image in pixels.
Public property Modified
Whether the Bitmap is different from the Stream. This may happen if, for example, effects or filters are applied.
Public property Stream
The stream used as the base for the creation of this Bitmap.
Public property Uri
The URI to the resource used as the base for the creation of the Bitmap.
Public property Width
The width of the image in pixels.
Top
Methods
  Name Description
Public method Clone
Clones this bitmap
Public method Dispose
Dispooses of this bitmap.
Public methodStatic member FromStream
Initializes a new instance of the Bitmap class from a specified stream.
Public method LockBits
Locks the pixels in the bitmap and returns them as a pointer in memory. This call should be matched by a call to UnlockBits.
Public method UnlockBits
Unlocks the pixels in the bitmap.
Top
See Also