mercredi 15 juillet 2015

How to take picture using cordova camera and save into sqlite

I need to take a photo and save into SQLite DB Not into Gallery. I got camera and captured an image but i need to save it to my SQLite. please help me to insert it into SQLite.

$scope.takePicture = function() {  var options = {  quality : 75,  destinationType : Camera.DestinationType.DATA_URL,  sourceType : Camera.PictureSourceType.CAMERA,  allowEdit : false, encodingType: Camera.EncodingType.JPEG, targetWidth: 300, targetHeight: 300, popoverOptions: CameraPopoverOptions, saveToPhotoAlbum: false };

    $cordovaCamera.getPicture(options).then(function(imageData) {
        $scope.imgURI = "data:image/jpeg;base64," + imageData;
    }, function(err) {
        // An error occured. Show a message to the user

    }); }

Aucun commentaire:

Enregistrer un commentaire