8

出于测试目的,我复制了在phonegap 相机 API上找到的完整示例,并发出警报onPhotoDataSuccess进行测试。在拍摄的第一张照片上,不会显示警报。但是,在第一次尝试后,警报将在照片保存后显示。

有什么建议吗?如果有不清楚的地方,我会很乐意更具体。

我在我的 Android Galaxy S3 上测试了下面的代码

    <!DOCTYPE html>
<html>
  <head>
    <title>Capture Photo</title>

    <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
    <script type="text/javascript" charset="utf-8">

    var pictureSource;   // picture source
    var destinationType; // sets the format of returned value

    // Wait for device API libraries to load
    //
    document.addEventListener("deviceready",onDeviceReady,false);

    // device APIs are available
    //
    function onDeviceReady() {
        pictureSource=navigator.camera.PictureSourceType;
        destinationType=navigator.camera.DestinationType;
    }

    // Called when a photo is successfully retrieved
    //
    function onPhotoDataSuccess(imageData) {
      // Uncomment to view the base64-encoded image data
      // console.log(imageData);

      // Get image handle
      //
      var smallImage = document.getElementById('smallImage');

      // Unhide image elements
      //
      smallImage.style.display = 'block';

      // Show the captured photo
      // The inline CSS rules are used to resize the image
      //
      smallImage.src = "data:image/jpeg;base64," + imageData;
    }

    // Called when a photo is successfully retrieved
    //
    function onPhotoURISuccess(imageURI) {
      // Uncomment to view the image file URI
      // console.log(imageURI);

      // Get image handle
      //
      var largeImage = document.getElementById('largeImage');

      // Unhide image elements
      //
      largeImage.style.display = 'block';

      // Show the captured photo
      // The inline CSS rules are used to resize the image
      //
      largeImage.src = imageURI;
    }

    // A button will call this function
    //
    function capturePhoto() {
      // Take picture using device camera and retrieve image as base64-encoded string
      navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 50,
        destinationType: destinationType.DATA_URL });
    }

    // A button will call this function
    //
    function capturePhotoEdit() {
      // Take picture using device camera, allow edit, and retrieve image as base64-encoded string
      navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 20, allowEdit: true,
        destinationType: destinationType.DATA_URL });
    }

    // A button will call this function
    //
    function getPhoto(source) {
      // Retrieve image file location from specified source
      navigator.camera.getPicture(onPhotoURISuccess, onFail, { quality: 50,
        destinationType: destinationType.FILE_URI,
        sourceType: source });
    }

    // Called if something bad happens.
    //
    function onFail(message) {
      alert('Failed because: ' + message);
    }

    </script>
  </head>
  <body>
    <button onclick="capturePhoto();">Capture Photo</button> <br>
    <button onclick="capturePhotoEdit();">Capture Editable Photo</button> <br>
    <button onclick="getPhoto(pictureSource.PHOTOLIBRARY);">From Photo Library</button><br>
    <button onclick="getPhoto(pictureSource.SAVEDPHOTOALBUM);">From Photo Album</button><br>
    <img style="display:none;width:60px;height:60px;" id="smallImage" src="" />
    <img style="display:none;" id="largeImage" src="" />
  </body>
</html>

---------- 更新 1 ------------------

我已经在另一段代码上对其进行了测试:

    (function () {
        $scroller = $('.scroller'),

        // Take a picture using the camera or select one from the library
        takePicture = function (e) {
            var options = {
                quality: 45,
                targetWidth: 1000,
                targetHeight: 1000,
                destinationType: Camera.DestinationType.FILE_URI,
                encodingType: Camera.EncodingType.JPEG,
                sourceType: Camera.PictureSourceType.CAMERA
            };

            navigator.camera.getPicture(
                function (imageURI) {
                    console.log(imageURI);
                    alert('test');
                    $scroller.append('<img src="' + imageURI + '"/>');
                },
                function (message) {
                    // We typically get here because the use canceled the photo operation. Fail silently.
                }, options);

            return false;

        };

    $('.camera-btn').on('click', takePicture);

}());

