angularjs - Camera plugin + cordova social sharing -
i'm using camera plugin take photo, , want share photo cordova social sharing plugin, don't know how... the camera works fine, , shows me photo i'd taken ionicapp.controller("functions", function($scope, $rootscope, $cordovacamera) { $rootscope.takepicture = function() { var options = { quality : 75, destinationtype : camera.destinationtype.data_url, sourcetype : camera.picturesourcetype.camera, allowedit : true, encodingtype: camera.encodingtype.jpeg, targetwidth: 300, targetheight: 300, popoveroptions: camerapopoveroptions, savetophotoalbum: false }; $cordovacamera.getpicture(options).then(function(imagedata) { var image = document.getelementbyid('myimage'); $rootscope.imguri = "data:image/jpeg;base64," + imagedata; }, function(err) { // error occured. show message user }); } }); ionicapp.controller("share...