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
파일 보기 프로젝트 열기: holisticware-admin/MonoVersal.AForgeNET 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
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