IImageCreator
public interface IImageCreator
The image creator.
Methods
Method | Description |
---|---|
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:
Parameter | Type | Description |
---|---|---|
streamContainer | StreamContainer | The stream container to create image data in. |
imageOptions | ImageOptionsBase | The image options. |
width | int | width of new image |
height | int | height of new image |
Returns: Image - A new image instance.