ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / Video functions
  • Use conditions
  • Special cases
  • Required permissions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Displays in a Camera field the camera preview stream currently being transmitted by a web camera or by the mobile device camera.
AndroidiPhone/iPad
Warning
Starting with version 27, this function is deprecated for Android and iOS applications. This function is kept only for Camera controls created with earlier versions and with the "Version-26-compatible mode" option enabled ("General" tab of the control description window).
Example
// Affiche la séquence vidéo actuellement retransmise dans le champ "CAM_Caméra"
ResFilm = CAM_Caméra.Affiche()
IF ResFilm = True THEN
	// Affiche un libellé
	CAM_Caméra.Libellé = "En ce moment dans la cuisine"
ELSE
	Error(ErrorInfo())
END
Syntax
<Result> = <Camera control>.Display()
<Result>: Boolean
  • True if the video captured is displayed in the Camera control,
  • False if an error occurs. To get more details on the error, use ErrorInfo.
<Camera control>: Control name
Name of the Camera control to be used.
Remarks

Use conditions

  • Windows To use this function, a "camera" must be connected to the current computer.
  • Android This function requires a device equipped with a camera. It can also be used in the Android emulator.
  • iPhone/iPadMac Catalyst This function requires a device equipped with a camera.

Special cases

  • At runtime, the video captured by the camera is automatically shown as soon as the window containing the Camera control is opened. In this case, the call to <Camera>.Display is not required.
  • To stop recording the video, use <Camera>.Stop.
Android

Required permissions

This function changes the permissions required by the application.
Permission required: CAMERA.
This permission allows the applications to access the camera.
Component: wd300obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/30/2024

Send a report | Local help