Interface IImageCreatorDescriptor
Interface IImageCreatorDescriptor
Namespace: Aspose.Imaging
Assembly: Aspose.Imaging.dll (25.2.0)
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
Implements
Methods
CanCreate(ImageOptionsBase)
Determines whether image creator can create a new image using the imageOptions
.
bool CanCreate(ImageOptionsBase imageOptions)
Parameters
imageOptions
ImageOptionsBase
The image options.
Returns
True
if image creator created by this descriptor can create image data using the specified imageOptions
; otherwise, false
.
CreateInstance()
Creates a new creator instance.
IImageCreator CreateInstance()
Returns
A new creator instance.