C# Class ImageTools.ExtendedImage

Inheritance: SimpleImage
Show file Open project: prepare/HTML-Renderer Class Usage Examples

Public Methods

Method Description
Clone ( ) : ExtendedImage

Creates a new object that is a copy of the current instance.

ExtendedImage ( ) : System

Initializes a new instance of the ExtendedImage class.

ExtendedImage ( ExtendedImage other ) : System

Initializes a new instance of the ExtendedImage class by making a copy from another image.

ExtendedImage ( int width, int height ) : System

Initializes a new instance of the ExtendedImage class with the height and the width of the image.

Load ( Stream stream, IImageDecoder decoder ) : void

Private Methods

Method Description
FindFirstSupport ( List imgCodecs, byte header ) : IImageDecoder
FindMax ( List imgCodecs ) : int
ImageInvariantMethod ( ) : void
Load ( Stream stream ) : void

Method Details

Clone() public method

Creates a new object that is a copy of the current instance.
public Clone ( ) : ExtendedImage
return ExtendedImage

ExtendedImage() public method

Initializes a new instance of the ExtendedImage class.
public ExtendedImage ( ) : System
return System

ExtendedImage() public method

Initializes a new instance of the ExtendedImage class by making a copy from another image.
is null /// (Nothing in Visual Basic).
public ExtendedImage ( ExtendedImage other ) : System
other ExtendedImage The other image, where the clone should be made from.
return System

ExtendedImage() public method

Initializes a new instance of the ExtendedImage class with the height and the width of the image.
public ExtendedImage ( int width, int height ) : System
width int The width of the image in pixels.
height int The height of the image in pixels.
return System

Load() public method

public Load ( Stream stream, IImageDecoder decoder ) : void
stream Stream
decoder IImageDecoder
return void