admin管理员组文章数量:1362778
I'm new in PhoneGap Android developer. I'm making an application in android using the phonegap. I want to take picture from the device camera and then i want to display it on the screen after taking the image from device and as well as store that captured image in the SD Card. Can you please tell me how i can do this.
Gurpreet singh
I'm new in PhoneGap Android developer. I'm making an application in android using the phonegap. I want to take picture from the device camera and then i want to display it on the screen after taking the image from device and as well as store that captured image in the SD Card. Can you please tell me how i can do this.
Gurpreet singh
Share Improve this question asked Mar 29, 2012 at 13:17 Gurpreets11Gurpreets11 2,3515 gold badges26 silver badges43 bronze badges2 Answers
Reset to default 4For saving in the SD card......
function save(){
document.addEventListener("deviceready", onDeviceReady, false);
}
// PhoneGap is ready
//
function onDeviceReady() {
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);
}
function gotFS(fileSystem) {
fileSystem.root.getFile("pic.jpg", {create: true, exclusive: false}, gotFileEntry, fail);
}
function gotFileEntry(fileEntry) {
fileEntry.createWriter(gotFileWriter, fail);
}
function gotFileWriter(writer) {
var photo = document.getElementById("image");
writer.write(photo.value);
}
function fail(error) {
console.log(error.code);
}
Refer the following gist which does capture the image from camera in both data and file mode.
Camera Capture Sample Gist
Reference from
Capture camera image - Phonegap Doc
本文标签: javascriptPhoneGapAndroidhow to save the capture image from camera in the sd cardStack Overflow
版权声明:本文标题:javascript - PhoneGap - Android - how to save the capture image from camera in the sd card - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743823330a2545187.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论