Как сохранить изображения base64 в устройстве Галерея с использованием cordova Application.i получает текст base64 в качестве ответа.Как сохранить изображения base64 в устройстве с использованием приложения Cordova?
0
A
ответ
0
Вы можете найти здесь http://ionicframework.com/docs/v2/native/base64-to%20gallery/
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) {
var fileTransfer = new FileTransfer();
var uri = encodeURI("http://www.example.com/image");
var path = fileSystem.root.toURL() + "appName/example.jpg";
fileTransfer.download(
uri,
path,
function(entry) {
refreshMedia.refresh(path); // Refresh the image gallery
},
function(error) {
console.log(error.source);
console.log(error.target);
console.log(error.code);
},
false,
{
headers: {
"Authorization": "dGVzdHVzZXJuYW1lOnRlc3RwYXNzd29yZA=="
}
}
);
});
Момент вар = URI encodeURI ("http://www.example.com/image"); Должен ли я передавать данные base64 –
Да. он кодируется изображение – Developer
https://github.com/Nexxa/cordova-base64-to-gallery – Developer