nodejs canvas Slowbuffer to string

时间:2013-11-01 09:42:42

标签: node.js

我使用node-canvas;

....
var content = canvas.toBuffer();
var length=content.length;
console.log(content);

结果:

<SlowBuffer 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 00 30 00 00 00 30 08 06 00 00 00 57 02 f9 87 00 00 00 06 62 4b 47 44 00 ff 00 ff 00 ff a0 bd a7 93 ...>

var buf=new SlowBuffer(length);
buf.write(content.toString());
console.log(buf);

结果:

<Buffer ff d8 ff e0 00 10 4a 46 49 46 00 01 01 01 00 28 00 28 00 00 ff db 00 43 00 08 06 06 07 06 05 08 07 07 07 09 09 08 0a 0c 14 0d 0c 0b 0b 0c 19 12 13 0f 14 ...>

它们不相等:(,所以当我把它存放到redis中时,我无法取回它;

2 个答案:

答案 0 :(得分:0)

根据您需要的格式,您可以使用以下方法:

&#13;
&#13;
buf.toJSON() // Straight to JSON format
buf.toString('utf8') ; // UTF8 format
&#13;
&#13;
&#13;

继续阅读以获取更多选择:https://nodejs.org/api/buffer.html#buffer_buf_tostring_encoding_start_end

答案 1 :(得分:-1)

你不能只调用Buffer.toString并假设一切都会好的,因为默认编码是utf8。如果要对二进制数据进行编码,则需要base64编码。