0

我开发了一个 secha toucha 应用程序,我想在其中使用 Phonegap 的相机功能。使用 phonegap 我可以访问设备相机并拍摄照片。但是当我在捕获照片后单击相机的“使用”按钮时,它应该存储在图像面板中。但注意到正在发生。这是我的代码。请帮忙,我真的卡住了!

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
                                 });
4

1 回答 1

0

您的 destinationType 正在引用文件的 URL,而您的成功函数正在查找 base64 数据。只需删除destinationType 将默认为base64:

navigator.camera.getPicture(onSuccess, onFail, { quality: 50});
于 2013-01-04T21:48:25.897 回答