gre
This commit is contained in:
parent
9d351bb809
commit
9dcb7f65d0
5 changed files with 35 additions and 19 deletions
|
|
@ -1,19 +1,5 @@
|
|||
// Ionic Starter App
|
||||
|
||||
function takePicture()
|
||||
{
|
||||
console.log("PSOO");
|
||||
navigator.camera.getPicture(function(imageURI) {
|
||||
|
||||
// imageURI is the URL of the image that we can use for
|
||||
// an <img> element or backgroundImage.
|
||||
|
||||
}, function(err) {
|
||||
|
||||
// Ruh-roh, something bad happened
|
||||
|
||||
}, cameraOptions);
|
||||
}
|
||||
angular.module('underscore', [])
|
||||
.factory('_', function() {
|
||||
return window._; // assumes underscore has already been loaded on the page
|
||||
|
|
|
|||
|
|
@ -14,6 +14,26 @@ angular.module('your_app_name.controllers', [])
|
|||
$scope.user.telephone="3477608470";
|
||||
$scope.user.picture="img/laura.jpg";
|
||||
$scope.user.score="15463";
|
||||
$scope.takePicture = function(){
|
||||
var cameraOptions = {
|
||||
quality: 50,
|
||||
destinationType: Camera.DestinationType.DATA_URL
|
||||
};
|
||||
var success = function(data){
|
||||
$scope.$apply(function () {
|
||||
/*
|
||||
remember to set the image ng-src in $apply,
|
||||
i tried to set it from outside and it doesn't work.
|
||||
*/
|
||||
$scope.cameraPic = "data:image/jpeg;base64," + data;
|
||||
});
|
||||
};
|
||||
var failure = function(message){
|
||||
alert('Failed because: ' + message);
|
||||
};
|
||||
//call the cordova camera plugin to open the device's camera
|
||||
navigator.camera.getPicture( success , failure , cameraOptions );
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
|
@ -544,7 +564,6 @@ angular.module('your_app_name.controllers', [])
|
|||
{
|
||||
case "addticketwithphoto":
|
||||
{
|
||||
takePicture();
|
||||
break;
|
||||
}
|
||||
case "booking":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue