web-dev-qa-db-ja.com

Phonegap-ギャラリーから画像を選択

Phonegap/Androidの携帯電話の画像ギャラリーから画像を取得する方法の指示を誰かに教えてもらえますか?カメラへのアクセスに関するドキュメントがありますが(これはうまく機能します)、既存の画像を選択することはできません。

JavaではなくPhonegap/Javascriptを探しています。

前もって感謝します!

22
logic-unit

えー、Cameraのドキュメントがこれをカバーしています。これはあなたのために働いていませんか?チェックアウト Camera.PictureSourceType 詳細については。ドキュメントサイトでは、画像を取得するためのこの例を示しています。

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

sourceTypeはここで重要なビットです。かもね Camera.PictureSourceType.CAMERA(デフォルト)、またはより便利なCamera.PictureSourceType.PHOTOLIBRARYまたはCamera.PictureSourceType.SAVEDPHOTOALBUM

カメラのドキュメント

48
Ben

次のライブラリを使用することもできます: https://github.com/wymsee/cordova-imagePicker 小さく、実装が簡単で、カメラへの許可は必要ありません。

5
Klapsa2503

これを見てください post 、それはあなたを助けるかもしれません。

時には、既存の画像のアップロードで問題が発生する場合があります。 この答え ごとに解決策は簡単です。簡単に言うと、ネイティブのAndroid URIをAPIが使用できるURIに変換する必要があります。

// URL you are trying to upload from inside gallery
window.resolveLocalFileSystemURI(img.URI, function(entry) {
  console.log(entry.fullPath);
  }, function(evt){
    console.log(evt.code);
  }
);
2
T.Baba
document.addEventListener("deviceready",function(){

            window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem){ 
                var sdcard = fileSystem.root;

                sdcard.getDirectory('dcim/camera',{create:false}, function(dcim){
                    var directoryReader = dcim.createReader();
                    directoryReader.readEntries(function(entries){
                       for (var i=0; i<entries.length; i++) {
                           entries[i].file(function(f){
                                 var reader = new FileReader();
                                 reader.onloadend = function (evt) {
                                 var url= evt.target.result;//base64 data uri

                                 console.log(url)
                                 reader.abort();
                             };
                             reader.readAsDataURL(f);

                           },function(error){
                               console("Unable to retrieve file properties: " + error.code);

                           });

                       }

                    },function(e){
                        console.log(e.code);
                    });


                }, function(error){
                    console.log(error.code);
                });


            }, function(evt){ // error get file system
                 console.log(evt.target.error.code);
            });



        } , true);
1
Jessie Han

私は cordova-plugin-photo-library プラグインに取り組んでいます。これは、デバイス上のすべての写真を列挙するクロスプラットフォームの方法を提供するプラグインです。

使用法:

cordova.plugins.photoLibrary.getLibrary(function (library) {
    // Here we have the library as array
    cordova.plugins.photoLibrary.getThumbnailUrl(library[0],
        function (thumbnailUrl) { image.src = thumbnailUrl; },
        function (err) { console.log('Error occured'); },
        {
            thumbnailWidth: 512,
            thumbnailHeight: 384,
            quality: 0.8
        });
    });
0
viskin

かんたん

まず、CMDのプロジェクトにカメラプラグインを追加します。

F:\phonegap>myapp>cordova plugin add cordova-plugin-camera

そして、これを試してください

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'" />
        <title>PhoneGap app</title>

        <!-- Script -->
        <script type="text/javascript" src="cordova.js" ></script>
        <script type='text/javascript' src='jquery-3.0.0.js' ></script>
        <script type='text/javascript'>
        $(document).ready(function(){

            // Take photo from camera
            $('#but_take').click(function(){
                navigator.camera.getPicture(onSuccess, onFail, { quality: 20,
                    destinationType: Camera.DestinationType.FILE_URL 
                });
            });

            // Select from gallery 
            $("#but_select").click(function(){
                navigator.camera.getPicture(onSuccess, onFail, { quality: 50,
                    sourceType: Camera.PictureSourceType.PHOTOLIBRARY, 
                    allowEdit: true,
                    destinationType: Camera.DestinationType.FILE_URI
                });
            });

            // Change image source
            function onSuccess(imageData) {
                var image = document.getElementById('img');
                image.src = imageData + '?' + Math.random();;
            }

            function onFail(message) {
                alert('Failed because: ' + message);
            }

        });
        </script>
    </head>
    <body>
        <div style="margin:0 auto; width:30%!important;text-align: center;">
            <img src="img/cam2.jpg" id='img' style="width: 100px; height: 100px;">
        </div><br/>
        <div style="width:100%; text-align:center; padding:10px;">
            <button id='but_take'>Take photo</button>
            <button id='but_select'>Select photo from Gallery</button>
        </div>
    </body>
</html>

100%確実に機能します。

参照はこちら カメラまたはギャラリーから画像を選択– PhoneGap

0
Mohsen Molaei