C# Class 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.

Inheritance: ICloneable
Datei anzeigen Open project: holisticware-admin/MonoVersal.AForgeNET Class Usage Examples

Protected Properties

Property Type Description
bitsPerPixel int
frameIndex int
height int
totalFrames int
width int

Private Properties

Property Type Description

Public Methods

Method Description
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.

Method Details

Clone() public method

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

ImageInfo() public method

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

ImageInfo() public method

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.
return System

Property Details

bitsPerPixel protected_oe property

Number of bits per image's pixel.
protected int bitsPerPixel
return int

frameIndex protected_oe property

Frame's index.
protected int frameIndex
return int

height protected_oe property

Image's height.
protected int height
return int

totalFrames protected_oe property

Total frames in the image.
protected int totalFrames
return int

width protected_oe property

Image's width.
protected int width
return int