C# 클래스 cadencii.media.AviReader

Extract bitmaps from AVI files
파일 보기 프로젝트 열기: cadencii/cadencii

Private Properties

프로퍼티 타입 설명
CopyMemory void
dispTime void

공개 메소드들

메소드 설명
Close ( ) : void

Closes all streams, files and libraries

Export ( int position ) : Bitmap
Export ( Bitmap bmp, int position ) : void
ExportBitmap ( int position, String dstFileName ) : void

Exports a frame into a bitmap file

ExportEx ( Bitmap bmp, int position ) : void
ExportToArray ( int position, byte &bitmapData, int &width, int &height, int &bit_count ) : void
Open ( string fileName ) : void

Opens an AVI file and creates a GetFrame object

비공개 메소드들

메소드 설명
CopyMemory ( IntPtr destination, IntPtr source, int length ) : void
dispTime ( string message, System.DateTime start ) : void

메소드 상세

Close() 공개 메소드

Closes all streams, files and libraries
public Close ( ) : void
리턴 void

Export() 공개 메소드

public Export ( int position ) : Bitmap
position int
리턴 System.Drawing.Bitmap

Export() 공개 메소드

public Export ( Bitmap bmp, int position ) : void
bmp System.Drawing.Bitmap
position int
리턴 void

ExportBitmap() 공개 메소드

Exports a frame into a bitmap file
public ExportBitmap ( int position, String dstFileName ) : void
position int Position of the frame
dstFileName String Name ofthe file to store the bitmap
리턴 void

ExportEx() 공개 메소드

public ExportEx ( Bitmap bmp, int position ) : void
bmp System.Drawing.Bitmap
position int
리턴 void

ExportToArray() 공개 메소드

public ExportToArray ( int position, byte &bitmapData, int &width, int &height, int &bit_count ) : void
position int
bitmapData byte
width int
height int
bit_count int
리턴 void

Open() 공개 메소드

Opens an AVI file and creates a GetFrame object
public Open ( string fileName ) : void
fileName string Name of the AVI file
리턴 void