C# Класс ImageTools.ExtendedImage

Наследование: SimpleImage
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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

Приватные методы

Метод Описание
FindFirstSupport ( List imgCodecs, byte header ) : IImageDecoder
FindMax ( List imgCodecs ) : int
ImageInvariantMethod ( ) : void
Load ( Stream stream ) : void

Описание методов

Clone() публичный Метод

Creates a new object that is a copy of the current instance.
public Clone ( ) : ExtendedImage
Результат ExtendedImage

ExtendedImage() публичный Метод

Initializes a new instance of the ExtendedImage class.
public ExtendedImage ( ) : System
Результат System

ExtendedImage() публичный Метод

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.
Результат System

ExtendedImage() публичный Метод

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.
Результат System

Load() публичный Метод

public Load ( Stream stream, IImageDecoder decoder ) : void
stream Stream
decoder IImageDecoder
Результат void