Class WindowsImage
IImage implementation of a Universal Windows Platform 
Inherited Members
Namespace: Dicom.Imaging
Assembly: cs.temp.dll.dll
Syntax
public sealed class WindowsImage : ImageBase<WriteableBitmap>, IImage, IDisposable
  Constructors
WindowsImage(Int32, Int32)
Initializes an instance of the WindowsImage object.
Declaration
public WindowsImage(int width, int height)
  Parameters
| Type | Name | Description | 
|---|---|---|
| Int32 | width | Image width.  | 
      
| Int32 | height | Image height.  | 
      
Methods
Clone()
Creates a deep copy of the image.
Declaration
public override IImage Clone()
  Returns
| Type | Description | 
|---|---|
| IImage | Deep copy of this image.  | 
      
Overrides
Dicom.Imaging.ImageBase<WriteableBitmap>.Clone()
  
  
  
  DrawGraphics(IEnumerable<IGraphic>)
Draw graphics onto existing image.
Declaration
public override void DrawGraphics(IEnumerable<IGraphic> graphics)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IEnumerable<IGraphic> | graphics | Graphics to draw.  | 
      
Overrides
Dicom.Imaging.ImageBase<WriteableBitmap>.DrawGraphics(System.Collections.Generic.IEnumerable<Dicom.Imaging.Render.IGraphic>)
  
  
  
  Render(Int32, Boolean, Boolean, Int32)
Renders the image given the specified parameters.
Declaration
public override void Render(int components, bool flipX, bool flipY, int rotation)
  Parameters
| Type | Name | Description | 
|---|---|---|
| Int32 | components | Number of components.  | 
      
| Boolean | flipX | Flip image in X direction?  | 
      
| Boolean | flipY | Flip image in Y direction?  | 
      
| Int32 | rotation | Image rotation.  | 
      
Overrides
Dicom.Imaging.ImageBase<WriteableBitmap>.Render(System.Int32, System.Boolean, System.Boolean, System.Int32)