我已经使用了cordova文件传输协议,并使用了下载功能来下载base-64图像。当我将远程服务器路径放置为“ https://upload.wikimedia.org/wikipedia/commons/4/4a/Logo_2013_Google.png”时,它将下载,但是当我将base-64图像pah放置在文件路径中时,它将不会下载。
我不知道有关base-64转换的信息。请帮忙。
----我的代码在下面----
function download(){
var imageData = image.src;
imageData = imageData.replace('data:image/png;base64,', '');
var d = new Date();
var imageName = "sample" + d.getTime() + ".png";
//var filepath = encodeURI("https://upload.wikimedia.org/wikipedia/commons/4/4a/Logo_2013_Google.png");
var filepath = encodeURI(imageData);
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) {
fileSystem.root.getFile(imageName, { create: true, exclusive: true }, function (fileEntry) {
// get the full path to the newly created file on the device
var localPath = fileEntry.fullPath;
// massage the path for android devices (not tested)
if (device.platform === "Android" && localPath.indexOf("file://") === 0) {
localPath = localPath.substring(7);
}
// download the remote file and save it
var remoteFile = filepath;
var fileTransfer = new FileTransfer();
fileTransfer.download(remoteFile, localPath, function (newFileEntry) {
// successful download, continue to the next image
console.log('successful download');
},
function (error) { // error callback for #download
console.log('Error with #download method.', error);
});
});
})
})
}
}
提前致谢。
最佳答案
我找到了自己问题的解决方案。
首先,我已将base64图像转换为文件流,并使用Web服务在服务器上创建了图像,并在服务器上上传了图像,并获得了该服务器路径,并使用cordova filetransfer下载了该图像。
我的代码如下
=> Web服务代码,用于将base64图像转换为图像
string strImg = imageData.imageData;
string fullName = "d:\\uploadimages";
FileStream fs = new FileStream(fullName, FileMode.Create);
BinaryWriter bw = new BinaryWriter(fs);
byte[] data = Convert.FromBase64String(strImg);
bw.Write(data);
bw.Close();
=>在手机上下载图片
function download()
{
var filepath = encodeURI("http://www.telerik.com/sfimages/default-source/logos/app_builder.png"),
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) {
fileSystem.root.getFile("sample.jpg", { create: true, exclusive: false }, function (fileEntry) {
// get the full path to the newly created file on the device
var localPath = fileEntry.fullPath;
// massage the path for android devices (not tested)
if (device.platform === "Android" && localPath.indexOf("file://") === 0) {
localPath = localPath.substring(7);
}
// download the remote file and save it
var remoteFile = filepath;
//loadingOverlay.displayLoading("Image will be save on your device.");
var fileTransfer = new FileTransfer();
fileTransfer.download(remoteFile, localPath, function (newFileEntry) {
// successful download, continue to the next image
var dwnldImagePath = newFileEntry.fullPath;
console.log('successful download');
},
function (error) { // error callback for #download
console.log('Error with #download method.', error);
});
});
function(error) { // error callback for #getFile
console.log('Error with #getFile method.', error);
});
})
}
关于javascript - 如何使用Cordova FileTrans下载Base 64镜像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35519505/