Click or drag to resize

IMcImageAddFrameFromMemory Method

Add a single frame created by the Capture Module to an image.

Namespace:  MediaCy.IQL.Engine
Assembly:  MediaCy.IQL.Engine (in MediaCy.IQL.Engine.dll) Version: 10.0.6912.0
Syntax
VB
Sub AddFrameFromMemory ( 
	Start As Integer,
	pImageMemory As IntPtr
)

Parameters

Start
Type: SystemInt32
The 0-based frame index indicating where to insert. Also, the frame index of the new frame once the insertion is completed. Use McLastFrame to add the frame after the last frame (append)
pImageMemory
Type: SystemIntPtr
IN_PROCESS pointer to the image frame buffer.
Remarks
All frames, including the new ones added via this function have the same size and type The base image must be created by the McImages.AddFromMemory method.
Note Note
An OnPropertyChanged(ID_IMcImage_FrameCount) event is fired, as is an OnFrameAdded event.
See Also