我正在为Android编写一个phonegap应用程序,我将base64 PNG字符串保存为文件。但是,我发现字符串只是转储到文件中,打开时无法将其视为图像。
我希望能够保存从base64字符串生成的图像。这就是我所拥有的:
Javascript(Formated for Phonegap):
/*** Saving The Pic ***/
var dataURL = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg=="; //A simple red dot
function gotFS(fileSystem) {
fileSystem.root.getFile("dot.png", {create: true, exclusive: false}, gotFileEntry, fail);
}
function gotFileEntry(fileEntry) {
fileEntry.createWriter(gotFileWriter, fail);
}
function gotFileWriter(writer) {
writer.write(dataURL); //does not open as image
}
function fail(error) {
console.log(error.code);
}
我尝试编辑代码只保存图像数据,但它也没有用。 (见下文)
function gotFileWriter(writer) {
var justTheData = dataURL.replace(/^data:image\/(png|jpg);base64,/, "");//Removes everything up to ...'base64,'
writer.write(justTheData); //also does not show
}
触发外包的HTML:
<p onclick="window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail)">Save a Dot</p>
请帮忙。谢谢。
答案 0 :(得分:7)
您只需将图像的src设置为base 64数据即可查看图像。
var image = document.getElementById('myImage');
image.src = "data:image/jpeg;base64," + justTheData;
答案 1 :(得分:0)
这里不需要替换base64字符串,只需按以下方式设置转换字符串:
javascript中的:
var image = document.getElementById('myImage');
image.src = justTheData;// this convert data
在jquery中:
$("#imageid").attr("src",justTheData)