要将具有cordova, ionic或phonegap的文件转换为base64(图像或任何其他类型的文件), 我们将只需要cordova文件插件和1个人眼即可。然后, 我们将使用FileReader通过readAsDataURL方法读取文件的内容。
/** * This function will handle the conversion from a file to base64 format * * @path string * @callback function receives as first parameter the content of the image */function getFileContentAsBase64(path, callback){
window.resolveLocalFileSystemURL(path, gotFile, fail);
function fail(e) {
alert('Cannot found requested file');
}
function gotFile(fileEntry) {
fileEntry.file(function(file) {
var reader = new FileReader();
reader.onloadend = function(e) {
var content = this.result;
callback(content);
};
// The most important point, use the readAsDatURL Method from the file plugin
reader.readAsDataURL(file);
});
}}
然后, 我们将使用它来将本地图像转换为base64:
var path = "file://storage/0/downloads/myimage.png";
// Convert imagegetFileContentAsBase64(path, function(base64Image){//window.open(base64Image);
console.log(base64Image);
// Then you'll be able to handle the myimage.png file as base64});
【如何在Cordova中使用javascript将图像从设备转换为base64】请记住, 你需要来自cordova的文件插件, 请在此处阅读和学习如何使用它。你可以将文件插件下载到在你的cordova CLI中执行的项目中:
cordova plugin add cordova-plugin-file
推荐阅读
- 如何在Cordova中将文本转换为语音(语音合成)
- 如何使用Cordova从设备上的base64字符串创建图像文件
- 如何在Android中使用Cordova创建SFTP客户端
- GPX文件无法在Android模拟器中加载
- 如何模拟Android模拟器上的硬件媒体控制按钮
- 从Android模拟器ping主机
- 如何在android中制作这样的动画()
- SQLite数据库从Android模拟器中消失了
- 如何让Android模拟器显示软键盘()