添加相机功能到应用程序,使用该应用程序的用户可以使用相机功能使用Smartface将图像上传到应用程序?

时间:2016-04-29 16:14:46

标签: smartface.io

为应用添加相机功能,使用该应用的用户可以使用相机功能使用Smartface将图像上传到应用中吗?

我尝试过实施相机功能,但效果并不理想。

三江源

1 个答案:

答案 0 :(得分:0)

您可以使用以下代码为相应功能添加相机功能:

var btn = new SMF.UI.TextButton({
     top : "70%",
     text : "Camera",
     onPressed : Page1_TextButton1_OnPressed
});
Pages.Page1.add(btn);
         function Page1_TextButton1_OnPressed(e) {
            SMF.Multimedia.startCamera({
                cameraType : 1, //rear camera
                resolution : 2, //large resolution
                autoFocus : true,
                onStart : function () {}, //do nothing
                onCapture : function (e) {
                    alert("path=" + e.photoUri);
                },
                onCancel : function () {}, //do nothing
                onFailure : function () {}
                //do nothing
            });
        }