public interface IImageCreatorDescriptor extends IImageDescriptor
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.
Modifier and Type | Method and Description |
---|---|
boolean |
canCreate(ImageOptionsBase imageOptions)
Determines whether image creator can create a new image using the
imageOptions . |
IImageCreator |
createInstance()
Creates a new creator instance.
|
getSupportedFormat
boolean canCreate(ImageOptionsBase imageOptions)
Determines whether image creator can create a new image using the imageOptions
.
imageOptions
- The image options.true
if image creator created by this descriptor can create image data using the specified imageOptions
; otherwise, false
.IImageCreator createInstance()
Creates a new creator instance.