Method procedure VLDSImageDisplay.TVLDSImageDisplay.Start(Integer;Integer;TVLVideoFormat)

From Mitov Wiki Doc
Jump to: navigation, search

This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.

Class: TVLDSImageDisplay

Contents

Syntax

Delphi:

procedure Start( AWidth : Integer, AHeight : Integer, AVideoFormat : TVLVideoFormat );

C++ Builder:

void __fastcall Start( int AWidth, int AHeight, TVLVideoFormat AVideoFormat );

Visual C++ (MFC):

void Start( int AWidth, int AHeight, CTVLVideoFormat AVideoFormat );

Summary

Initializes display to show images of specific size.

Description

Call this method to initialize the DirectShow image display to show images of specific size.

Use this method when manually sending images to the display from inside your code by calling the DisplayBitmap or DisplayImage methods.


Delphi example:

VLDSVideoPlayer1.Start( 240, 180, vfRGB24 );

C++ Builder example:

VLDSVideoPlayer1->Start( 240, 180, vfRGB24 );

Visual C++(MFC) example:

VLDSVideoPlayer1.Start( 240, 180, vfRGB24 );

Visual C++/CLI example:

dsVideoPlayer1->Start( 240, 180, Mitov::VideoLab::VideoFormat::RGB24 );

C# Example:

dsVideoPlayer1.Start( 240, 180, Mitov.VideoLab.VideoFormat.RGB24 );

VB Example:

DSVideoPlayer1.Start( 240, 180, Mitov.VideoLab.VideoFormat.RGB24 )

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox