C# Класс AForge.Imaging.Formats.ImageInfo

Information about image's frame.

This is a base class, which keeps basic information about image, like its width, height, etc. Classes, which inherit from this, may define more properties describing certain image formats.

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

Защищенные свойства (Protected)

Свойство Тип Описание
bitsPerPixel int
frameIndex int
height int
totalFrames int
width int

Private Properties

Свойство Тип Описание

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

Метод Описание
Clone ( ) : object

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

ImageInfo ( ) : System

Initializes a new instance of the ImageInfo class.

ImageInfo ( int width, int height, int bitsPerPixel, int frameIndex, int totalFrames ) : System

Initializes a new instance of the ImageInfo class.

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

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

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

ImageInfo() публичный метод

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

ImageInfo() публичный метод

Initializes a new instance of the ImageInfo class.
public ImageInfo ( int width, int height, int bitsPerPixel, int frameIndex, int totalFrames ) : System
width int Image's width.
height int Image's height.
bitsPerPixel int Number of bits per image's pixel.
frameIndex int Frame's index.
totalFrames int Total frames in the image.
Результат System

Описание свойств

bitsPerPixel защищенное свойство

Number of bits per image's pixel.
protected int bitsPerPixel
Результат int

frameIndex защищенное свойство

Frame's index.
protected int frameIndex
Результат int

height защищенное свойство

Image's height.
protected int height
Результат int

totalFrames защищенное свойство

Total frames in the image.
protected int totalFrames
Результат int

width защищенное свойство

Image's width.
protected int width
Результат int