简体   繁体   中英

Save image in the device gallery using Cordova

Hello I should save images on the device when the user clicks the download button. I'm using the cordova file transfer plugin, but I can not save images in the device gallery.

$("#downloadFile").click(function()
{
    var fileTransfer = new FileTransfer();
    var uri = encodeURI("www.mysite.com/image.jpg");
    var fileURL =  cordova.file.????;

    fileTransfer.download(

    uri, fileURL, function(entry) 
    {
        alert("download complete: " + entry.toURL());
    },
    function(error) 
    {
        alert("download error source " + error.source);
        alert("download error target " + error.target);
        alert("download error code" + error.code);
    },
    false, 
    {
        headers: 
        {
            "Authorization": "Basic dGVzdHVzZXJuYW1lOnRlc3RwYXNzd29yZA=="
        }
    });
});

Are there any other ways to save an image using cordova? Thanks, ciao

https://www.npmjs.com/package/cordova-plugin-save-image

You should use this plugin

function(entry){
window.cordova.plugins.imagesaver.saveImageToGallery(uri, function(success){}, function(error){});
}

nativePathToJpegImage is uri.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM