|
|
|
|
|
- Photos and videos saved
- Backup directories
CameraRunApp (Function) In french: CaméraLanceAppli Starts the device's native camera application to record a video or to take a photo. Remarks:  Note: Syntax 2 using a non-blocking call is recommended, especially from iOS 8 onwards. - In a WINDEV application, CameraCapture can be used to record a video or to take a photo with the camera of the device.
- This function is equivalent to VideoStartApp.
sPhoto is string
sPhoto = CameraRunApp(viPictureCapture)
IF sPhoto <> "" THEN
Info("Photo sauvegardée dans le fichier " + sPhoto)
END
nTypeEnregistrement is int
IF Dialog("Souhaitez-vous enregistrer une image ou une vidéo ?", ["Une image", ...
"Une vidéo"], 1, 2, dlgIconQuestion) = 1 THEN
nTypeEnregistrement = viPictureCapture
ELSE
nTypeEnregistrement = viVideoCapture
END
CameraRunApp(nTypeEnregistrement, CaméraLanceAppli_Callback)
INTERNAL PROCEDURE CaméraLanceAppli_Callback(sChemin is string)
IF sChemin ~= "" THEN
Error(ErrorInfo())
RETURN
END
Info("Le fichier a été enregistré ici : " + sChemin)
END
Syntax
Starting the native camera application (locking call) Hide the details
<Result> = CameraRunApp([<Type of capture>])
<Result>: Character string - Full path of file where the photo or the video was saved,
- Empty string ("") if an error occurred. To get more details on the error, use ErrorInfo.
<Type of capture>: Optional integer constant Type of capture: | | viPictureCapture | Record a photo. | viVideoCapture (Default value) | Camera preview stream snip. |
Starting the native camera application (non-locking call) Hide the details
<Result> = CameraRunApp([<Type of capture> [, <WLanguage procedure>]])
<Result>: Boolean - True if the photo or video was saved.
- False otherwise. To get more details on the error, use ErrorInfo.
<Type of capture>: Optional integer constant Type of capture: | | viPictureCapture | Record a photo. | viVideoCapture (Default value) | Camera preview stream snip. |
<WLanguage procedure>: Procedure name Name of the WLanguage procedure ("callback") called when the photo or video is recorded. For more details on this procedure, see Parameters of the procedure used by CameraRunApp. Remarks Photos and videos saved The photo and video settings (format, resolution, size) are the ones defined in the native camera application. To display the photo in an Image control, open the Image control description, go to the "Details" tab and check "Orientate according to the image's Exif data". Business / UI classification: UI Code Component: wd300android.aar
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|