0

我正在使用钛 sdk 进行移动应用程序开发。

我只是在寻找可以阻止相机保存图像的任何方法。我不想保存图像,直到下线几步,以便所有信息都得到验证。

我的意思是,假设在通过应用程序单击图像后,如果用户选择取消按钮,则图像不应出现在图库中。

IOS和android都需要功能。

非常感谢 ...

4

1 回答 1

2

您需要将 saveToPhotoGallery 设置为 false 并在 Titanium.Media.showCamera() 的成功功能上放置您的逻辑,并在他们单击保存按钮时保存到图库

Titanium.Media.showCamera({
    success:function(event) {
        // called when media returned from the camera
        Ti.API.debug('Our type was: '+event.mediaType);
        if(event.mediaType == Ti.Media.MEDIA_TYPE_PHOTO) {
            //
            //add your logic here
            //

            //onSave
            Titanium.Media.saveToPhotoGallery(event.media);
        } else {
            alert("got the wrong type back ="+event.mediaType);
        }
    },
    cancel:function() {
        // called when user cancels taking a picture
    },
    error:function(error) {
        // called when there's an error
        var a = Titanium.UI.createAlertDialog({title:'Camera'});
        if (error.code == Titanium.Media.NO_CAMERA) {
            a.setMessage('Please run this test on device');
        } else {
            a.setMessage('Unexpected error: ' + error.code);
        }
        a.show();
    },
    saveToPhotoGallery: false,
    allowEditing: true,
    mediaTypes: [Ti.Media.MEDIA_TYPE_PHOTO]
});
于 2012-09-12T14:41:36.483 回答