如果您使用捕获插件而不是相机插件,则可以指定要为在一个会话中拍摄的图片设置的限制。请参阅 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 插件。