Viscom Software VideoCap ActiveX Control

EffectChromaKeyShowEyeDropper Method

Description:   

Select the chroma key color, if you called this method, then click on the clip's background in the Preview area, it will copy the chroma key color.

Usage:   

VideoCap1.EffectChromaKeyShowEyeDropper

Parameter:

No Parameter

 

Return Value:

No Return value.

Example:   

The Visual Basic example 

Private Sub Capture_Click()
 VideoCap1.CaptureMode = False
 VideoCap1.CaptureAudio = True
 VideoCap1.EffectChromaKeyCapAudioDevice = False
 VideoCap1.EffectType = 5
 VideoCap1.EffectChromaKeyVideoFile = "c:\test\yourvideo.mp4"
 VideoCap1.EffectChromaKeyVideoIsBg = False
 VideoCap1.EffectChromaKeyKeepLastFrame = True
 VideoCap1.EffectChromaKeyFreezeOverlay = False
 VideoCap1.EffectChromaKeyDisplayMask = False
 VideoCap1.EffectChromaKeyOverlayX = 0
 VideoCap1.EffectChromaKeyOverlayY = 0
 VideoCap1.EffectChromaKeyOverlayScale = 50
 VideoCap1.Start
             
            ' called EffectChromaKeyShowEyeDropper method and selected the chroma key color.
 End Sub