web-dev-qa-db-ja.com

ローカルストレージの電話ギャップに画像を保存

私はPhoneGapにかなり慣れていないので、キャプチャ機能があると言っています。だから私はそれを使い、とても素敵でした。しかし、htmlで画像を表示しましたが、画像を保存する方法がわかりません。

によると http://docs.phonegap.com/en/1.7.0/cordova_camera_camera.md.html

エンコードされた画像またはURIを使用して、次のように好きなことができます。

タグで画像をレンダリングします(以下の例を参照)データをローカルに保存します(LocalStorage、Lawnchairなど)データをリモートサーバーに送信します

残念ながら、それを行う方法に関するサンプルコードはありませんでした

LocalStorageまたはデバイスのギャラリーに画像を保存するにはどうすればよいですか?

15
jhdj

あなたは解決策を見つけました、私はそれを次の方法で行いました。それが他の誰かを助けることを願っています。

ボタンクリックイベントでcapturePhoto関数を呼び出すだけです。

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

function onPhotoDataSuccess(imageURI) { 
        // Uncomment to view the base64 encoded image data
        // console.log(imageData);

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

        // Show the captured photo
        // The inline CSS rules are used to resize the image
        //
        imgProfile.src = imageURI;
        if(sessionStorage.isprofileimage==1){
            getLocation();
        }
        movePic(imageURI);
}

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

function movePic(file){ 
    window.resolveLocalFileSystemURI(file, resolveOnSuccess, resOnError); 
} 

//Callback function when the file system uri has been resolved
function resolveOnSuccess(entry){ 
    var d = new Date();
    var n = d.getTime();
    //new file name
    var newFileName = n + ".jpg";
    var myFolderApp = "MyAppFolder";

    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSys) {      
    //The folder is created if doesn't exist
    fileSys.root.getDirectory( myFolderApp,
                    {create:true, exclusive: false},
                    function(directory) {
                        entry.moveTo(directory, newFileName,  successMove, resOnError);
                    },
                    resOnError);
                    },
    resOnError);
}

//Callback function when the file has been moved successfully - inserting the complete path
function successMove(entry) {
    //Store imagepath in session for future use
    // like to store it in database
    sessionStorage.setItem('imagepath', entry.fullPath);
}

function resOnError(error) {
    alert(error.code);
}

このコードがすることは

画像をキャプチャして、デバイスのSDカードのMyAppFolderに保存します。そして、ローカルデータベースに挿入するために、セッションにimagepathを格納します。

23
Amol Chakane

オプションのsaveToPhotoAlbumをTrueに設定することもうまく機能します。 2.9のドキュメント here から取得しました。

9
jaywhy13