这具有相同的效果。在第一次快照期间它什么也不做,但在第二次快照后显示图片。我还刚刚发现,在第二张照片之后显示的照片是我拍摄的第一张照片。似乎 getPicture 中的第一个参数不会在第一次快照时触发。这令人沮丧,因为 logcat 并没有真正向我展示任何可以使用的东西。

---------------- 更新 2 ----------------

我刚刚在 Phonegap Build 上尝试过,它可以工作。所以肯定跟插件有关系...

4

6 回答 6

1

从 3.0.0 更新到 3.1.0 后,我遇到了同样的问题。延迟相机,没有地理定位等。

查看文件是否platforms\android\cordova\version声明旧版本。然后你需要更新你的平台。所以这就是我所做的。

  • 删除所有插件:cordova plugin rm org.apache.cordova.camera
  • 删除平台:(cordova platform remove android将删除您对 *.java 文件所做的更改)
  • 添加平台:cordova platform add android
  • 添加所有插件:cordova plugin add org.apache.cordova.camera
  • 检查权限
  • 构建它

这基本上就像创建一个新项目。

于 2013-10-24T16:36:39.467 回答
1

我不知道这是否是正确的解决方案,但它对我来说非常完美。追踪您的日志猫并找到确切的问题将是击球手。

尝试使用navigator.camera.PictureSourceTypeinstated of pictureSource。所以看起来像

<button onclick="getPhoto(navigator.camera.PictureSourceType.PHOTOLIBRARY);">From Photo Library</button><br>

并以同样的方式替换 Javascript 代码

navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 50, destinationType: navigator.camera.DestinationType.FILE_URI });

或者

navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 50, destinationType: navigator.camera.DestinationType.DATA_URI });

更新: 尝试在本地保存你的 corodova.js 并从本地目录调用,所以你的目录应该喜欢

assets/www/js/cordova.js

<script type="text/javascript" charset="utf-8" src="js/cordova.js"></script>

工作代码

希望对你有帮助 !!!

于 2013-09-13T06:02:14.530 回答
0

我在 Cordova 3.4.0 上遇到了这个确切的问题,安装了全新的 Cordova(没有像其他人发布的那样从以前的版本升级)。拍摄第一张照片将无济于事 - 没有成功回调,没有失败回调。拍摄第二张照片将导致成功回调,但返回的 DATA_URL 数据(base64 编码图像)是来自第一张照片的数据。

对我来说,它在一部手机、各种模拟器等上运行良好,但在一部 Android 4.2 手机上它可以做到这一点。解决方案是使用手机的应用程序管理在设置下从手机中卸载该应用程序,然后重新安装该应用程序-然后第一张图片将使用自己的数据触发成功回调。

不知道为什么,但是卸载并重新安装该应用程序为我解决了这个问题。

于 2014-05-18T06:56:38.853 回答
0

有完全相同的问题。捕获成功只是在第二次调用 captureVideo 后才收到回调。

刚刚用新的 3.2.0 cordova-dev.jar (在 eclispe 中)替换了我的旧 app/bin/cordova.jar 文件,然后全部恢复原状:)

于 2013-12-06T18:45:55.913 回答
0

我在使用 Cordova 3.7.1 和 Camera 0.3.5 时遇到了这个问题 - 每次我调用插件时,它都没有返回图像/路径,并且在第二次调用时它为上一次调用返回错误“已取消”。

问题是我的主要活动有自己的 onActivityResult 没有正确调用超级的方法。

public class MainActivity extends CordovaActivity {
    //...

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
            if (requestCode == MyCustomActivity) {
                    doMyCustomActivity(requestCode);
            }
    }

    //...
}

要修复它,我必须添加 ELSE 来调用正确的处理程序:

public class MainActivity extends CordovaActivity {
    //...

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
            if (requestCode == MyCustomActivity) {
                    doMyCustomActivity(requestCode);
            }
            else { //this was missing - call other Activity of plugins
                super.onActivityResult(requestCode, resultCode, intent);
            }
    }

    //...
}
于 2015-02-18T10:20:10.360 回答
0

我遇到了同样的问题并解决了。因为您在应用程序中导入了两个“cordova.js”,并且可能一个在 iframe 中。您可以在 iframe 中使用“parent.cordova”。

于 2014-08-08T07:03:17.047 回答