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
Afficher le fichier Open project: holisticware-admin/MonoVersal.AForgeNET Class Usage Examples

Protected Properties

Свойство Type Description
bitsPerPixel int
frameIndex int
height int
totalFrames int
width int

Private Properties

Свойство Type Description

Méthodes publiques

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

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

ImageInfo() public méthode

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

ImageInfo() public méthode

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

Property Details

bitsPerPixel protected_oe property

Number of bits per image's pixel.
protected int bitsPerPixel
Résultat int

frameIndex protected_oe property

Frame's index.
protected int frameIndex
Résultat int

height protected_oe property

Image's height.
protected int height
Résultat int

totalFrames protected_oe property

Total frames in the image.
protected int totalFrames
Résultat int

width protected_oe property

Image's width.
protected int width
Résultat int