C# Класс cadencii.media.AviReader

Extract bitmaps from AVI files
Показать файл Открыть проект

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