BB FlashBack SDK: FBRecorder

AddBitmapByHandle

Description

When in 'bitmap' compatibility mode, this method adds a bitmap to the movie file.
 

Syntax

[C#/C++]
public void AddBitmapByHandle (long hBitmap, long x, long y)

[VB.NET]
Public Sub AddBitmapByHandle (ByVal hBitmap As Long, ByVal x As Long, ByVal y As Long)

Parameters

hBitmap - handle of bitmap to add.

x - X position of the point in the movie at which to add the bitmap.

y - Y position of the point in the movie at which to add the bitmap.
 

Remarks

The CompatibilityMode property can set the recording mode to 'bitmap' mode. When in this mode, screen changes are not recorded. Instead, bitmaps are sent to FBRecorder via the AddBitmapByHandle and AddBitmapFromMemory methods and when the movie is played back, these bitmaps are displayed in the specified sequence, time and position.

See About Record Modes for more information on record modes, including bitmap mode.
 

See Also

FBRecorder::BitmapModeScreenWidth  FBRecorder::BitmapModeScreenHeight  FBRecorder::AddBitmapFromMemory  FBRecorder::CompatibilityMode