IImageCreator

public interface IImageCreator

The image creator.

Methods

MethodDescription
create(StreamContainer streamContainer, ImageOptionsBase imageOptions, int width, int height)Creates a new image instance with imageOptions.

create(StreamContainer streamContainer, ImageOptionsBase imageOptions, int width, int height)

public abstract Image create(StreamContainer streamContainer, ImageOptionsBase imageOptions, int width, int height)

Creates a new image instance with imageOptions.

Parameters:

ParameterTypeDescription
streamContainerStreamContainerThe stream container to create image data in.
imageOptionsImageOptionsBaseThe image options.
widthintwidth of new image
heightintheight of new image

Returns: Image - A new image instance.