mi prendo una foto (o selezionando dalla libreria) utilizzando PhoneGap API utilizzando il seguente drictive:Carica il contenuto di immagini dalla fotocamera a un file
MyApp.directive('Camera', function() {
return {
restrict: 'A',
require: 'ngModel',
link: function(scope, elm, attrs, ctrl) {
elm.bind('click', function() {
navigator.camera.getPicture(function (imageURI)
{
scope.$apply(function() {
ctrl.$setViewValue(imageURI);
});
}, function (err) {
ctrl.$setValidity('error', false);
},
//Options => http://docs.phonegap.com/en/2.6.0/cordova_camera_camera.md.html#Camera
{ quality: 50,
destinationType:Camera.DestinationType.FILE_URI
})
});
}
};
});
Il che mi restituiscono un URI che assomiglia, utilizzando emulatore ondulazione su Chrome, che non vedo incollare questo URI.
blob:http%3A//localhost%3A8080/8e18de30-d049-4ce2-ae88-8500b444581e
Il mio problema sta caricando questo URI
$scope.updateUserProfile = function (user) {
var myPicfile = $http.get(user.myPicture);
dataService.uploadPicture . . . some code to update the picture to Parse
}
* Nota: I cannot use phonegap filetransfer together with parse.com :
Quando faccio che ottengo:
sto facendo la mia richiesta come :
uploadPicture: function uploadPicture (utente, callback) { var serverUrl = 'https://api.parse.com/1/files/' + user.Nick;
$http({
method: 'POST',
url: serverUrl,
data: user.myPicture,
headers: {'X-Parse-Application-Id': PARSE_APP_ID,
'X-Parse-REST-API-Key': PARSE_REST_API_KEY,
'Content-Type': 'text/plain'
}
})
Qualche idea su come ottenere il contenuto dell'immagine in un file che allora posso tranquillamente caricare Parse.com?
Grazie!
Scegli questa [Memorizzazione Captured Photo su SD Card] (http://stackoverflow.com/questions/14928202/save-image-in-local-storage-phonegap/16648829#16648829) –