New to Telerik UI for WPF? Download free 30-day trial

Snapshots

The RadWebCam control allows you to snapshot the currently displayed video feed.

This can be done via the "Take snapshot" button of the control, or the TakeSnapshot method. This will fire the SnapshotTaken event where you can get the BitmapSource object with the image.

Take snapshot button

WPF RadWebCam Take Snapshot Button

Taking a snapshot in code

public MainWindow() 
{ 
    InitializeComponent();       
    this.radWebCam.SnapshotTaken += RadWebCam_SnapshotTaken; 
} 
 
public void OnTakeSnapshot() 
{ 
    this.radWebCam.TakeSnapshot(); 
} 
 
private void RadWebCam_SnapshotTaken(object sender, SnapshotTakenEventArgs e) 
{ 
    BitmapSource snapshot = e.Snapshot; 
    // here you save the source to a file, in memory, or to show it in the UI 
} 
Public Sub New() 
    InitializeComponent() 
    Me.radWebCam.SnapshotTaken += AddressOf RadWebCam_SnapshotTaken 
End Sub 
 
Public Sub OnTakeSnapshot() 
    Me.radWebCam.TakeSnapshot() 
End Sub 
 
Private Sub RadWebCam_SnapshotTaken(ByVal sender As Object, ByVal e As SnapshotTakenEventArgs) 
    Dim snapshot As BitmapSource = e.Snapshot 
    ' here you save the source to a file, in memory, or to show it in the UI 
End Sub 

To discard the snapshot preview, call the DiscardSnapshot method of RadWebCam. The method works only when a snapshot is taken and is currently being previewed.

Additionally, there is a SaveSnapshot method which fires the SnapshotTaken event. The method works only when a snapshot is taken and is currently being previewed.

Preview Snapshots

By default when you take a snapshot a preview of the image will be shown. To disable this, set the PreviewSnapshots property to False.

Disable snapshots preview in XAML

<telerik:RadWebCam PreviewSnapshots="False" /> 

Disable snapshots preview in code

this.radWebCam.PreviewSnapshots = false; 
Me.radWebCam.PreviewSnapshots = False 

You can indicate if the snapshot preview is displayed via the IsPreviewingSnapshot property of RadWebCam.

See Also

In this article