Class ImageManager
Manager for creation of image objects.
Inheritance
ImageManager
Inherited Members
Namespace: Dicom.Imaging
Assembly: cs.temp.dll.dll
Syntax
public abstract class ImageManager : IClassifiedManager
Properties
IsDefault
Gets whether or not this type is classified as a default manager.
Declaration
public abstract bool IsDefault { get; }
Property Value
Type | Description |
---|---|
Boolean |
Methods
CreateImage(Int32, Int32)
Create IImage object.
Declaration
public static IImage CreateImage(int width, int height)
Parameters
Type | Name | Description |
---|---|---|
Int32 | width | Image width. |
Int32 | height | Image height. |
Returns
Type | Description |
---|---|
IImage | IImage object. |
CreateImageImpl(Int32, Int32)
Create IImage object using the current implementation.
Declaration
protected abstract IImage CreateImageImpl(int width, int height)
Parameters
Type | Name | Description |
---|---|---|
Int32 | width | Image width. |
Int32 | height | Image height. |
Returns
Type | Description |
---|---|
IImage | IImage object using the current implementation. |
SetImplementation(ImageManager)
Set image manager implementation to use.
Declaration
public static void SetImplementation(ImageManager impl)
Parameters
Type | Name | Description |
---|---|---|
ImageManager | impl | Implementation to use. |