Gets or sets a reference to the media target stream.
public virtual Stream TargetStream {get; set;} Public Overridable Property TargetStream As Stream A System.IO.Stream object for the target stream.
The value of the TargetType property needs to be set to TargetObjectType.Stream for this method.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public CaptureCtrlForm _form = new CaptureCtrlForm();public CaptureCtrl _capturectrl = null;public bool _result = false;public void TargetStreamExample(){// reference the capture control_capturectrl = _form.CaptureCtrl;// output filestring outFile = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_TargetStreamExample.avi");try{_capturectrl.VideoDevices["USB"].Selected = true;_capturectrl.TargetType = TargetObjectType.Stream;}catch (Exception){_result = false;}// we'll loop on the state and pump messages for this example.// but you should not need to if running from a Windows Forms application.while (_capturectrl.State == CaptureState.Running)Application.DoEvents();}// This method will get the data of the target stream for the captureprivate void GetTargetData(){Stream ts = _capturectrl.TargetStream;if (ts != null){byte[] buffer = new byte[ts.Length + 1];int read = ts.Read(buffer, 0, (int)ts.Length);}}public void TargetStream_Helper(object sender, EventArgs e){// set result_result = true;}static class LEAD_VARS{public const string MediaDir = @"C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 19\Media";}
Imports LeadtoolsImports Leadtools.MultimediaImports LeadtoolsMultimediaExamples.FixturesPublic _form As CaptureCtrlForm = New CaptureCtrlForm()Public _capturectrl As CaptureCtrl = NothingPublic _result As Boolean = FalsePublic Sub TargetStreamExample()' reference the capture control_capturectrl = _form.CaptureCtrl' output fileDim outFile As String = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_TargetStreamExample.avi")Try_capturectrl.VideoDevices("USB").Selected = True_capturectrl.TargetType = TargetObjectType.StreamCatch e1 As Exception_result = FalseEnd Try' we'll loop on the state and pump messages for this example.' but you should not need to if running from a Windows Forms application.Do While _capturectrl.State = CaptureState.RunningApplication.DoEvents()LoopEnd Sub' This method will get the data of the target stream for the capturePrivate Sub GetTargetData()Dim ts As Stream = _capturectrl.TargetStreamIf Not ts Is Nothing ThenDim buffer As Byte() = New Byte(CInt(ts.Length)) {}Dim read As Integer = ts.Read(buffer, 0, CInt(ts.Length))End IfEnd SubPublic Sub TargetStream_Helper(ByVal sender As Object, ByVal e As EventArgs)' set result_result = TrueEnd SubPublic NotInheritable Class LEAD_VARSPublic Const MediaDir As String = "C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 19\Media"End Class
|
Products |
Support |
Feedback: TargetStream Property (CaptureCtrl) - Leadtools.Multimedia |
Introduction |
Help Version 19.0.2017.6.16
|

Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.