本文介绍了将Binary.toString('encode64')转换回二进制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我看过 解释如何将二进制图像转换为encode64表示形式:
I've seen several tutorial explaining how to convert binary image into encode64 representations:
var image = new Buffer(bl.toString(), 'binary').toString('base64');
我的问题是,如何返回这个字符串表示,回到它的缓冲区的二进制数据。 >
My question is, how to return this string representation, back to it's buffer's binary data.
推荐答案
这个问题有一些有用的信息:
This question has some helpful info: How to do Base64 encoding in node.js?
Buffer类本身进行转换:
The Buffer class itself does the conversion:
var base64data = new Buffer('some binary data', 'binary').toString('base64');
console.log(base64data);
// -> 'c29tZSBiaW5hcnkgZGF0YQ=='
var originaldata = new Buffer(base64data, 'base64');
console.log(originaldata);
// -> <Buffer 73 6f 6d 65 20 62 69 6e 61 72 79 20 64 61 74 61>
console.log(originaldata.toString());
// -> some binary data
这篇关于将Binary.toString('encode64')转换回二进制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!