|
|
|
|
|
- Photos saved
- Backup directories
- Required permissions
PhotoRunApp (Function) In french: PhotoLanceAppli Starts the native camera application of the device in order to take a photo. sPhoto is string = PhotoRunApp()
IF sPhoto <> "" THEN
Info("Photo sauvegardée dans le fichier : " + sPhoto)
END
PhotoRunApp(CB_PhotoLanceAppli)
INTERNAL PROCEDURE CB_PhotoLanceAppli(sChemin is string)
IF sChemin ~= "" THEN
Error(ErrorInfo())
RETURN
END
Info("La photo a été enregistrée ici : " + sChemin)
END
Syntax
Starting the native camera application (locking call) Hide the details
<Result> = PhotoRunApp()
<Result>: Character string - Full path of the file where the photo was saved,
- Empty string ("") if an error occurred. To get more details on the error, use ErrorInfo.
Starting the native camera application (non-locking call) Hide the details
<Result> = PhotoRunApp([<WLanguage procedure>])
<Result>: Character string - Full path of the file where the photo was saved,
- Empty string ("") if an error occurred. To get more details on the error, use ErrorInfo.
<WLanguage procedure>: Procedure name Name of the WLanguage procedure ("callback") called when the photo is saved. This procedure has the following format:
PROCEDURE <Procedure name> (<Path>) where <Path> corresponds to the backup path of the image. Remarks Photos saved The photo settings (format, resolution, size) are the ones defined in the native camera application. Business / UI classification: UI Code Component: wd300android.aar
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|