我想使用navigator.camera對象捕捉圖像,並將其推入img標籤。我在做什麼演示在PhoneGap的文檔這樣說:phonegap攝像頭沒有加載到<img>標籤
if(navigator.camera) {
navigator.camera.getPicture(function(imageData){
var $image = document.getElementById('imageForTask');
image.src = "data:image/jpeg;base64," + imageData;
console.log(imageData);
}, null, {sourceType:1, quality: 50});
} else {
alert("Camera not supported on this device.");
}
當我做到這一點,雖然,我得到的imageForTask斷開的鏈接。這是來源說的:data:image/jpeg;base64,content://media/external/images/media/325
。有誰知道爲什麼這不起作用?我一直在與此搏鬥。謝謝!
-Geoff
啊,這個伎倆!謝謝你。 – gabaum10