我在Worklight v6中构建了一个使用cordova API 2.6版
的worklight应用程序我使用了此位置提供的示例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});
即使我正在使用NATIVE_URI结果,我在OnSuccess方法中获取文件:// uri而不是内容:// 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>
答案 0 :(得分:0)
目前我不确定为什么Cordova会在设置NATIVE_URI时返回FILE_URI,但请注意鼓励使用FILE_URI:
http://docs.phonegap.com/en/2.6.0/cordova_camera_camera.md.html#camera.getPicture
注意:较新时使用相机拍摄的照片的图像质量 设备非常好,而相册中的图像则不会 即使是质量参数,也缩小到较低的质量 指定。使用Base64对这些图像进行编码会导致内存问题 在许多较新的设备上。因此,使用FILE_URI作为 强烈建议使用'Camera.destinationType'。
如果您坚持使用content://
架构,则以下内容可能有所帮助:Get content uri from file path in android