我有建立它使用科爾多瓦API版本2.6錯誤結果科爾多瓦照相機API
我曾經在這個位置提供http://docs.phonegap.com/en/2.6.0/cordova_camera_camera.md.html#Camera
navigator.camera.getPicture(OnSuccess,OnFail, {quality:50,destinationType:Camera.DestinationType.NATIVE_URI,sourceType:Camera.PictureSourceType.CAMERA,saveToPhotoAlbum:true});
即使當樣品中工作燈V6一個工作燈應用的takePicture回調方法我正在使用NATIVE_URI結果我得到的OnSuccess方法是file:// uri而不是content:// uri,如文檔中所寫。
Camera.DestinationType = {
DATA_URL : 0, // Return image as base64 encoded string
FILE_URI : 1, // Return image file URI
NATIVE_URI : 2 // Return image native URI (eg. assets-library:// on iOS or content:// on Android)
};
我已經在menifest xml文件中添加了所有必需的權限。
<uses-permission android:name="android.permission.CAMERA"/>
<uses-feature android:name="android.hardware.camera"/>
看到完整的代碼在這裏:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>testProject</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0">
<link rel="shortcut icon" href="images/favicon.png">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="stylesheet" href="css/testProject.css">
<script>window.$ = window.jQuery = WLJQ;</script>
<script type="text/javascript" charset="utf-8">
var pictureSource; // picture source
var destinationType; // sets the format of returned value
// Wait for Cordova to connect with the device
//
document.addEventListener("deviceready",onDeviceReady,false);
// Cordova is ready to be used!
//
function onDeviceReady() {
pictureSource=navigator.camera.PictureSourceType;
destinationType=navigator.camera.DestinationType;
}
// Called when a photo is successfully retrieved
//
function onPhotoURISuccess(imageURI) {
// Uncomment to view the image file URI
alert(imageURI);
// Get image handle
//
var largeImage = document.getElementById('largeImage');
// Unhide image elements
//
largeImage.style.display = 'block';
// Show the captured photo
// The inline CSS rules are used to resize the image
//
largeImage.src = imageURI;
}
// A button will call this function
//
function getPhoto(source) {
// Retrieve image file location from specified source
navigator.camera.getPicture(onPhotoURISuccess, onFail, { quality: 50,
destinationType: destinationType.FILE_URI,
sourceType: source,saveToPhotoAlbum:true });
}
function getPhoto2(source) {
// Retrieve image file location from specified source
navigator.camera.getPicture(onPhotoURISuccess, onFail, { quality: 50,
destinationType: destinationType.NATIVE_URI,
sourceType: source,saveToPhotoAlbum:true });
}
// Called if something bad happens.
//
function onFail(message) {
alert('Failed because: ' + message);
}
</script>
</head>
<body id="content" style="display: none;">
<button onclick="getPhoto(pictureSource.CAMERA);">Camera</button><br>
<button onclick="getPhoto2(pictureSource.CAMERA);">From Photo Album</button><br>
<img style="display:none;width:60px;height:60px;" id="smallImage" src="" />
<img style="display:none;" id="largeImage" src="" />
<!--application UI goes here-->
testProject
<script src="js/initOptions.js"></script>
<script src="js/testProject.js"></script>
<script src="js/messages.js"></script>
</body>
</html>
這將看到你所寫的完整的JavaScript會更有趣。 –
@IdanAdar請參閱問題詳情中的完整代碼。 –