Phonegap的相机插件允许每次调用只拍摄一张图片。
http://docs.phonegap.com/en/2.2.0/cordova_media_capture_capture.md.html#Capture在iOS中说 不支持limit参数。每张照片一张 调用
如何使以下成为可能。
github中是否有可用的代码示例?
答案 0 :(得分:1)
在某些网站上,它说这个限制功能不适用于ios所以任何其他替代方案都可以实现一个不会被解雇的相机,直到我们按下后退按钮这样我们可以继续点击照片
答案 1 :(得分:0)
如果您使用捕获插件而不是相机插件,则可以指定要在一个会话中为要拍摄的照片设置的限制。请参阅phonegap 3.0捕获插件文档以供参考。这也与2.2相同。我相信。
以下是有关如何调用捕获会话的一些代码。
<script type="text/javascript" charset="utf-8">
// Called when capture operation is finished
//
function captureSuccess(mediaFiles) {
var i, len;
for (i = 0, len = mediaFiles.length; i < len; i += 1) {
uploadFile(mediaFiles[i]);
}
}
// Called if something bad happens.
//
function captureError(error) {
var msg = 'An error occurred during capture: ' + error.code;
navigator.notification.alert(msg, null, 'Uh oh!');
}
// A button will call this function
//
function captureImage() {
// Launch device camera application,
// allowing user to capture up to 2 images
navigator.device.capture.captureImage(captureSuccess, captureError, {limit: 2});
}
// Upload files to server
function uploadFile(mediaFile) {
var ft = new FileTransfer(),
path = mediaFile.fullPath,
name = mediaFile.name;
ft.upload(path,
"http://my.domain.com/upload.php",
function(result) {
console.log('Upload success: ' + result.responseCode);
console.log(result.bytesSent + ' bytes sent');
},
function(error) {
console.log('Error uploading file ' + path + ': ' + error.code);
},
{ fileName: name });
}
</script>
这将使您获得捕获图像的图像文件名和位置。我会尝试编辑我的答案,然后如果我弄清楚如何将这些保存到相机胶卷稍后。注意....如果您使用captureVideo功能,这也适用于视频。还包括uploadFile函数,您可以将这些图像发布到服务器。在该函数内部,它显示了如何引用图像文件的完整路径以及图像文件名。这将有助于您将这些用于相机胶卷。请注意,fileTransfer对象可能需要File插件,但也肯定需要FileTransfer插件。