我开发了一个secha toucha应用程序,我想使用Phonegap使用相机功能。使用phonegap我可以访问设备相机并拍摄照片。但是当我在captyring照片后点击相机的“使用”按钮时,它应该存储在图像面板中。但是注意到了。这是我的代码。请帮忙,我真的卡住了!
onRegisterMain: function () {
this.hidefn();
modelMgr.campentry = this.getEntry();
Ext.getCmp('cdcamptitle').hide();/*neetu hide*/
Ext.getCmp('userLogo').setHtml("<figure> <img src='img/imgDnr.png' alt='WIPRO_BLOOD_BANK'/></figure>");
Ext.getCmp('userLogo').on({
tap: function () {
navigator.camera.getPicture(onSuccess, onFail, { quality: 50, destinationType: Camera.DestinationType.DATA_URL});
function onSuccess(imageData) {
var image = document.getElementById('myImage');
image.src = "data:image/jpeg;base64," + imageData;
}
// console.log('tapped')
// this.pieChartDisplay();
},
scope: this
});
答案 0 :(得分:0)
您的destinationType正在引用文件的URL,而您的success函数正在查找base64数据。只需删除destinationType,默认为base64:
navigator.camera.getPicture(onSuccess, onFail, { quality: 50});