Interface IImageCreatorDescriptor
The image creator descriptor specifying the creator properties. The creator descriptor is used to overcome the necessity to contain each image creator instance in memory and multithreading issues.
public interface IImageCreatorDescriptor : IImageDescriptor
- Inherited Members
Methods
CanCreate(ImageOptionsBase)
Determines whether image creator can create a new image using the imageOptions
.
bool CanCreate(ImageOptionsBase imageOptions)
Parameters
imageOptions
ImageOptionsBaseThe image options.
Returns
- bool
True
if image creator created by this descriptor can create image data using the specifiedimageOptions
; otherwise,false
.
CreateInstance()
Creates a new creator instance.
IImageCreator CreateInstance()
Returns
- IImageCreator
A new creator instance.