C# Class ImageTools.ExtendedImage

Inheritance: SimpleImage
Afficher le fichier Open project: prepare/HTML-Renderer Class Usage Examples

Méthodes publiques

Méthode 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

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

Method Details

Clone() public méthode

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

ExtendedImage() public méthode

Initializes a new instance of the ExtendedImage class.
public ExtendedImage ( ) : System
Résultat System

ExtendedImage() public méthode

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.
Résultat System

ExtendedImage() public méthode

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.
Résultat System

Load() public méthode

public Load ( Stream stream, IImageDecoder decoder ) : void
stream Stream
decoder IImageDecoder
Résultat void